-
Notifications
You must be signed in to change notification settings - Fork 836
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(max17048): Add boilerplate ifdef cplusplus so max17048 functions can be called from c++ (AEGHB-1021) #486
base: master
Are you sure you want to change the base?
Conversation
👋 Hello victorfleischauer, we appreciate your contribution to this project! Click to see more instructions ...
Review and merge process you can expect ...
|
@victorfleischauer LGTM! Thanks! |
sha=52673778b83e926b77a94c02fb8d13321fea1562 |
components/sensors/battery_fuel_gauge/max17048/include/max17048.h
Outdated
Show resolved
Hide resolved
LGTM! |
sha=79572fae27156ccc4fcefe6c9e57cc525869b6b0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR fixes the issue where max17048 functions could not be accessed from C++ files by adding the standard extern "C" boilerplate.
- Add C++ compatibility guards at the beginning and end of the header file
- Ensure that the functions are exported correctly without C++ name mangling
Description
Functions in max17048 cannot be called in a C++ file by including
"max17048.h"
due to C++ name mangling. This PR adds the boilerplate#ifdef __cplusplus extern "C" {
to deal with this.Testing
Tested by including in .cpp and .c test file with the example code
Checklist
Before submitting a Pull Request, please ensure the following: