mks_tinybee 845 B

12345678910111213141516171819202122232425262728293031
  1. #!/usr/bin/env bash
  2. #
  3. # Build tests for MKS TinyBee
  4. #
  5. # exit on first failure
  6. set -e
  7. #
  8. # Build with ESP3D WiFi, OTA and custom WIFI commands support
  9. #
  10. restore_configs
  11. opt_set MOTHERBOARD BOARD_MKS_TINYBEE TX_BUFFER_SIZE 64 SERIAL_PORT_2 -1 BAUDRATE_2 250000
  12. opt_enable ESP3D_WIFISUPPORT
  13. exec_test $1 $2 "MKS TinyBee with ESP3D_WIFISUPPORT" "$3"
  14. #
  15. # Build with LCD, SD support and Speaker support
  16. #
  17. restore_configs
  18. opt_set MOTHERBOARD BOARD_MKS_TINYBEE \
  19. LCD_LANGUAGE en \
  20. LCD_INFO_SCREEN_STYLE 0 \
  21. DISPLAY_CHARSET_HD44780 WESTERN \
  22. NEOPIXEL_TYPE NEO_RGB
  23. opt_enable FYSETC_MINI_12864_2_1 SDSUPPORT ONE_CLICK_PRINT NO_SD_AUTOSTART \
  24. NEOPIXEL_LED LED_CONTROL_MENU LED_USER_PRESET_STARTUP LED_COLOR_PRESETS
  25. exec_test $1 $2 "MKS TinyBee with NeoPixel LCD, SD and Speaker" "$3"
  26. # cleanup
  27. restore_configs