Is there any micropython code simulator where OpenMV RT1062 board is supported. Our codebase is big, It’ll give support to visualize the code flow and and memory allocation and deallocation if supported.
Not exactly the RT1060, but you can run the firmware on Qemu or Arm’s FVP, it even has a soft-CSI to stream images. This is what I use to run unit-tests. I’m not aware of any other option.
The firmware has a built-in profiler, it has to be enabled at compile time. Not all libraries/drivers are enabled by default, but you could change makefiles fragments to add anything (hint use bigger hash size). With profiling enabled, you can pass the elf to the IDE and resolves symbols too.
As for memory, the protocol supports a memory stats command that returns stats from all pools. It’s fast enough for real time streaming, but no tools exist yet to visualize this data.