mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 22:08:02 +00:00
parent
88b34d2bb6
commit
47f6fc1e07
@ -28,6 +28,7 @@
|
|||||||
#define ENDSTOPS_H
|
#define ENDSTOPS_H
|
||||||
|
|
||||||
#include "enum.h"
|
#include "enum.h"
|
||||||
|
#include "MarlinConfig.h"
|
||||||
|
|
||||||
class Endstops {
|
class Endstops {
|
||||||
|
|
||||||
@ -43,7 +44,15 @@ class Endstops {
|
|||||||
#endif
|
#endif
|
||||||
current_endstop_bits, old_endstop_bits;
|
current_endstop_bits, old_endstop_bits;
|
||||||
|
|
||||||
Endstops() {};
|
Endstops() {
|
||||||
|
enable_globally(
|
||||||
|
#if ENABLED(ENDSTOPS_ALWAYS_ON_DEFAULT)
|
||||||
|
true
|
||||||
|
#else
|
||||||
|
false
|
||||||
|
#endif
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize the endstop pins
|
* Initialize the endstop pins
|
||||||
|
Loading…
Reference in New Issue
Block a user