Search found 3 matches
- Wed Jul 29, 2020 9:00 am
- Forum: IDEs for ESP-IDF
- Topic: Eclipse spiffs
- Replies: 4
- Views: 8972
Re: Eclipse spiffs
Hi, Found how to use eclipse with spiffs. You have to add the following two lines to the debug configuration, Startup mon program_esp ${workspace_loc:Spiffs/build/partition_table/partition-table.bin} 0x8000 verify mon program_esp ${workspace_loc:Spiffs/build/storage.bin} 0x110000 verify Where Spiffs...
- Wed Jul 29, 2020 8:20 am
- Forum: IDEs for ESP-IDF
- Topic: Eclipse spiffs
- Replies: 4
- Views: 8972
Re: Eclipse spiffs
Hi. I have changed the sdkconfig to use a custom partition table csv and have included a partitions.csv file in the project base directory. When I build the project using eclipse the output shows the new partition table. Then I debug the project openOCD flashes the project and it runs okay but I can...
- Tue Jul 28, 2020 3:02 pm
- Forum: IDEs for ESP-IDF
- Topic: Eclipse spiffs
- Replies: 4
- Views: 8972
Eclipse spiffs
Hi, I am using eclipse to debug the ESP32 and its working great. My problem is when I try to use spiffs. I have included the line spiffs_create_partition_image(my_partition ./data FLASH_IN_PROJECT ) in the base project CMakeLists.txt and I also have a folder data in the base project folder. I keep g...