Hi! I'm trying to add the nRF drv_timer library to the ble_app_template example project (BLE Peripheral).
I have added the nrf_drv_timer.c file to the project, and the directory ..\..\..\..\..\..\components\drivers_nrf\timer to my Include Paths under Options for Target (magic wand icon) > C/C++ / Include paths.
The file appears under "Manage Project Items:"
I have set TIMER_ENABLED to 1 in sdk_config.h:
I get the following linker errors:
.\_build\nrf51422_xxac.axf: Error: L6218E: Undefined symbol nrf_drv_timer_enable (referred from main.o).
.\_build\nrf51422_xxac.axf: Error: L6218E: Undefined symbol nrf_drv_timer_extended_compare (referred from main.o).
.\_build\nrf51422_xxac.axf: Error: L6218E: Undefined symbol nrf_drv_timer_init (referred from main.o).
Does adding files to the project require any additional steps? All the other posts on this topic I have read only mention checking the things I have verified above.