Hi,
I want to migrate BLE HRS peripheral sample to custom board with Raytac's MDBT42-512KV2 (WLCSP nrf52832 used). The board doesn't have external XTAL.
In sdk_config.h I set:
#define NRF_SDH_CLOCK_LF_SRC 0
#define NRF_SDH_CLOCK_LF_RC_CTIV 16
#define NRF_SDH_CLOCK_LF_RC_TEMP_CTIV 2
#define NRF_SDH_CLOCK_LF_ACCURACY 0
to indicate missing XTAL and to use internal RC oscillator.
The program enters main loop in main.c but I never receive any event in on_adv_evt (I guess it should indicate start of advertising that is started in main function). After a while the firmware probably stops executing after some hardfault or something similar as "stack frame not in module" is indicated by GDB when I want to step through the program.
Can you please help me with migrating BLE sample project to MDBT42?