Problem to load Pico Little Fs data form IDE 1.8.19 to a Pico 2 W #2738
-
I am using RaspberryPi 4 on Fedora 41. What is wrong with conversion ? Here is my log from Arduino IDE : `[LittleFS] data : /home/alain/Arduino/EssaisPico/Pico2W/PicoAdss2/data Resetting /dev/ttyACM0 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
That (obsolete) plug in doesn't really support Pico2. There's a whole new UF2 format requirement and build steps needed. You can migrate to the 2.x IDE and use the supported TypeScript uploader I wrote which works on ESP32, ESP8266, Pico, and Pico2, see the repo. That said, if you're really stuck on the Java 1.8 IDE from a few years back, adding those commands to the java-run build process isn't too complicated. But it's not something I'll be working on. Also, FWIW, UF2 files are around 2x the size of the actual binary uploaded. They use some magic FAT-format specific sector-sized packets which have a lot of overhead (but are amazingly compatible across different OS uploads!). |
Beta Was this translation helpful? Give feedback.
That (obsolete) plug in doesn't really support Pico2. There's a whole new UF2 format requirement and build steps needed. You can migrate to the 2.x IDE and use the supported TypeScript uploader I wrote which works on ESP32, ESP8266, Pico, and Pico2, see the repo.
That said, if you're really stuck on the Java 1.8 IDE from a few years back, adding those commands to the java-run build process isn't too complicated. But it's not something I'll be working on.
Also, FWIW, UF2 files are around 2x the size of the actual binary uploaded. They use some magic FAT-format specific sector-sized packets which have a lot of overhead (but are amazingly compatible across different OS uploads!).