Using TMC2208 in standalone mode, I've inverted the stepper direction to match Anycubics pin layout. M110 memory watcher was removed due to redundancy and - ironically - to save memory.
6 lines
136 B
Bash
6 lines
136 B
Bash
#!/usr/bin/env bash
|
|
|
|
SED=$(which gsed || which sed)
|
|
|
|
eval "${SED} -i 's/\(#define \b${2}\b\).*$/\1 ${3}/g' Marlin/src/pins/pins_${1}.h"
|