Skip to content

Commit ddfc1c7

Browse files
authored
Fix check for SMT32 bin file flashing (#258)
***NO_CI***
1 parent 94d47f6 commit ddfc1c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nanoFirmwareFlasher.Library/StmDeviceBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ public ExitCodes ExecuteFlashBinFiles(
392392

393393
var cliOutput = RunSTM32ProgrammerCLI($"-c {connectDetails} mode=UR -w \"{binFilePath}\" {addresses.ElementAt(index++)}");
394394

395-
if (!cliOutput.Contains("Programming Complete."))
395+
if (!cliOutput.Contains("File download complete"))
396396
{
397397
ShowCLIOutput(cliOutput);
398398

0 commit comments

Comments
 (0)