Merge branch 'contrib/github_pr_14329' into 'master'

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

Closes IDFGH-13423

See merge request espressif/esp-idf!32689
This commit is contained in:
Sudeep Mohanty 2024-08-14 05:06:02 +08:00
commit cbb2c4be60

View File

@ -5,6 +5,10 @@
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include "sdkconfig.h"
/**
@ -67,3 +71,7 @@ void lp_core_print_hex(int h);
* @param d integer to be printed
*/
void lp_core_print_dec_two_digits(int d);
#ifdef __cplusplus
}
#endif