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
Hi
most check for __ARM_FEATURE_CMSE are like this
defined (__ARM_FEATURE_CMSE) && (__ARM_FEATURE_CMSE == 3U)
but in some lines are only
(__ARM_FEATURE_CMSE < 3U)
so my tools reporting, that __ARM_FEATURE_CMSE can be undefined and interpreting as 0
please add everywhere a defined (__ARM_FEATURE_CMSE)
compare cmsis_armclang.h with cmsis_gcc.h
The text was updated successfully, but these errors were encountered:
Hi
most check for __ARM_FEATURE_CMSE are like this
defined (__ARM_FEATURE_CMSE) && (__ARM_FEATURE_CMSE == 3U)
but in some lines are only
(__ARM_FEATURE_CMSE < 3U)
so my tools reporting, that __ARM_FEATURE_CMSE can be undefined and interpreting as 0
please add everywhere a defined (__ARM_FEATURE_CMSE)
compare cmsis_armclang.h with cmsis_gcc.h
The text was updated successfully, but these errors were encountered: