Hello, we are using nordic SDK 16.0 and mesh SDK 4.2.0.
In our project, sometimes at the start of the program, we are running into line 280 of mesh_config.c, a debug assert that looks for *p_flags & MESH_CONFIG_ENTRY_FLAG_BUSY.
Why is this assert checked only in debug mode? What is this even doing? Can we safely comment this out and continue running the project in debug mode while we develop it or is it a sign of something that is wrong with our project? What happens if the MESH_CONFIG_ENTRY_FLAG_BUSY flag is up and we proceed anyway without asserting?
Thank you