mirror of
https://github.com/valentineus/kp3s-lgvl.git
synced 2025-07-04 10:10:26 +03:00
Initial commit
This commit is contained in:
59
buildroot/tests/mega1280-tests
Normal file
59
buildroot/tests/mega1280-tests
Normal file
@ -0,0 +1,59 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# Build tests for AVR ATmega1280
|
||||
#
|
||||
|
||||
# exit on first failure
|
||||
set -e
|
||||
|
||||
#
|
||||
# Build with the default configurations
|
||||
#
|
||||
#restore_configs
|
||||
#exec_test $1 $2 "Default Configuration" "$3"
|
||||
|
||||
#
|
||||
# Test MESH_BED_LEVELING feature, with LCD
|
||||
#
|
||||
restore_configs
|
||||
opt_set LCD_LANGUAGE an
|
||||
opt_enable SPINDLE_FEATURE ULTIMAKERCONTROLLER LCD_BED_LEVELING \
|
||||
EEPROM_SETTINGS EEPROM_BOOT_SILENT EEPROM_AUTO_INIT \
|
||||
SENSORLESS_BACKOFF_MM HOMING_BACKOFF_POST_MM HOME_Y_BEFORE_X CODEPENDENT_XY_HOMING \
|
||||
MESH_BED_LEVELING ENABLE_LEVELING_FADE_HEIGHT MESH_G28_REST_ORIGIN \
|
||||
G26_MESH_VALIDATION MESH_EDIT_MENU GCODE_QUOTED_STRINGS \
|
||||
EXTERNAL_CLOSED_LOOP_CONTROLLER POWER_MONITOR_CURRENT POWER_MONITOR_VOLTAGE
|
||||
opt_set POWER_MONITOR_CURRENT_PIN 14
|
||||
opt_set POWER_MONITOR_VOLTAGE_PIN 15
|
||||
opt_set CLOSED_LOOP_ENABLE_PIN 44
|
||||
opt_set CLOSED_LOOP_MOVE_COMPLETE_PIN 45
|
||||
exec_test $1 $2 "Spindle, MESH_BED_LEVELING, closed loop, Power Monitor, and LCD" "$3"
|
||||
|
||||
#
|
||||
# Test DUAL_X_CARRIAGE
|
||||
#
|
||||
restore_configs
|
||||
opt_set MOTHERBOARD BOARD_TT_OSCAR
|
||||
opt_set LCD_LANGUAGE pt
|
||||
opt_set EXTRUDERS 2
|
||||
opt_set TEMP_SENSOR_1 1
|
||||
opt_enable USE_XMAX_PLUG DUAL_X_CARRIAGE REPRAPWORLD_KEYPAD
|
||||
opt_set REPRAPWORLD_KEYPAD_MOVE_STEP 10.0
|
||||
exec_test $1 $2 "TT Oscar | DUAL_X_CARRIAGE" "$3"
|
||||
|
||||
#
|
||||
# Delta Config (generic) + Probeless
|
||||
#
|
||||
use_example_configs delta/generic
|
||||
opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER DELTA_AUTO_CALIBRATION DELTA_CALIBRATION_MENU
|
||||
exec_test $1 $2 "RAMPS | DELTA | RRD LCD | DELTA_AUTO_CALIBRATION | DELTA_CALIBRATION_MENU" "$3"
|
||||
|
||||
#
|
||||
# Delta Config (generic) + ABL bilinear + BLTOUCH
|
||||
use_example_configs delta/generic
|
||||
opt_set LCD_LANGUAGE cz
|
||||
opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER DELTA_CALIBRATION_MENU AUTO_BED_LEVELING_BILINEAR BLTOUCH
|
||||
exec_test $1 $2 "DELTA | RRD LCD | ABL Bilinear | BLTOUCH" "$3"
|
||||
|
||||
# clean up
|
||||
restore_configs
|
Reference in New Issue
Block a user