Skip to content

workflow_active was never defined or used #4698

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion supervisor/shared/workflow.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@
#pragma once

extern bool supervisor_workflow_connecting(void);
extern bool supervisor_workflow_active(void);
4 changes: 4 additions & 0 deletions supervisor/stub/serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,7 @@ void serial_write(const char *text) {

void supervisor_workflow_reset(void) {
}

bool supervisor_workflow_active(void) {
return false;
}
2 changes: 1 addition & 1 deletion supervisor/workflow.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);