mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 20:54:32 +02:00
fix(ulp): Add the missing extern "C" guard to ulp_lp_core_print.h
This commit adds the missing extern `C` guards the ulp_lp_core_print.h header file. Closes https://github.com/espressif/esp-idf/pull/14329
This commit is contained in:
committed by
Sudeep Mohanty
parent
6568f8c553
commit
88c476e630
@@ -5,6 +5,10 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "sdkconfig.h"
|
#include "sdkconfig.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -44,3 +48,7 @@ extern void ets_install_uart_printf(void);
|
|||||||
* @param c character to be printed
|
* @param c character to be printed
|
||||||
*/
|
*/
|
||||||
void lp_core_print_char(char c);
|
void lp_core_print_char(char c);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
Reference in New Issue
Block a user