Skip to content

Commit 7494c4e

Browse files
author
me-no-dev
committedNov 8, 2020
IDF release/v3.3 44ec7972b
1 parent c195167 commit 7494c4e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+82
-3
lines changed
 

‎tools/sdk/include/config/sdkconfig.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
#define CONFIG_MFN56_1X 1
8888
#define CONFIG_LWIP_MAX_SOCKETS 10
8989
#define CONFIG_LWIP_NETIF_LOOPBACK 1
90+
#define CONFIG_LWIP_TCP_ISN_HOOK 1
9091
#define CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT "pthread"
9192
#define CONFIG_EMAC_TASK_PRIORITY 20
9293
#define CONFIG_TIMER_TASK_STACK_DEPTH 2048
@@ -394,5 +395,5 @@
394395
#define CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_ERROR 1
395396
#define CONFIG_ESP32_WIFI_IRAM_OPT 1
396397
#define CONFIG_FATFS_API_ENCODING_ANSI_OEM 1
397-
#define CONFIG_ARDUINO_IDF_COMMIT "66d3783c8"
398+
#define CONFIG_ARDUINO_IDF_COMMIT "44ec7972b"
398399
#define CONFIG_ARDUINO_IDF_BRANCH "release/v3.3"

‎tools/sdk/include/esp32/esp_mesh_internal.h

+10
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,16 @@ esp_err_t esp_mesh_set_announce_interval(int short_ms, int long_ms);
263263
*/
264264
esp_err_t esp_mesh_get_announce_interval(int *short_ms, int *long_ms);
265265

266+
/**
267+
* @brief Enable mesh print scan result
268+
*
269+
* @param[in] enable enable or not
270+
*
271+
* @return
272+
* - ESP_OK
273+
*/
274+
esp_err_t esp_mesh_print_scan_result(bool enable);
275+
266276
#ifdef __cplusplus
267277
}
268278
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.