Merge branch 'fix/phylib_rtc_printf' into 'master'

esp_phy: fix rtc_printf and libbtbb version print

See merge request espressif/esp-idf!24356
pull/10533/head^2
Shu Chen 2023-06-25 20:05:23 +08:00
commit 6fc45d4978
2 zmienionych plików z 7 dodań i 4 usunięć

@ -1 +1 @@
Subproject commit dd8e87f58d6d396ad70d19026ee18a356bc32408 Subproject commit 30e464c44ca5f7291bdf88b4396ebd8c1a055388

Wyświetl plik

@ -1,5 +1,5 @@
/* /*
* SPDX-FileCopyrightText: 2016-2022 Espressif Systems (Shanghai) CO LTD * SPDX-FileCopyrightText: 2016-2023 Espressif Systems (Shanghai) CO LTD
* *
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
*/ */
@ -54,8 +54,11 @@ int phy_printf(const char* format, ...)
int rtc_printf(const char* format, ...) int rtc_printf(const char* format, ...)
{ {
// librtc.a printf temporary disabled due to UART baud rate switching bug. va_list arg;
return 0; va_start(arg, format);
int res = lib_printf("rtc", format, arg);
va_end(arg);
return res;
} }
int wpa_printf(const char* format, ...) int wpa_printf(const char* format, ...)