slave_comms.cpp

changeset 0
2c8ba1964db7
equal deleted inserted replaced
-1:000000000000 0:2c8ba1964db7
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

mercurial