mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
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:
commit
cbb2c4be60
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user