Hello.
This may be a basic question, but please let me know.
I am using nRF54L15-DK and nRF Connect SDK v3.0.2.
Is the 32MHz crystal running when the nRF54L15 program starts?
I've read the documentation, but it's difficult.
docs.nordicsemi.com/.../clock.html
I Use the peripheral_uart sample
int main(void){ if(NRF_CLOCK->EVENTS_XOSTARTED == 1){ printk("Clock started.\n"); }else{ printk("Clock not started.\n"); } }
I added this to the beginning of main and checked the program, and it displayed "Clock not started."
Does this mean that the 32MHz crystal is not running?
Best regards.