-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
picotool uf2 convert cannot append arbitrary data #169
Comments
I was able to do the work with uf2conv.py tool from Sming (https://sming.readthedocs.io/en/stable/_inc/Sming/Arch/Rp2040/Components/uf2/uf2conv.html) |
The We could maybe add a |
You cannot concatenate uf2 files as they contain sequential numbers. Moreover, each time you copy an uf2 file to your pico, it reboots. |
I guess this is a similar request to raspberrypi/pico-sdk#1071 and raspberrypi/pico-sdk#1300 |
I’ve got 2 data files :
table.bin (283 bytes)
configuration.bin (64 bytes)
if I do
picotool uf2 convert -o 0x10001000 table.bin pico.uf2
picotool uf2 convert -o 0x10002000 configuration.bin pico.uf2
then I got :
a file pico.uf2 of 512 bytes long. It means table.bin has been removed from pico.uf2 (or pico.uf2 has been deleted before adding configuration.bin)
Thanks to picotool uf2 convert we should be able to add arbitrary data at arbitrary location.
I do not have this issue when I append binary codes compiled for the right location.
The text was updated successfully, but these errors were encountered: