Skip to content

Commit 43c86cd

Browse files
author
Stefania
committed
fixed download tool
1 parent cefb586 commit 43c86cd

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/socket-daemon.js

+2-8
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ export default class SocketDaemon extends Daemon {
171171

172172
this.socket.on('connect', () => {
173173
// On connect download windows drivers which are indispensable for detection of boards
174-
this.socket.emit('command', 'downloadtool windows-drivers latest arduino keep');
175-
this.socket.emit('command', 'downloadtool bossac 1.7.0 arduino keep');
174+
this.downloadTool('windows-drivers', 'latest', 'arduino');
175+
this.downloadTool('bossac', '1.7.0', 'arduino');
176176

177177
this.initSocket();
178178
this.channelOpen.next(true);
@@ -339,9 +339,6 @@ export default class SocketDaemon extends Daemon {
339339
}
340340

341341
handleUploadMessage(message) {
342-
if (this.uploading.getValue().status !== this.UPLOAD_IN_PROGRESS) {
343-
return;
344-
}
345342
if (message.Flash === 'Ok' && message.ProgrammerStatus === 'Done') {
346343
// After the upload is completed the port goes down for a while, so we have to wait a few seconds
347344
return timer(UPLOAD_DONE_TIMER).subscribe(() => this.uploading.next({ status: this.UPLOAD_DONE, msg: message.Flash }));
@@ -369,9 +366,6 @@ export default class SocketDaemon extends Daemon {
369366
}
370367

371368
handleDownloadMessage(message) {
372-
if (this.downloading.getValue().status !== this.DOWNLOAD_IN_PROGRESS) {
373-
return;
374-
}
375369
switch (message.DownloadStatus) {
376370
case 'Pending':
377371
this.downloading.next({ status: this.DOWNLOAD_IN_PROGRESS, msg: message.Msg });

0 commit comments

Comments
 (0)