Compare commits
2 Commits
AxisParamC
...
1.2.1
Author | SHA1 | Date | |
---|---|---|---|
e618b39687 | |||
41dfd1de5a |
@ -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;
|
||||||
|
Reference in New Issue
Block a user