From a43acb8537bf20331029f6297dc9140373b0116b Mon Sep 17 00:00:00 2001 From: Daniel Sissom Date: Wed, 22 May 2024 16:55:58 -0500 Subject: [PATCH] Updated motor stop command string. --- dsmApp/src/MD90Driver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsmApp/src/MD90Driver.cpp b/dsmApp/src/MD90Driver.cpp index 54fcaf7..9a83b03 100644 --- a/dsmApp/src/MD90Driver.cpp +++ b/dsmApp/src/MD90Driver.cpp @@ -227,7 +227,7 @@ asynStatus MD90Axis::stop(double acceleration ) asynStatus status; //static const char *functionName = "MD90Axis::stop"; - sprintf(pC_->outString_, "#%02dQ", axisNo_); + sprintf(pC_->outString_, "STP"); status = pC_->writeReadController(); return status; }