Compare commits

...

7 Commits
1.2.1 ... main

Author SHA1 Message Date
b0ab627f90 Merge from Raphi 2025-07-02 09:38:35 +02:00
9568821756 Deleted test.txt 2025-07-02 09:28:50 +02:00
3ec9384250 Some great changes 2025-07-02 09:12:52 +02:00
195c3b8cce Added some great for Trump 2025-07-02 09:12:17 +02:00
45f52d893d Modified for learning 2025-06-26 12:07:07 +02:00
d82d829712 Update README.md 2025-06-26 11:37:16 +02:00
55a9fe6f3e Fixed another calling signature bug 2025-06-18 08:25:39 +02:00
5 changed files with 6 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
GNU GENERAL PUBLIC LICENSE
hallo GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>

View File

@@ -1,5 +1,7 @@
# sinqmotor
THIS IS A CLONE OF THE "REAL" SINQMOTOR REPOSITORY AND CAN BE MODIFIED FREELY FOR TEACHING PURPOSES.
## Overview
This library offers base classes for EPICS motor drivers (`sinqAxis` and `sinqController`) of PSI SINQ. These classes are extensions of the classes `asynMotorAxis` and `asynMotorController` from the `asynMotor` framework (https://github.com/epics-modules/motor/tree/master/motorApp/MotorSrc) and bundle some common functionality.

View File

@@ -601,9 +601,9 @@ asynStatus getAxisParamImpl(A *axis, C *controller, const char *indexName,
const char *callerFunctionName, int lineNumber,
size_t msgSize, TypeTag<bool>) {
int readValueInt = 0;
asynStatus status =
getAxisParamImpl(axis, controller, indexName, func, &readValueInt,
callerFunctionName, lineNumber, msgSize);
asynStatus status = getAxisParamImpl(axis, controller, indexName, func,
&readValueInt, callerFunctionName,
lineNumber, msgSize, TypeTag<int>{});
*readValue = readValueInt != 0;
return status;
}

0
test.docx Normal file
View File

0
test_Raphi.docx Normal file
View File