Skip to content

Commit

Permalink
Merge branch 'feature/sync_libphy_v5.1' into 'release/v5.1'
Browse files Browse the repository at this point in the history
sync libphy to v5.1

See merge request espressif/esp-idf!24588
  • Loading branch information
jack0c committed Jul 10, 2023
2 parents bd985de + 8592f19 commit 3b7dc69
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions components/esp_phy/src/lib_printf.c
Original file line number Diff line number Diff line change
@@ -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
*/
Expand Down Expand Up @@ -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, ...)
Expand Down

0 comments on commit 3b7dc69

Please sign in to comment.