Problem with BLE radio part. Can't advertise...

Hi guys.
I have several custom boards that I made by myself based on nRF52832.
I tested them by a ready example. The example is BLE advertising while an LED blinks at every 1 second. All boards work properly except one board. The mentioned board LED blinks as other boards but when I scan it by "nRF Connect" app, it's not in the scanned list. I think it relates to its radio. I also checked soldering quality of the chipset, I changed 32MHZ crystal with a new one and replaced passive parts in antenna path, too. But the problem is remained.

As I saw in similar issues, I added the below code to ensure the crystal is working good:
// Start HFCLK from crystal oscillator. The radio needs crystal to function correctly.
NRF_CLOCK->TASKS_HFCLKSTART = 1;
while (NRF_CLOCK->EVENTS_HFCLKSTARTED == 0);

The debug info shows it must work good while it's not good:
*** Booting nRF Connect SDK v2.5.0 ***
Starting Bluetooth Peripheral LBS example
I: 6 Sectors of 4096 bytes
I: alloc wra: 0, fe8
I: data wra: 0, 0
I: SoftDevice Controller build revision:
I: c5 93 ba a9 14 4d 8d 05 |.....M..
I: 30 4e 9b 92 d7 71 1e e8 |0N...q..
I: aa 02 50 3c |..P<
I: HW Platform: Nordic Semiconductor (0x0002)
I: HW Variant: nRF52x (0x0002)
I: Firmware: Standard Bluetooth controller (0x00) Version 197.47763 Build 2370639017
I: No ID address. App must call settings_load()
Bluetooth initialized
I: Identity: F2:5A:F5:63:D1:C2 (random)
I: HCI: version 5.4 (0x0d) revision 0x1102, manufacturer 0x0059
I: LMP: version 5.4 (0x0d) subver 0x1102
Advertising successfully started

The schematic that I use is:

Thanks in advance
Mehdi Sadeghian

Related