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
ARDUIFINE: global compiler options extracted from ctags parsing
Example: these lines in the ino file:
char ARDUIFINE_1 = "-DMYLIB_BUFFER_LEN=1234";
char ARDUIFINE_2 = "-DMYLIB2_PARAM";
will globally enable the following line in the compiler command:
-DMYLIB_BUFFER_LEN=1234 -DMYLIB2_PARAM
That, including during compilation of the core and libraries.
The symbols ARDUIFINExxx, if they are not otherwise used by the sketch,
are normally excluded from the final binary at link time.
0 commit comments