Question
How to include and call NVIC functions from core_cm7.h?
I want to use NVIC_SetPriority() and NVIC_Enable_IQRn in main.c, and I have the necessary included headers, but when I try to build the program I get "undefined reference to NVIC_SetPriority".
I assume it is because the functions are headed as __STATIC_INLINE. Am I just supposed to remove the __STATIC_INLINE or is there a different way for me to access these functions?
