forked from espressif/esp-idf
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'espressif:release/v5.2' into release/v5.2
- Loading branch information
Showing
36 changed files
with
228 additions
and
1,669 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule lib
updated
26 files
+ − | esp32/libbttestmode.a | |
+ − | esp32/libphy.a | |
+ − | esp32/librftest.a | |
+ − | esp32c2/libbtbb.a | |
+ − | esp32c2/libbttestmode.a | |
+ − | esp32c2/libphy.a | |
+ − | esp32c2/librftest.a | |
+ − | esp32c3/libbtbb.a | |
+ − | esp32c3/libbttestmode.a | |
+ − | esp32c3/libphy.a | |
+ − | esp32c3/librftest.a | |
+ − | esp32c6/libbtbb.a | |
+ − | esp32c6/libbttestmode.a | |
+ − | esp32c6/libphy.a | |
+ − | esp32c6/librftest.a | |
+ − | esp32h2/libbtbb.a | |
+ − | esp32h2/libbttestmode.a | |
+ − | esp32h2/libphy.a | |
+ − | esp32h2/librftest.a | |
+ − | esp32s2/libphy.a | |
+ − | esp32s2/librftest.a | |
+ − | esp32s3/libbtbb.a | |
+ − | esp32s3/libbttestmode.a | |
+ − | esp32s3/libphy.a | |
+ − | esp32s3/librftest.a | |
+7 −5 | fix_printf.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "../esp_ipc.h" | ||
#include "sdkconfig.h" | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#if !defined(CONFIG_FREERTOS_UNICORE) || defined(CONFIG_APPTRACE_GCOV_ENABLE) | ||
|
||
/** | ||
* @brief Execute a callback on a given CPU without any blocking operations for the caller | ||
* | ||
* Since it does not have any blocking operations it is suitable to be run from interrupts | ||
* or even when the Scheduler on the current core is suspended. | ||
* | ||
* The function: | ||
* - does not wait for the callback to begin or complete execution, | ||
* - does not change the IPC priority. | ||
* The function returns after sending a notification to the IPC task to execute the callback. | ||
* | ||
* @param[in] cpu_id CPU where the given function should be executed (0 or 1) | ||
* @param[in] func Pointer to a function of type void func(void* arg) to be executed | ||
* @param[in] arg Arbitrary argument of type void* to be passed into the function | ||
* | ||
* @return | ||
* - ESP_ERR_INVALID_ARG if cpu_id is invalid | ||
* - ESP_ERR_INVALID_STATE 1. IPC tasks have not been initialized yet, | ||
* 2. cpu_id requests IPC on the current core, but the FreeRTOS scheduler is not running on it | ||
* (the IPC task cannot be executed). | ||
* - ESP_FAIL IPC is busy due to a previous call was not completed. | ||
* - ESP_OK otherwise | ||
*/ | ||
esp_err_t esp_ipc_call_nonblocking(uint32_t cpu_id, esp_ipc_func_t func, void* arg); | ||
|
||
#endif // !defined(CONFIG_FREERTOS_UNICORE) || defined(CONFIG_APPTRACE_GCOV_ENABLE) | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule lib
updated
40 files
+ − | esp32/libcore.a | |
+ − | esp32/libespnow.a | |
+ − | esp32/libmesh.a | |
+ − | esp32/libnet80211.a | |
+ − | esp32/libpp.a | |
+ − | esp32/libsmartconfig.a | |
+ − | esp32/libwapi.a | |
+ − | esp32c2/libcore.a | |
+ − | esp32c2/libespnow.a | |
+ − | esp32c2/libnet80211.a | |
+ − | esp32c2/libpp.a | |
+ − | esp32c2/libsmartconfig.a | |
+ − | esp32c3/libcore.a | |
+ − | esp32c3/libespnow.a | |
+ − | esp32c3/libmesh.a | |
+ − | esp32c3/libnet80211.a | |
+ − | esp32c3/libpp.a | |
+ − | esp32c3/libsmartconfig.a | |
+ − | esp32c3/libwapi.a | |
+ − | esp32c6/libcore.a | |
+ − | esp32c6/libespnow.a | |
+ − | esp32c6/libmesh.a | |
+ − | esp32c6/libnet80211.a | |
+ − | esp32c6/libpp.a | |
+ − | esp32c6/libsmartconfig.a | |
+ − | esp32c6/libwapi.a | |
+ − | esp32s2/libcore.a | |
+ − | esp32s2/libespnow.a | |
+ − | esp32s2/libmesh.a | |
+ − | esp32s2/libnet80211.a | |
+ − | esp32s2/libpp.a | |
+ − | esp32s2/libsmartconfig.a | |
+ − | esp32s2/libwapi.a | |
+ − | esp32s3/libcore.a | |
+ − | esp32s3/libespnow.a | |
+ − | esp32s3/libmesh.a | |
+ − | esp32s3/libnet80211.a | |
+ − | esp32s3/libpp.a | |
+ − | esp32s3/libsmartconfig.a | |
+ − | esp32s3/libwapi.a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.