2016-03-22 14:13:38 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-01-15 05:56:54 +00:00
|
|
|
RESTORE="https://raw.githubusercontent.com/MarlinFirmware/Configurations/master/config/default"
|
2016-07-16 12:00:43 +00:00
|
|
|
|
2020-01-15 05:56:54 +00:00
|
|
|
cd Marlin
|
|
|
|
|
|
|
|
rm -f Conf*.h _*screen.h
|
|
|
|
|
|
|
|
PINS="src/pins"
|
2019-07-11 07:32:24 +00:00
|
|
|
RAMPS="$PINS/ramps/pins_RAMPS.h"
|
|
|
|
BKUP="$PINS/ramps/pins_RAMPS.backup.h"
|
|
|
|
[ -f $BKUP ] && { cp "$BKUP" "$RAMPS" ; rm -f $BKUP ; }
|
2018-07-14 04:42:15 +00:00
|
|
|
|
2020-01-15 05:56:54 +00:00
|
|
|
wget -q "$RESTORE/Configuration.h" -O Configuration.h
|
|
|
|
wget -q "$RESTORE/Configuration_adv.h" -O Configuration_adv.h
|
|
|
|
|
|
|
|
cd - >/dev/null
|