HI
I am currently using NRF54L15 with SDK version 3.0.0, and I want to implement GRTC auto-reload without using interrupts. My main goal is to reduce CPU usage and utilize the peripheral DPPI for operations as much as possible.
-
The manual states that only Channel 0 supports hardware auto-reload, while other channels can be configured via the CC_ADD register. However, in Zephyr, Channel 0 is already used for RTOS timing, so I am applying for other channels for comparison.
-
For other channels, I am trying to implement GRTC auto-reload using DPPI, but there seems to be no CC_ADD operation among the tasks.
Does this mean I cannot avoid interrupts to achieve GRTC compare reloading?
Thanks.