🧑‍💻 Drop hostui.flag

This commit is contained in:
Scott Lahteine
2022-02-08 18:02:28 -06:00
parent 7763f9385d
commit 2d04e5733a
3 changed files with 0 additions and 24 deletions

View File

@@ -24,11 +24,6 @@
#include "../inc/MarlinConfigPre.h"
#include "../HAL/shared/Marduino.h"
typedef union {
uint8_t bits;
struct { bool info:1, errors:1, debug:1; };
} flag_t;
#if ENABLED(HOST_PROMPT_SUPPORT)
enum PromptReason : uint8_t {
@@ -45,9 +40,6 @@ typedef union {
class HostUI {
public:
static flag_t flag;
HostUI() { flag.bits = 0xFF; }
static void action(FSTR_P const fstr, const bool eol=true);
#ifdef ACTION_ON_KILL