SDK 2.0.0 OpenThread CoAP Client sample stack overflow

Using nRF Connect SDK v2.0.0 on Windows in VS Code.  Hardware is a U-Blox BMD340 demo kit with nRF52840.

We've built and run the following OpenThread sample applications successfully:

C:\ncs\v2.0.0\nrf\samples\openthread\cli

C:\ncs\v2.0.0\nrf\samples\openthread\coap_server

However, we're running into an issue with the OpenThread CoAP client sample project "out of the box"

C:\ncs\v2.0.0\nrf\samples\openthread\coap_client

The sample client project builds successfully, and starts up on the hardware, but when the kit button 2 is pressed to send a thread CoAp multicast message, it crashes with a stack overflow and reboots.  The UART command line outputs the following when the button is pressed:

uart:~$ ot state
leader
Done
[00:02:25.731,842] <inf> net_openthread: [N] RouterTable---: Allocate router id 21
[00:03:21.317,443] <inf> coap_client_utils: Send multicast mesh 'light' request
[00:03:21.317,596] <err> os: ***** MPU FAULT *****
[00:03:21.317,596] <err> os: Stacking error (context area might be not valid)
[00:03:21.317,626] <err> os: r0/a1: 0xaaaaaaaa r1/a2: 0xaaaaaaaa r2/a3: 0xaaaaaaaa
[00:03:21.317,657] <err> os: r3/a4: 0xaaaaaaaa r12/ip: 0xaaaaaaaa r14/lr: 0xaaaaaaaa
[00:03:21.317,657] <err> os: xpsr: 0xaaaaaa00
[00:03:21.317,687] <err> os: s[ 0]: 0x00000000 s[ 1]: 0x00000000 s[ 2]: 0x00000000 s[ 3]: 0x00000000
[00:03:21.317,687] <err> os: s[ 4]: 0x00000000 s[ 5]: 0x00000000 s[ 6]: 0x00000000 s[ 7]: 0x00000000
[00:03:21.317,718] <err> os: s[ 8]: 0x00000000 s[ 9]: 0x00000000 s[10]: 0x00000000 s[11]: 0x00000000
[00:03:21.317,718] <err> os: s[12]: 0x00000000 s[13]: 0x00000000 s[14]: 0x00000000 s[15]: 0xffffffff
[00:03:21.317,749] <err> os: fpscr: 0x00000000
[00:03:21.317,779] <err> os: Faulting instruction address (r15/pc): 0xaaaaaaaa
[00:03:21.317,810] <err> os: >>> ZEPHYR FATAL ERROR 2: Stack overflow on CPU 0
[00:03:21.317,840] <err> os: Current thread: 0x20003880 (sysworkq)
[00:03:21.497,100] <err> fatal_error: Resetting system
uart:~$ *** Booting Zephyr OS build v3.0.99-ncs1 ***

We're concerned this is happening to the sample "out of the box" with no modifications.  Is this a known issue with this sample in SDK v2.0.0?

Related