Merge branch 'mesh/bugfix_1023' into 'master'

esp_wifi_mesh: update wifi mesh libs

See merge request espressif/esp-idf!10970
pull/4512/merge
Jiang Jiang Jian 2020-10-28 14:22:47 +08:00
commit a54e92f00b
3 zmienionych plików z 20 dodań i 1 usunięć

Wyświetl plik

@ -285,6 +285,15 @@ esp_err_t esp_mesh_get_announce_interval(int *short_ms, int *long_ms);
*/
esp_err_t esp_mesh_ps_get_duties(esp_mesh_ps_duties_t* ps_duties);
/**
* @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
}
#endif

@ -1 +1 @@
Subproject commit f8f054e999e8a56d7631406919586ed062d318a5
Subproject commit 6e05326fc7c274b34c36662f8a25460b3ddabd8d

Wyświetl plik

@ -137,3 +137,13 @@ int coexist_printf(const char* format, ...)
va_end(arg);
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;
}