hjd1964/OnStepX

Compile error on MacOSX

michael-ring opened this issue · 1 comments

There is a windows style path in Sense.cpp which causes build to fail on MacOSX.
This fixes the issue:

diff --git a/src/lib/sense/Sense.cpp b/src/lib/sense/Sense.cpp
index e1c617d..64ba4aa 100644
--- a/src/lib/sense/Sense.cpp
+++ b/src/lib/sense/Sense.cpp
@@ -4,7 +4,7 @@
 // digital mode reads have basic hf EMI/RFI noise filtering

 #include "Sense.h"
-#include "..\tasks\OnTask.h"
+#include "../tasks/OnTask.h"

 SenseInput::SenseInput(int pin, int initState, int32_t trigger) {
   this->pin = pin;

Thanks, that's taken care of now.