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
When creating a list of libraries for linking, Energia seems to add all #include statements, without actually checking #ifdef c preprocessor directives.
For example, trying to write one sketch for multiple devices:
define _TIVA
ifdef _TIVA
include "A.h"
else
include "B.h"
endif
will try to link both A and B libraries at the same time and possibly create conflict.