Re: Re: Re:Re: mm/mm_heap assertion error

2024-03-12 Thread Alan C. Assis
> > > From:"Alan C. Assis"< acas...@gmail.com >; > > Date:2024/3/12 18:56 > > To:"dev"< dev@nuttx.apache.org >; > > Subject:Re: Re:Re: mm/mm_heap assertion error > > > You can use the stack monitor to see the stack consumption. >

Re: Re:Re: mm/mm_heap assertion error

2024-03-12 Thread Nathan Hartman
One possibility is stack was too small before and overflowed. Another possibility is that stack size is OK but some code makes an out-of-bound write to an array on the stack. Try Alan's suggestion to use stack monitor, and that will help understand if there is something wrong. (If it shows that o

Re: Re:Re: mm/mm_heap assertion error

2024-03-12 Thread Alan C. Assis
You can use the stack monitor to see the stack consumption. Best Regards, Alan On Tue, Mar 12, 2024 at 7:38 AM yfliu2008 wrote: > Dear experts, > > > > After enlarging the stack size of "AppBringUp"  thread, the remote > node can boot NSH on RPMSGFS now. I am sorry for not trying this earlier.