Minor identiation fix

This commit is contained in:
unknown 2022-06-17 18:15:06 +02:00
parent d24609b89e
commit bc18ccc8ac

View File

@ -331,7 +331,7 @@ elif upload_protocol.startswith("jlink"):
makedirs(build_dir) makedirs(build_dir)
script_path = join(build_dir, "upload.jlink") script_path = join(build_dir, "upload.jlink")
upload_addr = hex(env["FS_START"]) if "uploadfs" in COMMAND_LINE_TARGETS else board.get( upload_addr = hex(env["FS_START"]) if "uploadfs" in COMMAND_LINE_TARGETS else board.get(
"upload.offset_address", "0x0") "upload.offset_address", "0x0")
commands = [ commands = [
"h", "h",
"loadbin %s, %s" % (source, upload_addr), "loadbin %s, %s" % (source, upload_addr),