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>2021-12-06 23:41:05 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-12-06 23:41:05 +0300
commitf3aa415bc180d72488a8790e4728d915450f4b6f (patch)
tree9d806b62eca66aab6b8d117b18297d6a1889c998
parent459f188ea6dd37e6c3a974f70e5abf6e285e970f (diff)
Changed Duet 2 SBC build electronics name for ATE
-rw-r--r--src/Platform/Platform.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Platform/Platform.cpp b/src/Platform/Platform.cpp
index 36b88370..77b8abf3 100644
--- a/src/Platform/Platform.cpp
+++ b/src/Platform/Platform.cpp
@@ -3866,12 +3866,13 @@ const char *_ecv_array Platform::GetElectronicsString() const noexcept
#elif defined(SAME70XPLD)
case BoardType::SAME70XPLD_0: return "SAME70-XPLD";
#elif defined(DUET_NG)
+ // This is the string that the Duet 2 ATE uses to identify the board. The version number must be at the end.
case BoardType::DuetWiFi_10: return "Duet WiFi 1.0 or 1.01";
case BoardType::DuetWiFi_102: return "Duet WiFi 1.02 or later";
case BoardType::DuetEthernet_10: return "Duet Ethernet 1.0 or 1.01";
case BoardType::DuetEthernet_102: return "Duet Ethernet 1.02 or later";
- case BoardType::Duet2SBC_10: return "Duet 2 1.0 or 1.01 + SBC";
- case BoardType::Duet2SBC_102: return "Duet 2 1.02 or later + SBC";
+ case BoardType::Duet2SBC_10: return "Duet 2 + SBC 1.0 or 1.01";
+ case BoardType::Duet2SBC_102: return "Duet 2 + SBC 1.02 or later";
#elif defined(DUET_M)
case BoardType::DuetM_10: return "Duet Maestro 1.0";
#elif defined(DUET_06_085)