1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-09-09 05:40:46 +02:00

corrected typo

This commit is contained in:
Claudio Prezzi
2019-09-26 20:28:36 +02:00
committed by GitHub
parent 14714dc4fc
commit 2bb2186c42

View File

@@ -429,7 +429,7 @@ uint8_t system_check_travel_limits(float *target)
if (target[idx] < 0 || target[idx] > -settings.max_travel[idx]) { return(true); }
#else
if (target[idx] > 0 || target[idx] < settings.max_travel[idx]) { return(true); }
ndif
#endif
#endif
}
return(false);