My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
123456789101112131415161718 |
- #!/usr/bin/env bash
- #
- # Build tests for LERDGEK environment
- #
-
- # exit on first failure
- set -e
-
- #
- # Build with the typical configuration
- #
- restore_configs
- opt_set MOTHERBOARD BOARD_LERDGE_K SERIAL_PORT 1
- opt_enable TFT_GENERIC TFT_INTERFACE_FSMC TFT_COLOR_UI
- exec_test $1 $2 "LERDGE K with Generic FSMC TFT with ColorUI" "$3"
-
- # clean up
- restore_configs
|