mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-12-03 09:17:58 +00:00
b4a3e29fb6
* 🧑💻 Ignore Aider additions * 🔨 Pins Debugging fix and cleanup * 🔧 Auto-assign UART Rx based on Tx
16 lines
329 B
Bash
Executable File
16 lines
329 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Build tests for HC32F460C_aquila_101
|
|
#
|
|
|
|
# exit on first failure
|
|
set -e
|
|
|
|
restore_configs
|
|
opt_set MOTHERBOARD BOARD_AQUILA_V101 SERIAL_PORT 1
|
|
opt_enable EEPROM_SETTINGS SDSUPPORT EMERGENCY_PARSER PINS_DEBUGGING
|
|
exec_test $1 $2 "Default Configuration with Fallback SD EEPROM" "$3"
|
|
|
|
# cleanup
|
|
restore_configs
|