Skip to content

Commit

Permalink
Merge branch 'contrib/github_pr_14329_v5.2' into 'release/v5.2'
Browse files Browse the repository at this point in the history
fix(ulp): Add the missing extern "C" guard to ulp_lp_core_print.h (GitHub PR) (v5.2)

See merge request espressif/esp-idf!32834
  • Loading branch information
ESP-Marius committed Aug 14, 2024
2 parents b8539f6 + e2fca9a commit ea0783f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 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 @@ -3,6 +3,11 @@
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once

#ifdef __cplusplus
extern "C" {
#endif

/**
* @brief Print from the LP core
Expand All @@ -15,3 +20,7 @@
*
*/
void lp_core_printf(const char* format, ...);

#ifdef __cplusplus
}
#endif

0 comments on commit ea0783f

Please sign in to comment.