Merge pull request #4698 from tyomitch/microbit

`workflow_active` was never defined or used
This commit is contained in:
Dan Halbert 2021-05-01 15:26:57 -04:00 committed by GitHub
commit e6dc3e4686
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -27,4 +27,3 @@
#pragma once
extern bool supervisor_workflow_connecting(void);
extern bool supervisor_workflow_active(void);

View File

@ -53,3 +53,7 @@ void serial_write(const char *text) {
void supervisor_workflow_reset(void) {
}
bool supervisor_workflow_active(void) {
return false;
}

View File

@ -29,4 +29,4 @@
void supervisor_workflow_reset(void);
// True when the user could be actively iterating on their code.
bool workflow_active(void);
bool supervisor_workflow_active(void);