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

How to include app_timer.h to blink example ?

Hi all,

I am using PCA10059(nRF52840 dongle) to learn Nordic BLE solution. I start from \examples\peripheral\blinky project and Segger development environment.

Now I want to include app_timer.h to blink project, after I add #include "app_timer.h" to the top of the main.c, compiler report:

nrf_atfifo.h: No such file or directory

I don't see any place for me to put header file into project, please provide any suggestions.

Thanks.

Parents
  • Hi,

    The error "nrf_atfifo.h: No such file or directory" tells you that nrf_atfifo.h is not in the projects include path, so you need to add it. Using SES you have to go to Project -> Options... and then find it as shown in this image:

    Note that there are typically quite a few dependencies, and the best way to resolve them is to try to build and fix each error as it comes.

    You can also refer to this project (blinky_with_libs.zip) for the nrF52840 dongle blinky example in SDK 16, which is modified to include dependencies on most SDK drivers and libraries so that adding the app_timer is less work.

Reply
  • Hi,

    The error "nrf_atfifo.h: No such file or directory" tells you that nrf_atfifo.h is not in the projects include path, so you need to add it. Using SES you have to go to Project -> Options... and then find it as shown in this image:

    Note that there are typically quite a few dependencies, and the best way to resolve them is to try to build and fix each error as it comes.

    You can also refer to this project (blinky_with_libs.zip) for the nrF52840 dongle blinky example in SDK 16, which is modified to include dependencies on most SDK drivers and libraries so that adding the app_timer is less work.

Children
Related