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

Eddystone

Hi,

I'm trying to implement eddystone in my application, using the example.

The problem is the I can't build my project, as I have an error regarding DRV_RTC_RTC1_INST_IDX undeclared here (not in a function).

I guess I need to use the config file here, but I don't know what to change there.

Thanks!

Parents
  • I just recently had this issue.

    I used the ble_app_uart exemple as a foundation for my project but a coworker decided to used a peripheral ppi exemple instead. When merging the ble into the ppi (not the other way for a particular reason) I had this error concerning DRV_RTC_RTC1_INST_IDX even though NRFX_RTC1_ENABLED was 0 in the ble exemple.

    The reason it worked on the ble was because it was enabled in the preprocessor definition via the lines : 

    APP_TIMER_V2

    APP_TIMER_V2_RTC1_ENABLED

    Hope this helps future users.

Reply
  • I just recently had this issue.

    I used the ble_app_uart exemple as a foundation for my project but a coworker decided to used a peripheral ppi exemple instead. When merging the ble into the ppi (not the other way for a particular reason) I had this error concerning DRV_RTC_RTC1_INST_IDX even though NRFX_RTC1_ENABLED was 0 in the ble exemple.

    The reason it worked on the ble was because it was enabled in the preprocessor definition via the lines : 

    APP_TIMER_V2

    APP_TIMER_V2_RTC1_ENABLED

    Hope this helps future users.

Children
No Data
Related