Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2018-01-22 23:10:54 +0300
committerDavid Crocker <dcrocker@eschertech.com>2018-01-22 23:11:11 +0300
commit9184a403b4645f17fbc732b33715891f4a7653b5 (patch)
tree0d4f7679ca0732590f9964ea2e3eec0ef44d6df9 /src/Pins.h
parentcc8de620887759dbb6ade8b5b0bffc6e9194222e (diff)
Towards version 1.21RC1
Added multi-tap probing Added M260/M281 I2C send and receive Added absolute babystepping mode Fix for pressure advance with non-uniform extrusoin rate Disabled cache oin SAM4E Fixed FTP "listen failed" bug Fixed crash when trying to confoigure a filament monitor on a DueX endstop input Change endstops 5-9 pin allocation when no DueX board present Show board revision as 1.02 if VSSA sense present Ported DHCP fixes form lwip 2 to Duet 06/085 build M304 bug fix Bug fix to recent PrintMonitor change when getting "Generated by" string
Diffstat (limited to 'src/Pins.h')
-rw-r--r--src/Pins.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/Pins.h b/src/Pins.h
index f940d06a..4550832e 100644
--- a/src/Pins.h
+++ b/src/Pins.h
@@ -38,8 +38,16 @@
# define HAS_MULTIPLE_NETWORK_INTERFACES 0
#endif
-#ifndef NONLINEAR_EXTRUSION
-#define NONLINEAR_EXTRUSION 1 // for now this is always enabled
+#ifndef SUPPORT_NONLINEAR_EXTRUSION
+# define SUPPORT_NONLINEAR_EXTRUSION 1 // for now this is always enabled
+#endif
+
+#ifndef SUPPORT_WORKPLACE_COORDINATES
+# define SUPPORT_WORKPLACE_COORDINATES 0
+#endif
+
+#ifndef SUPPORT_12864_LCD
+# define SUPPORT_12864_LCD 0
#endif
#endif // PINS_H__