Skip to content

Commit fe728c5

Browse files
Add backward compatibility for -e flag on fw_postprocess
Roll version to 0.1.0
1 parent 180e7c2 commit fe728c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

host_tools/fw_postprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def main():
153153
parser.error("No filename specified")
154154

155155
if not options.elf_filename:
156-
parser.error("No Elf specified")
156+
options.elf_filename = 'main.elf'
157157

158158
if not options.binary_filename and not options.ihex_filename:
159159
parser.error("Must specifiy a binary and/or ihex file to store")

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def read(fname):
1010

1111
setup(
1212
name = "asl_f4_loader",
13-
version = "0.0.7",
13+
version = "0.1.0",
1414
author = "Jeff Ciesielski",
1515
author_email = "jeff@autosportlabs.com",
1616
description = ("A library and shell script to perform firmware updates on Cortex M4 Microcontrollers. (Currently: STM32F4)"),

0 commit comments

Comments
 (0)