Skip to content

Commit

Permalink
fix(ulp): Add the missing extern "C" guard to ulp_lp_core_print.h
Browse files Browse the repository at this point in the history
  • Loading branch information
andylinpersonal committed Aug 7, 2024
1 parent 8e4454b commit c38c608
Showing 1 changed file with 8 additions and 0 deletions.
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

0 comments on commit c38c608

Please sign in to comment.