Fix OpenOCD upload command for atmelsam // Issue #732

This commit is contained in:
Valerii Koval
2016-08-04 12:00:38 +03:00
committed by GitHub
parent edc04987d3
commit 179a971770

View File

@ -146,7 +146,7 @@ if upload_protocol == "openocd":
"-c", "\"telnet_port", "disabled;",
"program", "{{$SOURCES}}",
"verify", "reset",
"%s;" % user_code_section if user_code_section else "",
"%s;" % (user_code_section if user_code_section else ""),
"shutdown\""
]
)