From 13f51fcd3b22ef9dc4798607d8b27f185d7358b5 Mon Sep 17 00:00:00 2001 From: David Crocker Date: Tue, 21 Dec 2021 11:15:35 +0000 Subject: Recognise DueX v0.11 boards and adjust default thermistor series R --- src/Hardware/SAM4E/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Hardware/SAM4E') diff --git a/src/Hardware/SAM4E/Main.cpp b/src/Hardware/SAM4E/Main.cpp index 355443b4..ef1f0a18 100644 --- a/src/Hardware/SAM4E/Main.cpp +++ b/src/Hardware/SAM4E/Main.cpp @@ -15,10 +15,10 @@ void AppInit() noexcept // When the reset button is pressed on pre-production Duet WiFi boards, if the TMC2660 drivers were previously enabled then we get // uncommanded motor movements if the STEP lines pick up any noise. Try to reduce that by initialising the pins that control the drivers early here. // On the production boards the ENN line is pulled high by an external pullup resistor and that prevents motor movements. + // We no longer do the direction pins because we use some of those as board version indicators. for (size_t drive = 0; drive < MaxSmartDrivers; ++drive) { pinMode(STEP_PINS[drive], OUTPUT_LOW); - pinMode(DIRECTION_PINS[drive], OUTPUT_LOW); pinMode(ENABLE_PINS[drive], OUTPUT_HIGH); } } -- cgit v1.2.3