My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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