Skip to content

Commit

Permalink
Merge pull request #559 from WildernessLabs/bug/firmware-writer-format
Browse files Browse the repository at this point in the history
default to logging full DFU messages
  • Loading branch information
adrianstevens authored May 1, 2024
2 parents 94e4132 + 5aa4e99 commit c74b69f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/v2/Meadow.Firmware/FirmwareWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ public Task WriteOsWithDfu(string osFile, ILogger? logger = null, bool useLegacy
Debug.WriteLine($"DFU Writing file {osFile}");

return DfuUtils.FlashFile(
osFile,
serialNumber,
logger: logger,
format: DfuUtils.DfuFlashFormat.ConsoleOut);
osFile,
serialNumber,
logger: logger,
format: DfuUtils.DfuFlashFormat.Full);
}

public Task WriteRuntimeWithHcom(IMeadowConnection connection, string firmwareFile, ILogger? logger = null)
Expand Down

0 comments on commit c74b69f

Please sign in to comment.