My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

use_example_configs 490B

123456789101112131415
  1. #!/usr/bin/env bash
  2. restore_configs
  3. EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/master/config/examples"
  4. cd Marlin
  5. wget -q "$EXAMPLES/$@/Configuration.h" -O wgot && mv wgot Configuration.h
  6. wget -q "$EXAMPLES/$@/Configuration_adv.h" -O wgot && mv wgot Configuration_adv.h
  7. wget -q "$EXAMPLES/$@/_Bootscreen.h" -O wgot && mv wgot _Bootscreen.h
  8. wget -q "$EXAMPLES/$@/_Statusscreen.h" -O wgot && mv wgot _Statusscreen.h
  9. rm -f wgot
  10. cd - >/dev/null