Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2019-09-21 16:17:13 +0300
committerDavid Crocker <dcrocker@eschertech.com>2019-09-21 16:17:13 +0300
commit05fa94b6bbcf3f4dcc099978f9eb3b78e96ec908 (patch)
tree0472e9c53f69f8bf94fe47f1963d0357c18a3f56 /src/Endstops/Endstop.h
parent47855aa4e583b30fb2d9e2416b230b111568e905 (diff)
More support for remote endstops
Diffstat (limited to 'src/Endstops/Endstop.h')
-rw-r--r--src/Endstops/Endstop.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Endstops/Endstop.h b/src/Endstops/Endstop.h
index 94a3f359..085fe2ba 100644
--- a/src/Endstops/Endstop.h
+++ b/src/Endstops/Endstop.h
@@ -61,8 +61,8 @@ public:
virtual void AppendDetails(const StringRef& str) = 0;
#if SUPPORT_CAN_EXPANSION
- // Process a remote endstop input change that relates to this endstop. Return true if the buffer has been freed.
- virtual bool HandleRemoteInputChange(CanAddress src, uint8_t handleMinor, bool state, CanMessageBuffer *buf) { return false; }
+ // Process a remote endstop input change that relates to this endstop
+ virtual void HandleRemoteInputChange(CanAddress src, uint8_t handleMinor, bool state) { }
#endif
unsigned int GetAxis() const { return axis; }