You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry to border you here, while you lib works amazingly well, it has a small compilation problem if you compile on a c++ code/compiler. May a suggest to warp the function signatures around a:
ifdef __cplusplus
extern "C" {
endif
.
.
.
ifdef __cplusplus
}
endif
Except for that, your library is perfect and really solved my serial communication problems with Arduino, so thank you for that.
PS: without the extern "C", the code will not compile/link, but the proposed solution removes all the problems
The text was updated successfully, but these errors were encountered:
Sorry to border you here, while you lib works amazingly well, it has a small compilation problem if you compile on a c++ code/compiler. May a suggest to warp the function signatures around a:
ifdef __cplusplus
extern "C" {
endif
.
.
.
ifdef __cplusplus
}
endif
Except for that, your library is perfect and really solved my serial communication problems with Arduino, so thank you for that.
PS: without the extern "C", the code will not compile/link, but the proposed solution removes all the problems
The text was updated successfully, but these errors were encountered: