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>2019-01-30 18:44:02 +0300
committerDavid Crocker <dcrocker@eschertech.com>2019-01-30 18:44:02 +0300
commit0178c853c378423d73e0c8e2f3039d2c5f1c331e (patch)
treeab1c897fc9a1ef54c845de24fb3cdfdae714beb9 /src/Pins.h
parent21d8edb2c31fafc2d53f1fb1e52d236bbd1917fe (diff)
Changed towards 2.03beta1
Bug fixes to CoreKinematics When using CoreKinematics, enable all relevant motors even for diagonal movements Support M575 L parameter FTP and Telnet support can now be excluded Added some of sdavis's changed for LPC processor based boards
Diffstat (limited to 'src/Pins.h')
-rw-r--r--src/Pins.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/Pins.h b/src/Pins.h
index 763023c1..62ca8e3e 100644
--- a/src/Pins.h
+++ b/src/Pins.h
@@ -111,7 +111,23 @@
# define HAS_LEGACY_NETWORKING 0
#endif
-#define HAS_NETWORKING (HAS_LWIP_NETWORKING || HAS_WIFI_NETWORKING || HAS_W5500_NETWORKING || HAS_LEGACY_NETWORKING)
+#ifndef HAS_RTOSPLUSTCP_NETWORKING
+# define HAS_RTOSPLUSTCP_NETWORKING 0
+#endif
+
+#ifndef HAS_ESP32_NETWORKING
+# define HAS_ESP32_NETWORKING 0
+#endif
+
+#define HAS_NETWORKING (HAS_LWIP_NETWORKING || HAS_WIFI_NETWORKING || HAS_W5500_NETWORKING || HAS_LEGACY_NETWORKING || HAS_RTOSPLUSTCP_NETWORKING || HAS_ESP32_NETWORKING)
+
+#ifndef SUPPORT_FTP
+# define SUPPORT_FTP HAS_NETWORKING
+#endif
+
+#ifndef SUPPORT_TELNET
+# define SUPPORT_TELNET HAS_NETWORKING
+#endif
#if SUPPORT_DHT_SENSOR && !defined(RTOS)
# error DHT sensor support requires RTOS