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
This is a compatibility break with IAR compiler. __packed is already a keyword that eliminates padding between members. This is not a definition, meaning it will always fall under the #ifndef. Any additions that uses __packed will be replaced by the definition given. Since this macro is targeted for GCC compiler, this should either be wrapped around a macro that checks if the compiler being used is GCC.
The text was updated successfully, but these errors were encountered:
This is a compatibility break with IAR compiler. __packed is already a keyword that eliminates padding between members. This is not a definition, meaning it will always fall under the
#ifndef
. Any additions that uses__packed
will be replaced by the definition given. Since this macro is targeted for GCC compiler, this should either be wrapped around a macro that checks if the compiler being used is GCC.The text was updated successfully, but these errors were encountered: