nrf51-ble-app-lbs icon indicating copy to clipboard operation
nrf51-ble-app-lbs copied to clipboard

GPIOTE_IRQHandler multiply defined (by nrf_drv_gpiote.o and app_gpiote.o).

Open x893 opened this issue 6 years ago • 0 comments

Hi, example not compile under nRF51_SDK_8.1.0_b6ed55f.zip

  1. Add inlude path for nrf_drv_gpiote.h
  2. Add config folder and copy file nrf_drv_config.h with #define GPIOTE_ENABLED 1
  3. Add file nrf_drv_gpiote.c to project
  4. Add file nrf_drv_common.c

On build i see next message

# ._build\ble_app_lbs.axf: Error: L6200E: Symbol GPIOTE_IRQHandler multiply defined (by nrf_drv_gpiote.o and app_gpiote.o).

What is GPIOTE_IRQHandler i need remove ? From app_gpiote.c(97) : void GPIOTE_IRQHandler(void) or from nrf_drv_gpiote.c(443) : void GPIOTE_IRQHandler(void) ?

Thanks in advance

x893 avatar Aug 23 '17 17:08 x893