Yesterday I was running along developing on my 5441x system, IDE 2.8.7, and I started getting false "Out of Memory" errors on code load. The first time it happened, I was going from a Run build to a Debug session with no source changes. My build uses less than 5% of memory, see screenshot. I powered down the development system and PC overnight. This morning, same story. It won't even load the Run build.
That's good info. My application uses opensll as a library, so some dynamic allocation may be in play. But this happens right after boot, before any openssl lib functions are called.
Based on what you wrote, I rebooted to the boot loader and then sent the factory test image from the IDE. Back in business.
> Why are you are using openssl rather than the Netburner SSL implementation?
I needed ECDSA for a project, which is not provided by NB, and decided to go all the way and port openssl to NB. That decision enabled the current project to quickly bring in standard des, 3des and MAC libraries.
The memory problem seems to be associated with Debug mode. I put a loop counter in main() that prints on UART0 every few seconds. As long as I stay in Run mode, the counter prints on schedule and code load always works. As soon as I load a Debug build, the counter fails, indicating that the main loop is not executing. I also get false positives on dataavail(). UART0 is unresponsive to commands and new code load fails until I drop out to the bootloader. So it's back to printf debugging for a while.
I ported openssl in 2018, and this problem is new, so that is not the problem here.