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 ♦2020年12月09日 09:26:57 +00:00Commented 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 Madden2020年12月09日 15:19:18 +00:00Commented Dec 9, 2020 at 15:19
-
maybe you have to specify the S2 for the spiffs toolJuraj– Juraj ♦2020年12月09日 16:31:45 +00:00Commented Dec 9, 2020 at 16:31
-
I tried, but no luckMarr Madden– Marr Madden2020年12月09日 19:32:26 +00:00Commented Dec 9, 2020 at 19:32
-
1Actually we are at v3.1, cannot you upgrade to it? Maybe it's a bug..fabianoriccardi– fabianoriccardi2021年07月28日 18:55:49 +00:00Commented 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