Browse Source

Merge pull request #1705 from AnHardt/ddt

Avoid warnings in SanitiCheck.h
Scott Lahteine 9 years ago
parent
commit
d2e73545ba
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      Marlin/SanityCheck.h

+ 4
- 4
Marlin/SanityCheck.h View File

104
 
104
 
105
       // Make sure probing points are reachable
105
       // Make sure probing points are reachable
106
       #if LEFT_PROBE_BED_POSITION < MIN_PROBE_X
106
       #if LEFT_PROBE_BED_POSITION < MIN_PROBE_X
107
-        #error The given LEFT_PROBE_BED_POSITION can't be reached by the probe.
107
+        #error The given LEFT_PROBE_BED_POSITION can not be reached by the probe.
108
       #elif RIGHT_PROBE_BED_POSITION > MAX_PROBE_X
108
       #elif RIGHT_PROBE_BED_POSITION > MAX_PROBE_X
109
-        #error The given RIGHT_PROBE_BED_POSITION can't be reached by the probe.
109
+        #error The given RIGHT_PROBE_BED_POSITION can not be reached by the probe.
110
       #elif FRONT_PROBE_BED_POSITION < MIN_PROBE_Y
110
       #elif FRONT_PROBE_BED_POSITION < MIN_PROBE_Y
111
-        #error The given FRONT_PROBE_BED_POSITION can't be reached by the probe.
111
+        #error The given FRONT_PROBE_BED_POSITION can not be reached by the probe.
112
       #elif BACK_PROBE_BED_POSITION > MAX_PROBE_Y
112
       #elif BACK_PROBE_BED_POSITION > MAX_PROBE_Y
113
-        #error The given BACK_PROBE_BED_POSITION can't be reached by the probe.
113
+        #error The given BACK_PROBE_BED_POSITION can not be reached by the probe.
114
       #endif
114
       #endif
115
 
115
 
116
       #define PROBE_SIZE_X (X_PROBE_OFFSET_FROM_EXTRUDER * (AUTO_BED_LEVELING_GRID_POINTS-1))
116
       #define PROBE_SIZE_X (X_PROBE_OFFSET_FROM_EXTRUDER * (AUTO_BED_LEVELING_GRID_POINTS-1))

Loading…
Cancel
Save