Regressiontests: add a test for ACCELERATION_REPRAP.
This commit is contained in:
parent
58553a5033
commit
76efe06284
|
|
@ -144,6 +144,10 @@ regressiontests:
|
||||||
# Test for parallel 4-bit bus and HD44780 display using an old Gen7.
|
# Test for parallel 4-bit bus and HD44780 display using an old Gen7.
|
||||||
$(MAKE) -f Makefile-AVR USER_CONFIG=testcases/config.regtest-display.h \
|
$(MAKE) -f Makefile-AVR USER_CONFIG=testcases/config.regtest-display.h \
|
||||||
EXTRA_CFLAGS=-Werror all
|
EXTRA_CFLAGS=-Werror all
|
||||||
|
# Test for ACCELERATION_REPRAP.
|
||||||
|
$(MAKE) -f Makefile-AVR \
|
||||||
|
USER_CONFIG=testcases/config.regtest-acceleration-reprap.h \
|
||||||
|
MCU=atmega2560 F_CPU=16000000UL EXTRA_CFLAGS=-Werror all
|
||||||
# Continue with ARM based boards, a Gen7-ARM.
|
# Continue with ARM based boards, a Gen7-ARM.
|
||||||
$(MAKE) -f Makefile-ARM USER_CONFIG=testcases/config.regtest-gen7-arm.h \
|
$(MAKE) -f Makefile-ARM USER_CONFIG=testcases/config.regtest-gen7-arm.h \
|
||||||
EXTRA_CFLAGS=-Werror all
|
EXTRA_CFLAGS=-Werror all
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
|
||||||
|
// Configuration for controller board.
|
||||||
|
#include "../config/board.ramps-v1.3.h"
|
||||||
|
|
||||||
|
// Configuration for printer board.
|
||||||
|
#include "../config/printer.mendel.h"
|
||||||
|
|
||||||
|
#undef ACCELERATION_RAMPING
|
||||||
|
#undef ACCELERATION_TEMPORAL
|
||||||
|
#define ACCELERATION_REPRAP
|
||||||
Loading…
Reference in New Issue