Merge branch 'contrib/github_pr_14329_v5.3' into 'release/v5.3'

fix(ulp): Add the missing extern "C" guard to ulp_lp_core_print.h (GitHub PR) (v5.3)

See merge request espressif/esp-idf!32833
This commit is contained in:
Jiang Jiang Jian 2024-09-09 11:27:51 +08:00
commit d6e9558a1c

View File

@ -5,6 +5,10 @@
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include "sdkconfig.h"
/**
@ -44,3 +48,7 @@ extern void ets_install_uart_printf(void);
* @param c character to be printed
*/
void lp_core_print_char(char c);
#ifdef __cplusplus
}
#endif