Compare commits

...

2 Commits

Author SHA1 Message Date
e618b39687 Fixed function call arguments in template 2025-06-18 08:15:34 +02:00
41dfd1de5a Fixed docs 2025-06-17 13:13:43 +02:00

View File

@ -505,6 +505,8 @@ asynStatus setAxisParamImpl(A *axis, C *controller, const char *indexName,
* This function should not be used directly, but rather through its macro * This function should not be used directly, but rather through its macro
* variant `setAxisParamChecked`. * variant `setAxisParamChecked`.
* *
* @tparam A
* @tparam C
* @tparam T * @tparam T
* @param axis * @param axis
* @param controller * @param controller
@ -600,7 +602,7 @@ asynStatus getAxisParamImpl(A *axis, C *controller, const char *indexName,
size_t msgSize, TypeTag<bool>) { size_t msgSize, TypeTag<bool>) {
int readValueInt = 0; int readValueInt = 0;
asynStatus status = asynStatus status =
getAxisParamImpl(axis, indexName, func, &readValueInt, getAxisParamImpl(axis, controller, indexName, func, &readValueInt,
callerFunctionName, lineNumber, msgSize); callerFunctionName, lineNumber, msgSize);
*readValue = readValueInt != 0; *readValue = readValueInt != 0;
return status; return status;