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.
13 lines
318 B
13 lines
318 B
6 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
# exit on first failure
|
||
|
set -e
|
||
|
|
||
|
restore_configs
|
||
|
opt_set MOTHERBOARD BOARD_STM32F1R
|
||
|
opt_enable EEPROM_SETTINGS EEPROM_CHITCHAT REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT
|
||
|
exec_test $1 $2 "STM32F1R EEPROM_SETTINGS EEPROM_CHITCHAT REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT"
|
||
|
|
||
|
#cleanup
|
||
|
restore_configs
|