We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 191d847 commit 15efcb8Copy full SHA for 15efcb8
src/boardConfiguration.js
@@ -33,7 +33,9 @@ export default class BoardConfiguration {
33
this.daemon = daemon;
34
this.serialMonitorContent = '';
35
this.configuring = new BehaviorSubject({ status: this.CONFIGURE_NOPE });
36
-
+ this.configureDone = this.configuring.pipe(filter(configure => configure.status === this.CONFIGURE_DONE));
37
+ this.configureInProgress = this.configuring.pipe(filter(configure => configure.status === this.CONFIGURE_IN_PROGRESS));
38
+ this.configureError = this.configuring.pipe(filter(configure => configure.status === this.CONFIGURE_ERROR));
39
this.daemon.serialMonitorMessages.subscribe(message => {
40
this.serialMonitorContent += message;
41
});
0 commit comments