This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

SOFTDEVICE: ASSERTION FAILED while running mesh.

Hi, I'm getting regular crashes with my app: SOFTDEVICE: ASSERTION FAILED.

Using and NRF52832, SDK 15.3.0, SD 132 6.1.1, and Mesh SDK 3.1.0.

With DEBUG defined, I don't really get more info: id=1, pc=148742, info=0.

The last mesh log usually is something with TX (mostly net_beacon.c,  265, BEACON TX).
One crash, I also had a log of getting event NRF_EVT_RADIO_SESSION_IDLE.

I use the mesh SDK to communicate via mesh between nodes, to advertise iBeacon (100ms interval), and I use the scan callback. Next to that, I also use the SD to advertise service data.

Parameters:

	nrf_clock_lf_cfg_t lfclksrc;
	lfclksrc.source = NRF_SDH_CLOCK_LF_SRC;
	lfclksrc.rc_ctiv = NRF_SDH_CLOCK_LF_RC_CTIV;
	lfclksrc.rc_temp_ctiv = NRF_SDH_CLOCK_LF_RC_TEMP_CTIV;
	lfclksrc.accuracy = NRF_CLOCK_LF_ACCURACY_20_PPM;

	mesh_stack_init_params_t init_params;
	init_params.core.irq_priority       = NRF_MESH_IRQ_PRIORITY_THREAD;
	init_params.core.lfclksrc           = lfclksrc;
	init_params.core.p_uuid             = NULL;
	init_params.core.relay_cb           = NULL;




Any idea of what causes this crash?

  • Let me see if I can get a hold of a softdevice elf file. Then we could use the addr2line tool to see where the softdevice assert is occuring. I will get back to you soon.

  • What happens if you decrease the iBeacon advertising interval to say every 2 seconds? Do you get the assert then?

  • Same sort of thing:

    app_error_fault_handler (id=1, pc=86552, info=0)

    bt: #1  0x00023de8 in ?? ()

    My soc handler printed event 7 (NRF_EVT_RADIO_SESSION_IDLE).

    The mesh debug:

    <t:    1353824>, net_beacon.c,  265, BEACON TX F8:D2:7A:2E
    <t:    1772985>, net_packet.c,  230, Unencrypted data: : C51E60D00D80AD09ADA0E236A8337182EA6A
    <t:    1772992>, transport.c,  934, Message decrypted
    <t:    1772995>, access.c,  246, RX: [aop: 0x00C0]
    <t:    1773660>, net_packet.c,  230, Unencrypted data: : C51E6016BCC5AAA3AE307F3A8CDE8874138C
    <t:    1773667>, transport.c,  934, Message decrypted
    <t:    1773671>, access.c,  246, RX: [aop: 0x00C0]
    <t:    1774446>, net_packet.c,  230, Unencrypted data: : C51E60F7DC92944C0A997FC9EF9AFF507FAE
    <t:    1774454>, transport.c,  934, Message decrypted
    <t:    1774457>, access.c,  246, RX: [aop: 0x00C0]
    <t:    1776676>, net_packet.c,  230, Unencrypted data: : C51E60B12F7637719B5817BF995101639455
    <t:    1776684>, transport.c,  934, Message decrypted
    <t:    1776687>, access.c,  246, RX: [aop: 0x00C0]
    <t:    1777588>, net_packet.c,  230, Unencrypted data: : C51E601F09C849EDAE1495D76BB7AA0936DC
    <t:    1777596>, transport.c,  934, Message decrypted
    <t:    1777599>, access.c,  246, RX: [aop: 0x00C0]
    <t:    1778394>, net_packet.c,  230, Unencrypted data: : C51E60B374117D1E4D154091045930567D09
    <t:    1778402>, transport.c,  934, Message decrypted
    <t:    1778405>, access.c,  246, RX: [aop: 0x00C0]
    <t:    1852661>, net_packet.c,  230, Unencrypted data: : C51E60A68964C124FDB04E7C1D7C73
    <t:    1852668>, transport.c,  934, Message decrypted
    <t:    1852671>, access.c,  246, RX: [aop: 0x00C0]
    <t:    2009184>, net_beacon.c,  265, BEACON TX F8:D2:7A:2E
    <error> app: SOFTDEVICE: ASSERTION FAILED

  • Maybe some additional info that helps:

    Sometimes at boot, the SD seems to hang for seconds: In this time, I don't get any advertisements, and FDS gives me write timeouts. It also sometimes ends in the event 7 (NRF_EVT_RADIO_SESSION_IDLE).

    I don't get that if I don't start the mesh.

  • Another thing I just noticed: while I don't have DEBUG defined, the device does not reboot.

    Edit: never mind, this is just the NRF_BREAKPOINT_COND.

Related