My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

STM32F103RE_creality 1.1KB

123456789101112131415161718192021222324252627282930313233
  1. #!/usr/bin/env bash
  2. #
  3. # Build tests for STM32F103RE_creality
  4. #
  5. # exit on first failure
  6. set -e
  7. #
  8. # Build with configs included in the PR
  9. #
  10. use_example_configs "Creality/Ender-3 V2/CrealityV422/CrealityUI"
  11. opt_enable MARLIN_DEV_MODE BUFFER_MONITORING BLTOUCH AUTO_BED_LEVELING_BILINEAR Z_SAFE_HOMING
  12. exec_test $1 $2 "Ender 3 v2 with CrealityUI" "$3"
  13. use_example_configs "Creality/Ender-3 V2/CrealityV422/CrealityUI"
  14. opt_disable DWIN_CREALITY_LCD
  15. opt_enable DWIN_CREALITY_LCD_JYERSUI AUTO_BED_LEVELING_BILINEAR PROBE_MANUALLY
  16. exec_test $1 $2 "Ender 3 v2 with JyersUI" "$3"
  17. use_example_configs "Creality/Ender-3 V2/CrealityV422/MarlinUI"
  18. opt_add SDCARD_EEPROM_EMULATION AUTO_BED_LEVELING_BILINEAR Z_SAFE_HOMING
  19. exec_test $1 $2 "Ender 3 v2 with MarlinUI" "$3"
  20. restore_configs
  21. opt_set MOTHERBOARD BOARD_CREALITY_V452 SERIAL_PORT 1
  22. opt_disable NOZZLE_TO_PROBE_OFFSET
  23. opt_enable NOZZLE_AS_PROBE Z_SAFE_HOMING Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN FAN_SOFT_PWM \
  24. PROBE_ACTIVATION_SWITCH PROBE_TARE PROBE_TARE_ONLY_WHILE_INACTIVE
  25. exec_test $1 $2 "Creality V4.5.2 PROBE_ACTIVATION_SWITCH, Probe Tare" "$3"
  26. # clean up
  27. restore_configs