Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ulp): Add the missing extern "C" guard to ulp_lp_core_print.h (IDFGH-13423) #14329

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions components/ulp/lp_core/lp_core/include/ulp_lp_core_print.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
*/
#pragma once

#ifdef __cplusplus
extern "C" {
#endif

#include "sdkconfig.h"

/**
Expand Down Expand Up @@ -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