From 66db8ce408e72178532581899777c0a44e436bbb Mon Sep 17 00:00:00 2001 From: smathis Date: Thu, 22 Jan 2026 09:54:58 +0100 Subject: [PATCH] Updated to sinqMotor 1.7.0 for disconnect handlingwq! --- src/turboPmacAxis.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/turboPmacAxis.cpp b/src/turboPmacAxis.cpp index d1348fa..a88e6db 100644 --- a/src/turboPmacAxis.cpp +++ b/src/turboPmacAxis.cpp @@ -197,20 +197,6 @@ asynStatus turboPmacAxis::init() { pC_->stringifyAsynStatus(status)); } pTurboPmacA_->needInit = true; - - status = callParamCallbacks(); - if (status != asynSuccess) { - // If we can't communicate with the parameter library, it - // doesn't make sense to try and upstream this to the user -> - // Just log the error - asynPrint(pC_->pasynUser(), ASYN_TRACE_ERROR, - "Controller \"%s\", axis %d => %s, line " - "%d\ncallParamCallbacks failed with %s.\n", - pC_->portName, axisNo_, __PRETTY_FUNCTION__, __LINE__, - pC_->stringifyAsynStatus(status)); - return status; - } - return status; }