Skip to content

Commit

Permalink
swapped u to d
Browse files Browse the repository at this point in the history
  • Loading branch information
James Townley committed Mar 3, 2016
1 parent 58569fe commit 535959b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/firmware/firmware.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def dfu_bin(self):
def update(self, firmware_path):
process = Popen([
self.dfu_bin,
'-c', '-u', '--fn', firmware_path], stdout=PIPE, stderr=PIPE)
'-c', '-d', '--fn', firmware_path], stdout=PIPE, stderr=PIPE)
(out, err) = process.communicate()
exit_code = process.wait()
if exit_code != 0:
Expand Down

0 comments on commit 535959b

Please sign in to comment.