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>2022-01-10 21:31:55 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-01-10 21:31:55 +0300
commite39e8495e049610f7f1b0f6b7b84a2c264c18b85 (patch)
tree910bdee07485d847df7e8ca3c1ec7659534e1644 /src/Platform/Platform.cpp
parentbb765cf76647399b61547d500f71be13ec8ab8a7 (diff)
Simplified build configuration files and added Duet3_MB6XD
Diffstat (limited to 'src/Platform/Platform.cpp')
-rw-r--r--src/Platform/Platform.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Platform/Platform.cpp b/src/Platform/Platform.cpp
index 8451560a..702e11ca 100644
--- a/src/Platform/Platform.cpp
+++ b/src/Platform/Platform.cpp
@@ -4405,7 +4405,7 @@ GCodeResult Platform::ConfigurePort(GCodeBuffer& gb, const StringRef& reply) THR
// Exactly one of FHJPSR is allowed
unsigned int charsPresent = 0;
for (char c :
-#ifdef DUET3_V06
+#ifdef DUET3_MB6HC
(const char[]){'D', 'R', 'J', 'F', 'H', 'P', 'S'}
#else
(const char[]){'R', 'J', 'F', 'H', 'P', 'S'}
@@ -4450,7 +4450,7 @@ GCodeResult Platform::ConfigurePort(GCodeBuffer& gb, const StringRef& reply) THR
return spindles[slot].Configure(gb, reply);
}
-#ifdef DUET3_V06
+#ifdef DUET3_MB6HC
case 64: // D
# if HAS_SBC_INTERFACE
if (!reprap.UsingSbcInterface())