My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

megaatmega1280-tests 474B

123456789101112131415161718192021222324
  1. #!/usr/bin/env bash
  2. #
  3. # Build tests for AVR ATmega1280
  4. #
  5. # exit on first failure
  6. set -e
  7. #
  8. # Build with the default configurations
  9. #
  10. #restore_configs
  11. #exec_test $1 $2 "Default Configuration"
  12. #
  13. # Test MESH_BED_LEVELING feature, with LCD
  14. #
  15. restore_configs
  16. opt_enable SPINDLE_FEATURE MESH_BED_LEVELING G26_MESH_EDITING MESH_G28_REST_ORIGIN LCD_BED_LEVELING MESH_EDIT_MENU ULTIMAKERCONTROLLER
  17. exec_test $1 $2 "Spindle, MESH_BED_LEVELING, and LCD"
  18. # clean up
  19. restore_configs