Hi - I hope this is the right place for this since I'm talking about built in memory rather than add-on components.
Anyway, so I have an Arduino sketch for an ESP32 controller that weighs about 118kb on my computer's drive. I am having a bit of annoyance with the speed at which things are accessed, so I looked up the size of the IRAM block and it's apparently 192kb.
So, theoretically, could I dump this whole sketch in the IRAM? Does the C++ decompile size have to be taken into account here? I wouldn't actually put all of it in, just about half, but I'd like to know regardless.
Thank you.