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

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

See merge request espressif/esp-idf!32834
This commit is contained in:
Marius Vikhammer 2024-08-14 12:07:58 +08:00
commit ea0783f07c

View File

@ -3,6 +3,11 @@
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Print from the LP core
@ -15,3 +20,7 @@
*
*/
void lp_core_printf(const char* format, ...);
#ifdef __cplusplus
}
#endif