We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you actually define -DLMIC_DEBUG_PRINTF MyLmicDebugPrintf you get warnings in compilation because it isn't declared in the LMiC modules.
-DLMIC_DEBUG_PRINTF MyLmicDebugPrintf
I recommend adding a declaration immediately after #define
#define LMIC_DEBUG_PRINTF(f, ...) LMIC_DEBUG_PRINTF_FN(f, ## __VA_ARGS__) extern void LMIC_DEBUG_PRINTF(const char *fmt, ...);
The text was updated successfully, but these errors were encountered:
Fixed by 42dfb39
Sorry, something went wrong.
Update to V2.1.1 for fix for #39
0a9234e
No branches or pull requests
If you actually define
-DLMIC_DEBUG_PRINTF MyLmicDebugPrintf
you get warnings in compilation because it isn't declared in the LMiC modules.I recommend adding a declaration immediately after #define
The text was updated successfully, but these errors were encountered: