2016-03-22 10:13:38 -04:00
|
|
|
#!/usr/bin/env bash
|
2018-09-01 03:50:47 -04:00
|
|
|
#
|
|
|
|
# restore_configs
|
|
|
|
#
|
|
|
|
# Restore default configs, delete pins backup and dogm bitmaps
|
|
|
|
#
|
2016-03-22 10:13:38 -04:00
|
|
|
|
2018-09-01 03:50:47 -04:00
|
|
|
# Restore the (possibly modified) Configurations
|
|
|
|
[ -d ".test" -a -f ".test/Configuration.h" ] && cp .test/Configuration*.h Marlin/
|
2016-07-16 08:00:43 -04:00
|
|
|
|
2018-09-01 03:50:47 -04:00
|
|
|
# Restore the original unmodified pins
|
|
|
|
[ -d ".test/pins" ] && cp -r .test/pins Marlin/src/pins/
|
2018-07-14 00:42:15 -04:00
|
|
|
|
2018-09-01 03:50:47 -04:00
|
|
|
# Delete DOGM bitmaps
|
|
|
|
rm -f Marlin/_*screen.h
|