Fri, 17 Nov 2017 10:13:31 +0100
proper configuration, homing and planner optimization
0 | 1 | |
2 | #include "Marlin.h" | |
3 | ||
4 | #ifdef REPRAPPRO_MULTIMATERIALS | |
5 | ||
6 | float txyz[EXTRUDERS]; | |
7 | char slaveBuffer[64]; | |
8 | long timeout; | |
9 | ||
10 | void setup_slave() | |
11 | { | |
12 | MYSERIAL1.begin(250000); | |
13 | SET_OUTPUT(SLAVE_CLOCK); | |
14 | digitalWrite(SLAVE_CLOCK, 1); | |
15 | } | |
16 | ||
17 | #endif |