Hello,
I am currently testing a custom board using the nRF5340QKAA.
Most of the connections are the same as the nRF5340 DK, but the main difference is that I built the board without an external 32k clock.
I am testing the peripheral UART example. On the DK board, I confirmed that advertising and connection work fine. However, when using my custom board, initially, nothing was detected during scanning.
To enable the internal clock, I first set:CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y
However, when I tried to scan for the device using the nRF Connect app, it still did not show up. So, I added:CONFIG_CLOCK_CONTROL_NRF_K32SRC_SYNTH=y
After adding this configuration, I was able to scan and detect the device successfully.
The problem now is that when I try to connect using the nRF Connect app, it immediately disconnects with the error:
Error 133(0x83): GATT ERROR
Can you help me troubleshoot this issue?