You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see in the readme the instructions on compiling and uploading. But there are pre-built releases ready to be used. What's the command for just upgrading the firmware from a pre-compiled release?
Thanks! You all rock!
The text was updated successfully, but these errors were encountered:
So the command looks like it'll be dfu-util -d 1fc9:8189 -D "something". Double-checking the DFU-Util docs:
-d, --device [Run-Time VENDOR]:[Run-Time PRODUCT][,[DFU Mode VENDOR]:[DFU Mode PRODUCT]]
Specify run-time and/or DFU mode vendor and/or product IDs of the DFU device to work with
...
-D, --download FILE
Write firmware from FILE into device. When FILE is -, the firmware is read from stdin.
The -D "something" flag is the filename, so that's gotta be $(TARGET).bin. That's probably set somewhere in the Makefile too I'd expect:
# The name of your project (used to name the compiled .hex file)TARGET = $(notdir$(CURDIR))
That notdir looks a little confusing, I'd have to debug to figure out what it prints, but we probably don't need it. DFU docs sound like you can simply pass a filename.
I see in the readme the instructions on compiling and uploading. But there are pre-built releases ready to be used. What's the command for just upgrading the firmware from a pre-compiled release?
Thanks! You all rock!
The text was updated successfully, but these errors were encountered: