1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-24 04:29:34 +00:00
MarlinFirmware/buildroot/share/tests/esp32-tests

20 lines
370 B
Plaintext
Raw Normal View History

2019-03-13 05:48:08 +00:00
#!/usr/bin/env bash
#
# Build tests for esp32
#
# exit on first failure
set -e
restore_configs
opt_set MOTHERBOARD BOARD_ESP32
2019-07-30 07:30:00 +00:00
opt_enable WIFISUPPORT GCODE_MACROS BAUD_RATE_GCODE
2019-03-13 05:48:08 +00: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