I have a spiff file that uploads fine using a regular esp32, but when I try on the esp32-32, with a fresh installation, I get:
esptool.py v3.0-dev Serial port COM3 Connecting....
A fatal error occurred: This chip is ESP32-S2 not ESP32. Wrong --chip argument? SPIFFS Upload failed!
Any ideas??
Thanks
-
1you forgot to show the executed esptool command in questionJuraj– Juraj ♦12/09/2020 09:26:57Commented Dec 9, 2020 at 9:26
-
Arduino does it for you, but I also tried: esptool.py -chip esp32s2 -port COM3 -baud 115200 write_flash -z ox110000 filename.spiffs.binMarr Madden– Marr Madden12/09/2020 15:19:18Commented Dec 9, 2020 at 15:19
-
maybe you have to specify the S2 for the spiffs toolJuraj– Juraj ♦12/09/2020 16:31:45Commented Dec 9, 2020 at 16:31
-
I tried, but no luckMarr Madden– Marr Madden12/09/2020 19:32:26Commented Dec 9, 2020 at 19:32
-
1Actually we are at v3.1, cannot you upgrade to it? Maybe it's a bug..fabianoriccardi– fabianoriccardi07/28/2021 18:55:49Commented Jul 28, 2021 at 18:55
1 Answer 1
Is the missing double dash?
esptool.py --chip esp32s2 --port COM3 --baud 115200 write_flash -z 0x110000 filename.spiffs.bin
answered Jul 28, 2021 at 19:02