Marlin_Firmware/buildroot/share/tests/esp32-tests

23 lines
414 B
Plaintext
Raw Normal View History

2019-03-13 00:48:08 -05:00
#!/usr/bin/env bash
#
# Build tests for esp32
#
# exit on first failure
set -e
2019-08-18 23:29:59 -05:00
#
# Build with the default configurations
#
2019-03-13 00:48:08 -05:00
restore_configs
opt_set MOTHERBOARD BOARD_ESP32
2019-07-30 02:30:00 -05:00
opt_enable WIFISUPPORT GCODE_MACROS BAUD_RATE_GCODE
2019-03-13 00:48:08 -05:00
opt_set "WIFI_SSID \"ssid\""
opt_set "WIFI_PWD \"password\""
opt_set TX_BUFFER_SIZE 64
opt_add WEBSUPPORT
exec_test $1 $2 "ESP32 with WIFISUPPORT and WEBSUPPORT"
# cleanup
restore_configs