Add Marlin firmware. Has initial configuration for CoreXY and 1 servo.
Update CAD file with improved clearances for Pilot G2 cartridge clearances after first print.
This commit is contained in:
30
Marlin Firmware/buildroot/tests/STM32F103RET6_creality
Normal file
30
Marlin Firmware/buildroot/tests/STM32F103RET6_creality
Normal file
@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# Build tests for STM32F103RET6_creality
|
||||
#
|
||||
|
||||
# exit on first failure
|
||||
set -e
|
||||
|
||||
#
|
||||
# Build with configs included in the PR
|
||||
#
|
||||
use_example_configs "Creality/Ender-3 V2"
|
||||
opt_enable MARLIN_DEV_MODE
|
||||
exec_test $1 $2 "Ender 3 v2" "$3"
|
||||
|
||||
use_example_configs "Creality/Ender-3 V2"
|
||||
opt_disable CLASSIC_JERK
|
||||
opt_add SDCARD_EEPROM_EMULATION
|
||||
opt_set TEMP_SENSOR_BED 0
|
||||
exec_test $1 $2 "Ender 3 v2, SD EEPROM, no CLASSIC_JERK, no Bed" "$3"
|
||||
|
||||
restore_configs
|
||||
opt_set MOTHERBOARD BOARD_CREALITY_V452 SERIAL_PORT 1
|
||||
opt_disable NOZZLE_TO_PROBE_OFFSET
|
||||
opt_enable NOZZLE_AS_PROBE Z_SAFE_HOMING Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN \
|
||||
PROBE_ACTIVATION_SWITCH PROBE_TARE PROBE_TARE_ONLY_WHILE_INACTIVE
|
||||
exec_test $1 $2 "Creality V4.5.2 PROBE_ACTIVATION_SWITCH, Probe Tare" "$3"
|
||||
|
||||
# clean up
|
||||
restore_configs
|
Reference in New Issue
Block a user