Commit 9b79c3cf authored by Sebastian Verling's avatar Sebastian Verling

fixed uploading of bin files

parent f14af89f
...@@ -51,9 +51,8 @@ bool FirmwareImage::load(const QString& imageFilename, uint32_t boardId) ...@@ -51,9 +51,8 @@ bool FirmwareImage::load(const QString& imageFilename, uint32_t boardId)
_boardId = boardId; _boardId = boardId;
if (imageFilename.endsWith(".bin")) { if (imageFilename.endsWith(".bin")) {
return _binLoad(imageFilename);
_binFormat = true; _binFormat = true;
return true; return _binLoad(imageFilename);
} else if (imageFilename.endsWith(".px4")) { } else if (imageFilename.endsWith(".px4")) {
_binFormat = true; _binFormat = true;
return _px4Load(imageFilename); return _px4Load(imageFilename);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment