-
Notifications
You must be signed in to change notification settings - Fork 5
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
Could you provide how you made .UF2 files for your example projects? #7
Comments
Hi, FYI Converting bin to uf2 for SAMD21
$ git clone https://github.com/microsoft/uf2.git
$ cd uf2/utils
$ python uf2conv.py -f 0x68ed2b88 -b 0x2000 [bin path] -o flash.uf2
# For example: for SAMD21(Cortex M0: XIAO, Seeeduino Zero, etc)
# python uf2conv.py -f 0x68ed2b88 -b 0x2000 /Users/ansonhe/Desktop/blink.bin -o flash.uf2
# or for SAMD51(Cortex M4: wio terminal, etc)
# python uf2conv.py -f 0x55114460 -b 0x4000 /Users/ansonhe/Desktop/blink.bin -o flash.uf2 Note:
|
Hi @LynnL4 , |
Hi EdXian: |
Hi @LynnL4 |
Hi,
I think this is a valid feature request to add documentation of how to create .UF2 file from arduino. Because it involves a number of steps to make this project work, including installing Arduino IDE, adding Seeed SAMD boards, adding the project files and possibly some libraries if I didn't download them already from trying out other Seeed boards and projects.
I'd like to know how to generate .UF2 files so I can send the .UF2 to someone who has no knowledge of the above but can still enjoy the Wio terminal. I added some keyboard/mouse features so it would be a nice operating panel for RPI without KMV.
Thank you!
The text was updated successfully, but these errors were encountered: