Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bdring committed Sep 10, 2023
1 parent 84ab119 commit db3b2ed
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions FluidNC/src/Status_outputs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,9 @@
This can be used for Tower lights,etc.
*/
#include "Status_outputs.h"

#include "Machine/MachineConfig.h"

void Status_Outputs::init() {
if (_error) {
return;
}

if (_Idle_pin.defined()) {
_Idle_pin.setAttr(Pin::Attr::Output);
}
Expand Down
5 changes: 0 additions & 5 deletions FluidNC/src/Status_outputs.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
#pragma once

#include "Config.h"

#include "Configuration/Configurable.h"

#include "Channel.h"

typedef const uint8_t* font_t;
Expand All @@ -22,8 +20,6 @@ class Status_Outputs : public Channel, public Configuration::Configurable {
void parse_report();
void parse_status_report();

bool _error = false;

public:
Status_Outputs() : Channel("status_outputs") {}

Expand All @@ -46,7 +42,6 @@ class Status_Outputs : public Channel, public Configuration::Configurable {

// Configuration handlers:
void validate() override {}

void afterParse() override {};

void group(Configuration::HandlerBase& handler) override {
Expand Down

0 comments on commit db3b2ed

Please sign in to comment.