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