@@ -171,8 +171,8 @@ export default class SocketDaemon extends Daemon {
171
171
172
172
this . socket . on ( 'connect' , ( ) => {
173
173
// 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') ;
176
176
177
177
this . initSocket ( ) ;
178
178
this . channelOpen . next ( true ) ;
@@ -339,9 +339,6 @@ export default class SocketDaemon extends Daemon {
339
339
}
340
340
341
341
handleUploadMessage ( message ) {
342
- if ( this . uploading . getValue ( ) . status !== this . UPLOAD_IN_PROGRESS ) {
343
- return ;
344
- }
345
342
if ( message . Flash === 'Ok' && message . ProgrammerStatus === 'Done' ) {
346
343
// After the upload is completed the port goes down for a while, so we have to wait a few seconds
347
344
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 {
369
366
}
370
367
371
368
handleDownloadMessage ( message ) {
372
- if ( this . downloading . getValue ( ) . status !== this . DOWNLOAD_IN_PROGRESS ) {
373
- return ;
374
- }
375
369
switch ( message . DownloadStatus ) {
376
370
case 'Pending' :
377
371
this . downloading . next ( { status : this . DOWNLOAD_IN_PROGRESS , msg : message . Msg } ) ;
0 commit comments