mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
cpu_start: rename function to add core prefix for more clarity
This commit is contained in:
@ -131,7 +131,7 @@ static volatile bool s_resume_cores;
|
|||||||
// If CONFIG_SPIRAM_IGNORE_NOTFOUND is set and external RAM is not found or errors out on testing, this is set to false.
|
// If CONFIG_SPIRAM_IGNORE_NOTFOUND is set and external RAM is not found or errors out on testing, this is set to false.
|
||||||
bool g_spiram_ok = true;
|
bool g_spiram_ok = true;
|
||||||
|
|
||||||
static void intr_matrix_clear(void)
|
static void core_intr_matrix_clear(void)
|
||||||
{
|
{
|
||||||
uint32_t core_id = cpu_hal_get_core_id();
|
uint32_t core_id = cpu_hal_get_core_id();
|
||||||
|
|
||||||
@ -174,7 +174,7 @@ void IRAM_ATTR call_start_cpu1(void)
|
|||||||
ESP_EARLY_LOGI(TAG, "App cpu up.");
|
ESP_EARLY_LOGI(TAG, "App cpu up.");
|
||||||
|
|
||||||
// Clear interrupt matrix for APP CPU core
|
// Clear interrupt matrix for APP CPU core
|
||||||
intr_matrix_clear();
|
core_intr_matrix_clear();
|
||||||
|
|
||||||
//Take care putting stuff here: if asked, FreeRTOS will happily tell you the scheduler
|
//Take care putting stuff here: if asked, FreeRTOS will happily tell you the scheduler
|
||||||
//has started, but it isn't active *on this CPU* yet.
|
//has started, but it isn't active *on this CPU* yet.
|
||||||
@ -450,7 +450,7 @@ void IRAM_ATTR call_start_cpu0(void)
|
|||||||
g_startup_time = esp_rtc_get_time_us();
|
g_startup_time = esp_rtc_get_time_us();
|
||||||
|
|
||||||
// Clear interrupt matrix for PRO CPU core
|
// Clear interrupt matrix for PRO CPU core
|
||||||
intr_matrix_clear();
|
core_intr_matrix_clear();
|
||||||
|
|
||||||
#ifdef CONFIG_ESP_CONSOLE_UART
|
#ifdef CONFIG_ESP_CONSOLE_UART
|
||||||
uint32_t clock_hz = rtc_clk_apb_freq_get();
|
uint32_t clock_hz = rtc_clk_apb_freq_get();
|
||||||
|
Reference in New Issue
Block a user