Hello, I'm using nRF52833, pca10100, s140.
I'm going to write a code using the external 32.768khz crystal to determine if the port is high/low every 0.5 seconds through rtc.
First of all, I saw the rtc example first, and it says that it uses 'internal lfclk' in the lfclk setting section.
What additional settings do I need to make to use external lfclk?
( I understand that external xtal can be used if NRFX_CLOCK_CONFIG_LF_SRC is set to 1, is this correct? )
I checked this, but I don't know how to set it up. (Is this the only way to set the bit like this? 'NRF_CLOCK->LFCLKSRC |= (1 << 16) | (1 << 17);')
Also, after initializing like this, should I write the code by referring to the rtc example?
Thank you..