Closed RafaelLaya closed 3 months ago
When Wundef is passed to GCC, the preprocessor will complain that __AVR__ is not defined and thus it has to default it to zero. A simple fix is to check if it's defined and use short-circuiting logic to then check the value
__AVR__
Review changes with SemanticDiff.
When Wundef is passed to GCC, the preprocessor will complain that
__AVR__
is not defined and thus it has to default it to zero. A simple fix is to check if it's defined and use short-circuiting logic to then check the value