I must be doing something wrong, I'm new to this. I edited the configuration_io.h file to this
// Define your endstops inputs
// IO_INPUT_INVERTED(IOEndstopXMax, ORIG_X_MAX_PIN)
// IO_INPUT_INVERTED(IOEndstopYMax, ORIG_Y_MAX_PIN)
// IO_INPUT_INVERTED(IOEndstopZMax, ORIG_Z_MAX_PIN)
IO_INPUT_INVERTED_PULLUP(IOEndstopXMin, ORIG_X_MIN_PIN)
IO_INPUT_INVERTED_PULLUP(IOEndstopYMin, ORIG_Y_MIN_PIN)
IO_INPUT_PULLUP(IOEndstopZProbe, ORIG_Z_MIN_PIN)
ENDSTOP_SWITCH_HW(endstopZProbe, IOEndstopZProbe, ZPROBE_AXIS, false)
// Define our endstops solutions
// You need to define all min and max endstops for all
// axes except E even if you have none!
ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
ENDSTOP_SWITCH_HW(endstopZMin, IOEndstopZMin, Z_AXIS, false)
// ENDSTOP_NONE(endstopXMin)
// ENDSTOP_NONE(endstopYMin)
// ENDSTOP_NONE(endstopZMin)
ENDSTOP_NONE(endstopZMax)
ENDSTOP_NONE(endstopXMax)
ENDSTOP_NONE(endstopYMax)
// ENDSTOP_MERGE3(endstopZMax, endstopMotorXMax, endstopMotorYMax, endstopMotorZMax, Z_AXIS, true)
// ENDSTOP_SWITCH_HW(endstopZProbe, IOEndstopZProbe, ZPROBE_AXIS, false)
and the compile failed:
<div>
<div>src/Configuration_io.h:96:61: error: stray '\302' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:96:62: error: stray '\240' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:97:61: error: stray '\302' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:97:62: error: stray '\240' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:98:61: error: stray '\302' in program
98 | ENDSTOP_SWITCH_HW(endstopZMin, IOEndstopZMin, Z_AXIS, false)
| ^
compilation terminated due to -fmax-errors=5.
In file included from src/io/redefine.h:69,
from src/Configuration.h:189,
from src/Repetier.h:208,
from src/PrinterTypes/PrinterTypeCartesian.cpp:19:
src/Configuration_io.h:96:61: error: stray '\302' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:96:62: error: stray '\240' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:97:61: error: stray '\302' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:97:62: error: stray '\240' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:98:61: error: stray '\302' in program
98 | ENDSTOP_SWITCH_HW(endstopZMin, IOEndstopZMin, Z_AXIS, false)
| ^
compilation terminated due to -fmax-errors=5.
In file included from src/io/redefine.h:69,
from src/Configuration.h:189,
from src/Repetier.h:208,
from src/PrinterTypes/Printer.cpp:19:
src/Configuration_io.h:96:61: error: stray '\302' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:96:62: error: stray '\240' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:97:61: error: stray '\302' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:97:62: error: stray '\240' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:98:61: error: stray '\302' in program
98 | ENDSTOP_SWITCH_HW(endstopZMin, IOEndstopZMin, Z_AXIS, false)
| ^
compilation terminated due to -fmax-errors=5.
*** [.pio/build/RUMBA32/src/PrinterTypes/PrinterTypeDelta.cpp.o] Error 1
*** [.pio/build/RUMBA32/src/PrinterTypes/Printer.cpp.o] Error 1
In file included from src/io/redefine.h:69,
from src/Configuration.h:189,
from src/Repetier.h:208,
from src/PrinterTypes/PrinterTypeCoreXYZ.cpp:19:
src/Configuration_io.h:96:61: error: stray '\302' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:96:62: error: stray '\240' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:97:61: error: stray '\302' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:97:62: error: stray '\240' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:98:61: error: stray '\302' in program
98 | ENDSTOP_SWITCH_HW(endstopZMin, IOEndstopZMin, Z_AXIS, false)
| ^
compilation terminated due to -fmax-errors=5.
*** [.pio/build/RUMBA32/src/PrinterTypes/PrinterTypeCoreXYZ.cpp.o] Error 1
*** [.pio/build/RUMBA32/src/PrinterTypes/PrinterTypeCartesian.cpp.o] Error 1
In file included from src/io/redefine.h:69,
from src/Configuration.h:189,
from src/Repetier.h:208,
from src/Configuration.cpp:29:
src/Configuration_io.h:96:61: error: stray '\302' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:96:62: error: stray '\240' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:97:61: error: stray '\302' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:97:62: error: stray '\240' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:98:61: error: stray '\302' in program
98 | ENDSTOP_SWITCH_HW(endstopZMin, IOEndstopZMin, Z_AXIS, false)
| ^
compilation terminated due to -fmax-errors=5.
*** [.pio/build/RUMBA32/src/Configuration.cpp.o] Error 1
In file included from src/io/redefine.h:69,
from src/Configuration.h:189,
from src/Repetier.h:208,
from src/SdFat/FatLib/FatFile.cpp:25:
src/Configuration_io.h:96:61: error: stray '\302' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:96:62: error: stray '\240' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:97:61: error: stray '\302' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:97:62: error: stray '\240' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
In file included from src/io/redefine.h:69,
from src/Configuration.h:189,
from src/Repetier.h:208,
from src/PrinterTypes/PrinterTypeDualXAxis.cpp:36:
src/Configuration_io.h:96:61: error: stray '\302' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:96:62: error: stray '\240' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:98:61: error: stray '\302' in program
98 | ENDSTOP_SWITCH_HW(endstopZMin, IOEndstopZMin, Z_AXIS, false)
| ^
compilation terminated due to -fmax-errors=5.
src/Configuration_io.h:97:61: error: stray '\302' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:97:62: error: stray '\240' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:98:61: error: stray '\302' in program
98 | ENDSTOP_SWITCH_HW(endstopZMin, IOEndstopZMin, Z_AXIS, false)
| ^
compilation terminated due to -fmax-errors=5.
*** [.pio/build/RUMBA32/src/PrinterTypes/PrinterTypeDualXAxis.cpp.o] Error 1
*** [.pio/build/RUMBA32/src/SdFat/FatLib/FatFile.cpp.o] Error 1
In file included from src/io/redefine.h:69,
from src/Configuration.h:189,
from src/Repetier.h:208,
from src/SdFat/FatLib/FatFileLFN.cpp:25:
src/Configuration_io.h:96:61: error: stray '\302' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:96:62: error: stray '\240' in program
96 | ENDSTOP_SWITCH_HW(endstopXMin, IOEndstopXMin, X_AXIS, false)
| ^
src/Configuration_io.h:97:61: error: stray '\302' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:97:62: error: stray '\240' in program
97 | ENDSTOP_SWITCH_HW(endstopYMin, IOEndstopYMin, Y_AXIS, false)
| ^
src/Configuration_io.h:98:61: error: stray '\302' in program
98 | ENDSTOP_SWITCH_HW(endstopZMin, IOEndstopZMin, Z_AXIS, false)
| ^
compilation terminated due to -fmax-errors=5.
*** [.pio/build/RUMBA32/src/SdFat/FatLib/FatFileLFN.cpp.o] Error 1
</span></div></div>