Left here for archival purposes.

User avatar
By guttso
#32894 The problem come from SSL module and size of image. I can avoid this issue if remove #define CLIENT_SSL_ENABLE and use #define FLASH_512K in user_config.h file.
If you flashed a big image to your ESP before, You also need to reflash esp_init_data_default.bin at 0x7C000 because the "oversized" build overwrote that section of flash memory
https://github.com/espressif/ESP8266_AT/tree/master/bin
User avatar
By Dsbaha
#32899
guttso wrote:The problem come from SSL module and size of image. I can avoid this issue if remove #define CLIENT_SSL_ENABLE and use #define FLASH_512K in user_config.h file.
If you flashed a big image to your ESP before, You also need to reflash esp_init_data_default.bin at 0x7C000 because the "oversized" build overwrote that section of flash memory
https://github.com/espressif/ESP8266_AT/tree/master/bin


Hah, I removed the CLIENT_SSL_ENABLE before your post and was compiling it again. I can confirm it works on the ESP-01 now.

However, I did leave the flash size define alone.

Then again, I usually remove some stuff in the user_modules.h file as well.