`workflow_active` was never defined or used

`supervisor_workflow_active` needs to be stubbed for when there's no USB
This commit is contained in:
Artyom Skrobov 2021-05-01 13:25:35 -04:00
parent ebedeeb51d
commit 9a5fb44c76
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);