|
@@ -11,6 +11,11 @@
|
11
|
11
|
#define STRING_VERSION_CONFIG_H "2012-05-02" //Personal revision number for changes to THIS file.
|
12
|
12
|
#define STRING_CONFIG_H_AUTHOR "erik" //Who made the changes.
|
13
|
13
|
|
|
14
|
+// SERIAL_PORT selects which serial port should be used for communication with the host.
|
|
15
|
+// This allows the connection of wireless adapters (for instance) to non-default port pins.
|
|
16
|
+// Serial port 0 is still used by the Arduino bootloader regardless of this setting.
|
|
17
|
+#define SERIAL_PORT 0
|
|
18
|
+
|
14
|
19
|
// This determines the communication speed of the printer
|
15
|
20
|
#define BAUDRATE 250000
|
16
|
21
|
//#define BAUDRATE 115200
|
|
@@ -331,13 +336,6 @@ const bool Z_ENDSTOPS_INVERTING = true; // set to true to invert the logic of th
|
331
|
336
|
// SF send wrong arc g-codes when using Arc Point as fillet procedure
|
332
|
337
|
//#define SF_ARC_FIX
|
333
|
338
|
|
334
|
|
-
|
335
|
|
-// SERIAL_PORT selects which serial port should be used for communication with the host.
|
336
|
|
-// This allows the use of wireless adapters (for instance) which are connected to
|
337
|
|
-// non-default serial port pins.
|
338
|
|
-#define SERIAL_PORT 2
|
339
|
|
-
|
340
|
|
-
|
341
|
339
|
#include "Configuration_adv.h"
|
342
|
340
|
#include "thermistortables.h"
|
343
|
341
|
|