My Marlin configs for Fabrikator Mini and CTC i3 Pro B
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

use_example_configs 496B

123456789101112131415
  1. #!/usr/bin/env bash
  2. restore_configs
  3. EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/bugfix-2.0.x/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