mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
Merge branch 'feature/sync_libphy_v5.1' into 'release/v5.1'
sync libphy to v5.1 See merge request espressif/esp-idf!24588
This commit is contained in:
Submodule components/esp_phy/lib updated: 5fc97bc8b2...998e056363
@ -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, ...)
|
||||||
|
Reference in New Issue
Block a user