Sample code not available for selected part

Hello Team,

We are currently working with the nRF54L05 and using the nRF Connect SDK. We have successfully evaluated basic BLE peripheral samples on the EVK.

For our application, we require sample implementations of the ADC and Timer. However, we found that the existing samples are not compatible with the nRF54L05.

Could you please guide us on how to use the Timer and ADC with this platform?

Thank you.

Parents
  • Hello,

    I tried using "nrfx_timer_int_enable(&timer_instance, NRF_TIMER_INT_COMPARE0_MASK);" to enable the interrupts, but it is giving a compilation error, "undefined reference to `nrfx_timer_int_enable". I have included the "nrfx_timer.h" file in my source code. Is there any other header file that needs to be included?

    I also tried using "nrfx_timer_compare_int_enable(&timer_instance, NRF_TIMER_INT_COMPARE0_MASK);" available in "nrfx_timer.h", to enable the interrupts, now the code is getting compiled but the interrupt is not getting triggered.

    I tried "nrfx_timer_compare_int_enable(&timer_instance, NRF_TIMER_CC_CHANNEL0);" instead of "nrfx_timer_compare_int_enable(&timer_instance, NRF_TIMER_INT_COMPARE0_MASK);" but still not getting any interrupt.

Reply
  • Hello,

    I tried using "nrfx_timer_int_enable(&timer_instance, NRF_TIMER_INT_COMPARE0_MASK);" to enable the interrupts, but it is giving a compilation error, "undefined reference to `nrfx_timer_int_enable". I have included the "nrfx_timer.h" file in my source code. Is there any other header file that needs to be included?

    I also tried using "nrfx_timer_compare_int_enable(&timer_instance, NRF_TIMER_INT_COMPARE0_MASK);" available in "nrfx_timer.h", to enable the interrupts, now the code is getting compiled but the interrupt is not getting triggered.

    I tried "nrfx_timer_compare_int_enable(&timer_instance, NRF_TIMER_CC_CHANNEL0);" instead of "nrfx_timer_compare_int_enable(&timer_instance, NRF_TIMER_INT_COMPARE0_MASK);" but still not getting any interrupt.

Children
No Data
Related