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>2017-11-01 01:32:49 +0300
committerDavid Crocker <dcrocker@eschertech.com>2017-11-01 01:32:49 +0300
commit8127d85ade4cc0f924c901407c5388f85c4e2835 (patch)
treede3990006af586eb04312d8a14cda01049e7718e /src/Platform.cpp
parent2423233e4b5d16694c84f3a9c00c5e62d910a737 (diff)
Interim commit 1.20b4+2
Use PDC to send SPI data to TMC2660 drivers, in preparation for continuous polling using interrupts Tidied up new MAX31865 support Increased number of allowed HTTP headers to 30 FTP server now allowes arguments in LIST command FTP server now allows TYPE command when passive port is open
Diffstat (limited to 'src/Platform.cpp')
-rw-r--r--src/Platform.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Platform.cpp b/src/Platform.cpp
index cdd92697..09c38bed 100644
--- a/src/Platform.cpp
+++ b/src/Platform.cpp
@@ -1363,6 +1363,7 @@ void Platform::Spin()
// Poll one TMC2660 for temperature warning or temperature shutdown
if (enableValues[nextDriveToPoll] >= 0) // don't poll driver if it is flagged "no poll"
{
+ SmartDrivers::Poll(nextDriveToPoll);
const uint32_t stat = SmartDrivers::GetStatus(nextDriveToPoll);
const DriversBitmap mask = MakeBitmap<DriversBitmap>(nextDriveToPoll);
if (stat & TMC_RR_OT)