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.
12 lines
256 B
12 lines
256 B
6 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
# exit on first failure
|
||
|
set -e
|
||
|
|
||
|
restore_configs
|
||
|
opt_set MOTHERBOARD BOARD_RAMPS4DUE_EFB
|
||
|
opt_enable S_CURVE_ACCELERATION
|
||
|
opt_set E0_AUTO_FAN_PIN 8
|
||
|
opt_set EXTRUDER_AUTO_FAN_SPEED 100
|
||
|
exec_test $1 $2 "RAMPS4DUE_EFB S_CURVE_ACCELERATION"
|