My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

esp32-tests 341B

12345678910111213141516171819
  1. #!/usr/bin/env bash
  2. #
  3. # Build tests for esp32
  4. #
  5. # exit on first failure
  6. set -e
  7. restore_configs
  8. opt_set MOTHERBOARD BOARD_ESP32
  9. opt_enable WIFISUPPORT
  10. opt_set "WIFI_SSID \"ssid\""
  11. opt_set "WIFI_PWD \"password\""
  12. opt_set TX_BUFFER_SIZE 64
  13. opt_add WEBSUPPORT
  14. exec_test $1 $2 "ESP32 with WIFISUPPORT and WEBSUPPORT"
  15. # cleanup
  16. restore_configs