This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

GPIOTE_config_irq_priority error

Hello everyone,

i am trying to compile the Ble-UART_example but everytime it shows this error 'GPIOTE_config_irq_priority is undefined ) and i dont know what went wrong because it is just a library files can anyone tell me how to solve this issue any sugestions would be appreciable

Thank you

Parents
  • Thats why I hate packs (no offense) but I do not seem to get full control of the project with Keil packs.

    Can you open nrf_drv_gpiote.c file and find include "nrf_drv_config.h" and then right click on this and say open file

    check if GPIOTE is enabled in that file /* GPIOTE */

    #define GPIOTE_ENABLED 1
    
    #if (GPIOTE_ENABLED == 1)
    #define GPIOTE_CONFIG_USE_SWI_EGU false
    #define GPIOTE_CONFIG_IRQ_PRIORITY APP_IRQ_PRIORITY_HIGH
    #define GPIOTE_CONFIG_NUM_OF_LOW_POWER_EVENTS 6
    #endif
    
Reply
  • Thats why I hate packs (no offense) but I do not seem to get full control of the project with Keil packs.

    Can you open nrf_drv_gpiote.c file and find include "nrf_drv_config.h" and then right click on this and say open file

    check if GPIOTE is enabled in that file /* GPIOTE */

    #define GPIOTE_ENABLED 1
    
    #if (GPIOTE_ENABLED == 1)
    #define GPIOTE_CONFIG_USE_SWI_EGU false
    #define GPIOTE_CONFIG_IRQ_PRIORITY APP_IRQ_PRIORITY_HIGH
    #define GPIOTE_CONFIG_NUM_OF_LOW_POWER_EVENTS 6
    #endif
    
Children
No Data
Related