Page 1 of 1

BLE & WIFI simultaneous usage in amazon freetos

Posted: Thu May 28, 2020 7:49 am
by aravind p
hi,

i am using ESP32 amazon freertos, i can build and make the o/p in ble and wifi in seperate build file . when merge these two codes in single code ,i can able to build and flash the code to my esp32. During the run time I got some error like:

esp_image: Image length 1201904 doesn't fit in partition length 1048576
E (559) boot: Factory app partition is not bootable
E (561) boot: No bootable app partitions in the partition table
ets Jun 8 2016 00:22:57

please find the attachment which i attached in below , in attachment i shared my error and the partition table in bootloader image ,plz revert me with solution

Re: BLE & WIFI simultaneous usage in amazon freetos

Posted: Thu May 28, 2020 11:51 am
by chegewara
aravind p wrote: esp_image: Image length 1201904 doesn't fit in partition length 1048576
This line tells you all. Binary is bigger than partition. What you have to do is to use custom partition table.

Re: BLE & WIFI simultaneous usage in amazon freetos

Posted: Fri May 29, 2020 7:44 am
by aravind p
chegewara wrote:
Thu May 28, 2020 11:51 am
aravind p wrote: esp_image: Image length 1201904 doesn't fit in partition length 1048576
This line tells you all. Binary is bigger than partition. What you have to do is to use custom partition table.

In custom partition table , i checked there is no option to change the memory size . In partition table there is having custom table option but inside there is no option to change the memory size

Re: BLE & WIFI simultaneous usage in amazon freetos

Posted: Fri May 29, 2020 10:19 am
by ESP_Sprite
A custom partition table allows you to give esp-idf a csv file with your own partition definitions. You'd have to create that first. See the docs for more info.