We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the latest cmsis_armclang.h, we have: #define __INLINE inline
However, "inline" is a valid keyword only from C99 language. For C90, ARM compiler v6 recognizes only __inline or inline keywords.
Additional remark: the @Date of the file is "27. July 2024" while it was committed in February 2024
The text was updated successfully, but these errors were encountered:
Note: CMSIS is written for C99 and higher (it never supported C90) - see here https://arm-software.github.io/CMSIS_6/latest/General/index.html#coding_rules.
Thanks for pointing out the problem with the @Date
Sorry, something went wrong.
No branches or pull requests
In the latest cmsis_armclang.h, we have:
#define __INLINE inline
However, "inline" is a valid keyword only from C99 language.
For C90, ARM compiler v6 recognizes only __inline or inline keywords.
Additional remark: the @Date of the file is "27. July 2024" while it was committed in February 2024
The text was updated successfully, but these errors were encountered: