Removed unneccessary paramLib callback which caused flickering
Some checks failed
Test And Build / Lint (push) Failing after 3s
Test And Build / Build (push) Failing after 7s

This commit is contained in:
2026-01-23 13:21:43 +01:00
parent 4159ef50bc
commit e10aaf978e

View File

@@ -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;
}