Assert at nrfx_grtc.c 278

HI all,

    The main program suddenly encountered assert (nrfx_grtc.c line 278)while running, which happened by chance. The following are the relevant logs

note:nrf54l15 v3.1.0

Do you have any suggestions? I have read other related posts and didn't quite understand them.

Looking forward to your reply!

  • Hi,

    666 said:

     Do I need to add any other configurations that would be beneficial for my printing?

    I would say that it depends on the time it takes for you to reproduce the bug. If you can reproduce it quite easily, you can try to use instant logging and see if it catches something.

    CONFIG_LOG_MODE_IMMEDIATE=y
    CONFIG_RESET_ON_FATAL_ERROR=n

    However, this method can add other issue to the application as the logging will happen in a blocking way and not in deferred mode as before.

    But if the issue is quite a rare occurrence, I would recommend you trying out Memfault. Adding it to the application is a bit more work, but It will allow you to monitor the issue and log all the things you need directly.

    You can find a more on how to implement it on this lesson from DevAcademy (link).

    Best regards,

    Simon D-M

  • Thank you, I will let you know if there is any progress

Related