2022-08-22 17:31:02 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2022-09-02 04:47:37 +02:00
|
|
|
# Build tests for MKS Robin nano v1.3 with native USB modification
|
2022-08-22 17:31:02 +02:00
|
|
|
# (STM32F4 genericSTM32F407VE)
|
|
|
|
#
|
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
|
|
|
#
|
2022-09-02 04:47:37 +02:00
|
|
|
# MKS/ZNP Robin nano v1.3 with Emulated DOGM FSMC and native USB mod
|
2022-08-22 17:31:02 +02:00
|
|
|
#
|
|
|
|
use_example_configs Mks/Robin
|
|
|
|
opt_add USB_MOD
|
|
|
|
opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO_V1_3_F4 SERIAL_PORT -1
|
2022-09-02 04:47:37 +02:00
|
|
|
exec_test $1 $2 "MKS/ZNP Robin nano v1.3 with Emulated DOGM FSMC (native USB mod)" "$3"
|
2022-08-22 17:31:02 +02:00
|
|
|
|
|
|
|
# cleanup
|
|
|
|
restore_configs
|