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 75cce81 commit 0df7d76Copy full SHA for 0df7d76
src/boardConfiguration.js
@@ -42,7 +42,9 @@ export default class BoardConfiguration {
42
this.daemon = daemon;
43
this.serialMonitorContent = '';
44
this.configuring = new BehaviorSubject({ status: this.CONFIGURE_NOPE });
45
-
+ this.configureDone = this.configuring.pipe(filter(configure => configure.status === this.CONFIGURE_DONE));
46
+ this.configureInProgress = this.configuring.pipe(filter(configure => configure.status === this.CONFIGURE_IN_PROGRESS));
47
+ this.configureError = this.configuring.pipe(filter(configure => configure.status === this.CONFIGURE_ERROR));
48
this.daemon.serialMonitorMessages.subscribe(message => {
49
this.serialMonitorContent += message;
50
});
0 commit comments