My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BIGTREE_GTR_V1_0_usb_flash_drive-tests 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #!/usr/bin/env bash
  2. #
  3. # Build tests for BigTreeTech GTR 1.0
  4. #
  5. # exit on first failure
  6. set -e
  7. restore_configs
  8. opt_set MOTHERBOARD BOARD_BTT_GTR_V1_0
  9. opt_set SERIAL_PORT 3
  10. opt_set EXTRUDERS 8
  11. opt_set TEMP_SENSOR_1 1
  12. opt_set TEMP_SENSOR_2 1
  13. opt_set TEMP_SENSOR_3 1
  14. opt_set TEMP_SENSOR_4 1
  15. opt_set TEMP_SENSOR_5 1
  16. opt_set TEMP_SENSOR_6 1
  17. opt_set TEMP_SENSOR_7 1
  18. opt_set SDSUPPORT
  19. opt_set USB_FLASH_DRIVE_SUPPORT
  20. opt_set USE_OTG_USB_HOST
  21. # Not necessary to enable auto-fan for all extruders to hit problematic code paths
  22. opt_set E0_AUTO_FAN_PIN PC10
  23. opt_set E1_AUTO_FAN_PIN PC11
  24. opt_set E2_AUTO_FAN_PIN PC12
  25. opt_set X_DRIVER_TYPE TMC2208
  26. opt_set Y_DRIVER_TYPE TMC2130
  27. opt_set NEOPIXEL_PIN PF13
  28. opt_enable REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER BLTOUCH NEOPIXEL_LED Z_SAFE_HOMING
  29. opt_enable FILAMENT_RUNOUT_SENSOR NOZZLE_PARK_FEATURE ADVANCED_PAUSE_FEATURE
  30. opt_set FIL_RUNOUT_PIN 3
  31. opt_set FIL_RUNOUT2_PIN 4
  32. opt_set FIL_RUNOUT3_PIN 5
  33. opt_set FIL_RUNOUT4_PIN 6
  34. opt_set FIL_RUNOUT5_PIN 7
  35. opt_set FIL_RUNOUT6_PIN 8
  36. opt_set FIL_RUNOUT7_PIN 9
  37. opt_set FIL_RUNOUT8_PIN 10
  38. opt_set FIL_RUNOUT4_STATE HIGH
  39. opt_enable FIL_RUNOUT4_PULLUP
  40. opt_set FIL_RUNOUT8_STATE HIGH
  41. opt_enable FIL_RUNOUT8_PULLUP
  42. exec_test $1 $2 "BigTreeTech GTR + OTG USB Flash Drive + Extruders with Auto-Fan, Mixed TMC Drivers, and Runout Sensors with distinct states" "$3"
  43. # clean up
  44. restore_configs