| 
									
										
										
										
											2021-09-30 15:12:55 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2024-01-30 09:40:10 +08:00
										 |  |  |  * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD | 
					
						
							| 
									
										
										
										
											2021-09-30 15:12:55 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: Apache-2.0 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <stdint.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | #include "esp_attr.h"
 | 
					
						
							|  |  |  | #include "esp_err.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | #include "esp_system.h"
 | 
					
						
							|  |  |  | #include "esp_log.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | #include "sdkconfig.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "soc/soc_caps.h"
 | 
					
						
							| 
									
										
										
										
											2022-07-21 19:24:42 +08:00
										 |  |  | #include "esp_cpu.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-16 18:29:29 +05:00
										 |  |  | #include "esp_private/startup_internal.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | // Ensure that system configuration matches the underlying number of cores.
 | 
					
						
							|  |  |  | // This should enable us to avoid checking for both everytime.
 | 
					
						
							|  |  |  | #if !(SOC_CPU_CORES_NUM > 1) && !CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE
 | 
					
						
							| 
									
										
										
										
											2024-01-30 09:40:10 +08:00
										 |  |  | #error "System has been configured to run on multiple cores, but target SoC only has a single core."
 | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-14 14:46:13 +08:00
										 |  |  | uint64_t g_startup_time = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | // App entry point for core 0
 | 
					
						
							| 
									
										
										
										
											2020-08-31 14:00:46 -03:00
										 |  |  | extern void esp_startup_start_app(void); | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Entry point for core 0 from hardware init (port layer)
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | void start_cpu0(void) __attribute__((weak, alias("start_cpu0_default"))) __attribute__((noreturn)); | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE
 | 
					
						
							|  |  |  | // Entry point for core [1..X] from hardware init (port layer)
 | 
					
						
							| 
									
										
										
										
											2020-06-10 21:13:31 +08:00
										 |  |  | void start_cpu_other_cores(void) __attribute__((weak, alias("start_cpu_other_cores_default"))) __attribute__((noreturn)); | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | // App entry point for core [1..X]
 | 
					
						
							| 
									
										
										
										
											2020-08-31 14:00:46 -03:00
										 |  |  | void esp_startup_start_app_other_cores(void) __attribute__((weak, alias("esp_startup_start_app_other_cores_default"))) __attribute__((noreturn)); | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | static volatile bool s_system_inited[SOC_CPU_CORES_NUM] = { false }; | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-02 15:59:44 +11:00
										 |  |  | const sys_startup_fn_t g_startup_fn[SOC_CPU_CORES_NUM] = { [0] = start_cpu0, | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | #if SOC_CPU_CORES_NUM > 1
 | 
					
						
							| 
									
										
										
										
											2024-01-30 09:40:10 +08:00
										 |  |  |                                                            [1 ... SOC_CPU_CORES_NUM - 1] = start_cpu_other_cores | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2024-01-30 09:40:10 +08:00
										 |  |  |                                                          }; | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static volatile bool s_system_full_inited = false; | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2021-03-02 15:59:44 +11:00
										 |  |  | const sys_startup_fn_t g_startup_fn[1] = { start_cpu0 }; | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  | static const char* TAG = "cpu_start"; | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-17 11:17:08 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Xtensa gcc is configured to emit a .ctors section, RISC-V gcc is configured with --enable-initfini-array | 
					
						
							|  |  |  |  * so it emits an .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 looped | 
					
						
							|  |  |  |  * over in ascending direction instead of descending direction. | 
					
						
							| 
									
										
										
										
											2021-07-07 11:55:33 +10:00
										 |  |  |  * The RISC-V-specific behavior is dependent on the linker script ld/esp32c3/sections.ld.in. | 
					
						
							| 
									
										
										
										
											2020-12-17 11:17:08 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-07-18 14:02:59 +04:00
										 |  |  | __attribute__((no_sanitize_undefined)) /* TODO: IDF-8133 */ | 
					
						
							| 
									
										
										
										
											2020-07-27 15:24:07 -03:00
										 |  |  | static void do_global_ctors(void) | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-17 11:17:08 +08:00
										 |  |  | #if __riscv
 | 
					
						
							|  |  |  |     extern void (*__init_priority_array_start)(void); | 
					
						
							|  |  |  |     extern void (*__init_priority_array_end)(void); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  |     extern void (*__init_array_start)(void); | 
					
						
							|  |  |  |     extern void (*__init_array_end)(void); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  | #ifdef CONFIG_COMPILER_CXX_EXCEPTIONS
 | 
					
						
							| 
									
										
										
										
											2024-01-30 09:40:10 +08:00
										 |  |  |     struct object { | 
					
						
							|  |  |  |         long placeholder[ 10 ]; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     void __register_frame_info(const void *begin, struct object * ob); | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  |     extern char __eh_frame[]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  |     static struct object ob; | 
					
						
							| 
									
										
										
										
											2024-01-30 09:40:10 +08:00
										 |  |  |     __register_frame_info(__eh_frame, &ob); | 
					
						
							| 
									
										
										
										
											2020-04-24 15:41:08 +08:00
										 |  |  | #endif // CONFIG_COMPILER_CXX_EXCEPTIONS
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  |     void (**p)(void); | 
					
						
							| 
									
										
										
										
											2020-12-17 11:17:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if __riscv
 | 
					
						
							|  |  |  |     for (p = &__init_priority_array_start; p < &__init_priority_array_end; ++p) { | 
					
						
							| 
									
										
										
										
											2022-05-17 23:42:54 +02:00
										 |  |  |         ESP_LOGD(TAG, "calling init function: %p", *p); | 
					
						
							| 
									
										
										
										
											2020-12-17 11:17:08 +08:00
										 |  |  |         (*p)(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  |     for (p = &__init_array_end - 1; p >= &__init_array_start; --p) { | 
					
						
							| 
									
										
										
										
											2022-05-17 23:42:54 +02:00
										 |  |  |         ESP_LOGD(TAG, "calling init function: %p", *p); | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  |         (*p)(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-17 23:42:54 +02:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @brief Call component init functions defined using ESP_SYSTEM_INIT_Fn macros. | 
					
						
							|  |  |  |  * The esp_system_init_fn_t structures describing these functions are collected into | 
					
						
							|  |  |  |  * an array [_esp_system_init_fn_array_start, _esp_system_init_fn_array_end) by the | 
					
						
							|  |  |  |  * linker. The functions are sorted by their priority value. | 
					
						
							|  |  |  |  * The sequence of the init function calls (sorted by priority) is documented in | 
					
						
							|  |  |  |  * system_init_fn.txt file. | 
					
						
							| 
									
										
										
										
											2023-11-24 18:32:37 +01:00
										 |  |  |  * @param stage_num Stage number of the init function call (0, 1). | 
					
						
							| 
									
										
										
										
											2022-05-17 23:42:54 +02:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-07-18 14:02:59 +04:00
										 |  |  | __attribute__((no_sanitize_undefined)) /* TODO: IDF-8133 */ | 
					
						
							| 
									
										
										
										
											2023-11-24 18:32:37 +01:00
										 |  |  | static void do_system_init_fn(uint32_t stage_num) | 
					
						
							| 
									
										
										
										
											2020-02-05 19:57:40 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     extern esp_system_init_fn_t _esp_system_init_fn_array_start; | 
					
						
							|  |  |  |     extern esp_system_init_fn_t _esp_system_init_fn_array_end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     esp_system_init_fn_t *p; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-21 19:24:42 +08:00
										 |  |  |     int core_id = esp_cpu_get_core_id(); | 
					
						
							| 
									
										
										
										
											2022-05-17 23:42:54 +02:00
										 |  |  |     for (p = &_esp_system_init_fn_array_start; p < &_esp_system_init_fn_array_end; ++p) { | 
					
						
							| 
									
										
										
										
											2023-11-24 18:32:37 +01:00
										 |  |  |         if (p->stage == stage_num && (p->cores & BIT(core_id)) != 0) { | 
					
						
							|  |  |  |             // During core init, stdout is not initialized yet, so use early logging.
 | 
					
						
							|  |  |  |             ESP_EARLY_LOGD(TAG, "calling init function: %p on core: %d", p->fn, core_id); | 
					
						
							| 
									
										
										
										
											2022-05-17 23:42:54 +02:00
										 |  |  |             esp_err_t err = (*(p->fn))(); | 
					
						
							|  |  |  |             if (err != ESP_OK) { | 
					
						
							| 
									
										
										
										
											2023-11-24 18:32:37 +01:00
										 |  |  |                 ESP_EARLY_LOGE(TAG, "init function %p has failed (0x%x), aborting", p->fn, err); | 
					
						
							| 
									
										
										
										
											2022-05-17 23:42:54 +02:00
										 |  |  |                 abort(); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-02-05 19:57:40 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #if !CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE
 | 
					
						
							| 
									
										
										
										
											2022-05-17 23:42:54 +02:00
										 |  |  |     s_system_inited[core_id] = true; | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-02-05 19:57:40 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #if !CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE
 | 
					
						
							| 
									
										
										
										
											2020-08-31 14:00:46 -03:00
										 |  |  | static void  esp_startup_start_app_other_cores_default(void) | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-06-09 08:17:48 +08:00
										 |  |  |     while (1) { | 
					
						
							| 
									
										
										
										
											2020-07-21 13:07:34 +08:00
										 |  |  |         esp_rom_delay_us(UINT32_MAX); | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-17 23:42:54 +02:00
										 |  |  | /* This function has to be in IRAM, as while it is running on CPU1, CPU0 may do some flash operations
 | 
					
						
							|  |  |  |  * (e.g. initialize the core dump), which means that cache will be disabled. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-09-18 10:58:24 -03:00
										 |  |  | static void IRAM_ATTR start_cpu_other_cores_default(void) | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-11-24 18:32:37 +01:00
										 |  |  |     do_system_init_fn(ESP_SYSTEM_INIT_STAGE_SECONDARY); | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-09 08:17:48 +08:00
										 |  |  |     while (!s_system_full_inited) { | 
					
						
							| 
									
										
										
										
											2020-07-21 13:07:34 +08:00
										 |  |  |         esp_rom_delay_us(100); | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-31 14:00:46 -03:00
										 |  |  |     esp_startup_start_app_other_cores(); | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-27 15:24:07 -03:00
										 |  |  | static void do_core_init(void) | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-11-24 18:32:37 +01:00
										 |  |  |     do_system_init_fn(ESP_SYSTEM_INIT_STAGE_CORE); | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-27 15:24:07 -03:00
										 |  |  | static void do_secondary_init(void) | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #if !CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE
 | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  |     // The port layer transferred control to this function with other cores 'paused',
 | 
					
						
							|  |  |  |     // resume execution so that cores might execute component initialization functions.
 | 
					
						
							|  |  |  |     startup_resume_other_cores(); | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Execute initialization functions esp_system_init_fn_t assigned to the main core. While
 | 
					
						
							|  |  |  |     // this is happening, all other cores are executing the initialization functions
 | 
					
						
							|  |  |  |     // assigned to them since they have been resumed already.
 | 
					
						
							| 
									
										
										
										
											2023-11-24 18:32:37 +01:00
										 |  |  |     do_system_init_fn(ESP_SYSTEM_INIT_STAGE_SECONDARY); | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #if !CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE
 | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  |     // Wait for all cores to finish secondary init.
 | 
					
						
							|  |  |  |     volatile bool system_inited = false; | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-09 08:17:48 +08:00
										 |  |  |     while (!system_inited) { | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  |         system_inited = true; | 
					
						
							|  |  |  |         for (int i = 0; i < SOC_CPU_CORES_NUM; i++) { | 
					
						
							|  |  |  |             system_inited &= s_system_inited[i]; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-07-21 13:07:34 +08:00
										 |  |  |         esp_rom_delay_us(100); | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-31 14:00:46 -03:00
										 |  |  | static void start_cpu0_default(void) | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     // Initialize core components and services.
 | 
					
						
							|  |  |  |     do_core_init(); | 
					
						
							| 
									
										
										
										
											2020-03-03 12:22:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  |     // Execute constructors.
 | 
					
						
							|  |  |  |     do_global_ctors(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Execute init functions of other components; blocks
 | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  |     // until all cores finish (when !CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE).
 | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  |     do_secondary_init(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #if SOC_CPU_CORES_NUM > 1 && !CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE
 | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  |     s_system_full_inited = true; | 
					
						
							| 
									
										
										
										
											2020-02-13 17:43:23 +05:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-11-28 09:20:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-31 14:00:46 -03:00
										 |  |  |     esp_startup_start_app(); | 
					
						
							| 
									
										
										
										
											2020-06-09 08:17:48 +08:00
										 |  |  |     while (1); | 
					
						
							| 
									
										
										
										
											2020-02-05 22:40:15 +08:00
										 |  |  | } |