mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-23 01:05:14 +00:00
Merge branch 'bugfix/github_small_prs' into 'master'
Small PR fixes from github Small bug fixes & typo corrections from github. See merge request !762
This commit is contained in:
@@ -311,7 +311,7 @@ esp_err_t esp_wifi_deauth_sta(uint16_t aid);
|
||||
* @brief Scan all available APs.
|
||||
*
|
||||
* @attention If this API is called, the found APs are stored in WiFi driver dynamic allocated memory and the
|
||||
* will be freed in esp_wifi_get_ap_list, so generally, call esp_wifi_get_ap_list to cause
|
||||
* will be freed in esp_wifi_scan_get_ap_records, so generally, call esp_wifi_scan_get_ap_records to cause
|
||||
* the memory to be freed once the scan is done
|
||||
* @attention The values of maximum active scan time and passive scan time per channel are limited to 1500 milliseconds.
|
||||
* Values above 1500ms may cause station to disconnect from AP and are not recommended.
|
||||
|
@@ -1803,6 +1803,7 @@ PROVIDE ( ets_set_user_start = 0x4000687c );
|
||||
PROVIDE ( ets_unpack_flash_code = 0x40007018 );
|
||||
PROVIDE ( ets_unpack_flash_code_legacy = 0x4000694c );
|
||||
PROVIDE ( rom_main = 0x400076c4 );
|
||||
PROVIDE ( ets_write_char_uart = 0x40007cf8 );
|
||||
PROVIDE ( ets_install_putc1 = 0x40007d18 );
|
||||
PROVIDE ( ets_install_putc2 = 0x40007d38 );
|
||||
PROVIDE ( ets_install_uart_printf = 0x40007d28 );
|
||||
|
@@ -212,7 +212,10 @@ void panicHandler(XtExcFrame *frame)
|
||||
//debugcause if the cause is watchdog 1 and clearing it if it's watchdog 0.
|
||||
if (debugRsn&(1<<8)) {
|
||||
#if CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK
|
||||
panicPutStr("Stack canary watchpoint triggered ");
|
||||
const char *name = pcTaskGetTaskName(xTaskGetCurrentTaskHandleForCPU(core_id));
|
||||
panicPutStr("Stack canary watchpoint triggered (");
|
||||
panicPutStr(name);
|
||||
panicPutStr(") ");
|
||||
#else
|
||||
panicPutStr("Watchpoint 1 triggered ");
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user