mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 11:17:20 +02:00
Merge branch 'mesh/bugfix_1023_backport_v4.0' into 'release/v4.0'
esp_wifi_mesh: update wifi mesh libs(Backport v4.0) See merge request espressif/esp-idf!11083
This commit is contained in:
@ -263,6 +263,16 @@ esp_err_t esp_mesh_set_announce_interval(int short_ms, int long_ms);
|
|||||||
*/
|
*/
|
||||||
esp_err_t esp_mesh_get_announce_interval(int *short_ms, int *long_ms);
|
esp_err_t esp_mesh_get_announce_interval(int *short_ms, int *long_ms);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enable mesh print scan result
|
||||||
|
*
|
||||||
|
* @param[in] enable enable or not
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* - ESP_OK
|
||||||
|
*/
|
||||||
|
esp_err_t esp_mesh_print_scan_result(bool enable);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Submodule components/esp_wifi/lib_esp32 updated: 40e538b6ad...96f30622f9
@ -137,3 +137,12 @@ int coexist_printf(const char* format, ...)
|
|||||||
va_end(arg);
|
va_end(arg);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int mesh_printf(const char* format, ...)
|
||||||
|
{
|
||||||
|
va_list arg;
|
||||||
|
va_start(arg, format);
|
||||||
|
int res = lib_printf("mesh", format, arg);
|
||||||
|
va_end(arg);
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user