aboutsummaryrefslogtreecommitdiff
path: root/buildroot/tests/esp32-tests
diff options
context:
space:
mode:
authorGeorgiy Bondarenko <69736697+nehilo@users.noreply.github.com>2021-03-04 20:54:23 +0300
committerGeorgiy Bondarenko <69736697+nehilo@users.noreply.github.com>2021-03-04 20:54:23 +0300
commite8701195e66f2d27ffe17fb514eae8173795aaf7 (patch)
tree9f519c4abf6556b9ae7190a6210d87ead1dfadde /buildroot/tests/esp32-tests
downloadkp3s-lgvl-e8701195e66f2d27ffe17fb514eae8173795aaf7.tar.xz
kp3s-lgvl-e8701195e66f2d27ffe17fb514eae8173795aaf7.zip
Initial commit
Diffstat (limited to 'buildroot/tests/esp32-tests')
-rw-r--r--buildroot/tests/esp32-tests41
1 files changed, 41 insertions, 0 deletions
diff --git a/buildroot/tests/esp32-tests b/buildroot/tests/esp32-tests
new file mode 100644
index 0000000..310eea2
--- /dev/null
+++ b/buildroot/tests/esp32-tests
@@ -0,0 +1,41 @@
+#!/usr/bin/env bash
+#
+# Build tests for ESP32
+#
+
+# exit on first failure
+set -e
+
+#
+# Build with the default configurations
+#
+restore_configs
+opt_set MOTHERBOARD BOARD_ESPRESSIF_ESP32
+opt_enable WIFISUPPORT WEBSUPPORT GCODE_MACROS BAUD_RATE_GCODE M115_GEOMETRY_REPORT REPETIER_GCODE_M360
+opt_add WIFI_SSID "\"ssid\""
+opt_add WIFI_PWD "\"password\""
+opt_set TX_BUFFER_SIZE 64
+exec_test $1 $2 "ESP32 with WIFISUPPORT and WEBSUPPORT" "$3"
+
+#
+# Build with TMC drivers using hardware serial
+#
+restore_configs
+opt_set MOTHERBOARD BOARD_ESPRESSIF_ESP32
+opt_set X_DRIVER_TYPE TMC2209
+opt_set Y_DRIVER_TYPE TMC2208
+opt_set Z_DRIVER_TYPE TMC2209
+opt_set E0_DRIVER_TYPE TMC2209
+opt_set X_HARDWARE_SERIAL Serial1
+opt_set Y_HARDWARE_SERIAL Serial1
+opt_set Z_HARDWARE_SERIAL Serial1
+opt_set E0_HARDWARE_SERIAL Serial1
+opt_set X_SLAVE_ADDRESS 0
+opt_set Y_SLAVE_ADDRESS 1
+opt_set Z_SLAVE_ADDRESS 2
+opt_set E0_SLAVE_ADDRESS 3
+opt_enable HOTEND_IDLE_TIMEOUT SOFTWARE_DRIVER_ENABLE
+exec_test $1 $2 "ESP32, TMC HW Serial, Hotend Idle" "$3"
+
+# cleanup
+restore_configs