Hi,
I suddenly started getting MPSL ASSERT: 112, 2134 upon BT enable and upon research came across this post (link) and used following code:
void clock_started_cb(void)
{
printk("HFXO started\n");
}
int main(void)
{
int err;
err = mpsl_clock_hfclk_request(clock_started_cb);
if (err) {
printk("mpsl_clock_hfclk_request() failed (err: %d)\n", err);
}
...
HFXO starts on peripheral_lbs, beacon and on my app but advertising only starts on peripheral_lbs.
How can I start advertising on my app as I only need advertising.
Thanks