From 044baf90e5d77e175bb1def866679e0d303ae947 Mon Sep 17 00:00:00 2001 From: lixiaofan Date: Tue, 4 Jul 2023 19:18:33 +0800 Subject: [PATCH 1/2] sync libphy to v5.1 --- components/esp_phy/lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_phy/lib b/components/esp_phy/lib index 5fc97bc8b2..998e056363 160000 --- a/components/esp_phy/lib +++ b/components/esp_phy/lib @@ -1 +1 @@ -Subproject commit 5fc97bc8b20fac0a2ca105ca431deeb000afa247 +Subproject commit 998e05636344949ba219e8ac56feb733e27bf5d2 From 8592f19a95aaf64885daef1a0dc9f3cfb691d123 Mon Sep 17 00:00:00 2001 From: zhangwenxu Date: Wed, 21 Jun 2023 15:45:38 +0800 Subject: [PATCH 2/2] esp_phy: fix rtc_printf and libbtbb version print --- components/esp_phy/src/lib_printf.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/components/esp_phy/src/lib_printf.c b/components/esp_phy/src/lib_printf.c index 424e565590..8c5a8421db 100644 --- a/components/esp_phy/src/lib_printf.c +++ b/components/esp_phy/src/lib_printf.c @@ -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 */ @@ -54,8 +54,11 @@ int phy_printf(const char* format, ...) int rtc_printf(const char* format, ...) { - // librtc.a printf temporary disabled due to UART baud rate switching bug. - return 0; + va_list arg; + va_start(arg, format); + int res = lib_printf("rtc", format, arg); + va_end(arg); + return res; } int wpa_printf(const char* format, ...)