Hi,
After adding some code to the FreeRTOS HTTPDemo sample, the linker reports that the code no longer fits in the ‘irom0_0_seg’ region. This region is only 240K in the default linker file eagle.app.v6.ld. My 32M ESP12E supports a larger size than that. Overwriting the MEMORY description in eagle.app.v6.ld with the one from eagle.app.v6.new.2048.ld allowed the linker to do it’s work, but then an error occurred during flashing: ‘Failed to start flash operation’ (I believe the message appeared after flashing the boot segment). Finally I tried to add a new MCU entry in the BSP.xml file, pointing to the eagle.app.v6.new.2048.ld file, and with a lager flash size, but that didn’t help because the same flash error occurred.
What is the correct procedure for increasing the size of the flash memory for my project?
If I want to create an image without the GDB stub, I need to change the Embedded device settings in the VisualGDB Project Properties. Is there a way to have this done by – for instance – selecting a release build vs a debug build?