803 StaticInstanceMediator* _mediator;
814 static inline constexpr uint32_t NetworkStartTimeoutMillisecondsDefault = 30000;
817 static inline constexpr uint32_t AxisCountMaximum = 64;
820 static inline constexpr uint32_t MotionCountMaximum = 64;
823 static inline constexpr uint32_t NetworkNodeCountMaximum = 64;
826 static inline constexpr uint32_t RecorderCountMaximum = 64;
829 static inline constexpr uint32_t CompensatorCountMaximum = 64;
832 static inline constexpr uint32_t MathBlockCountMaximum = 64;
835 static inline constexpr uint32_t UserBufferDataCountMaximum = 1024;
838 static inline constexpr double SampleRateDefault = 1000.0;
849 static inline constexpr int32_t AxisFrameBufferSizeDefault = 1024;
871 static inline constexpr int32_t ControllerIndexDefault = 0;
877 static inline constexpr uint32_t PathLengthMaximum = 256;
884 static inline constexpr int32_t CpuAffinityDefault = -1;
890 static inline constexpr int32_t RmpThreadPriorityMaximumDefault = 45;
896 static inline constexpr int32_t RmpThreadPriorityRange = 8;
902 static inline constexpr int32_t RmpThreadPriorityMinimum = RmpThreadPriorityRange + 1;
908 static inline constexpr int32_t RmpThreadPriorityMaximum = 99;
914 static inline constexpr int32_t RmpThreadPriorityNoRealTime = 0;
929 ControllerIndex = ControllerIndexDefault;
930 std::memset(RmpPath,
'\0', PathLengthMaximum);
931 std::memset(NicPrimary,
'\0', PathLengthMaximum);
932 std::memset(NicSecondary,
'\0', PathLengthMaximum);
934 std::memset(NodeName,
'\0', PathLengthMaximum);
935#elif defined(__linux__)
936 CpuAffinity = CpuAffinityDefault;
937 RmpThreadPriorityMax = RmpThreadPriorityMaximumDefault;
957 char RmpPath[PathLengthMaximum];
963 char NicPrimary[PathLengthMaximum];
969 char NicSecondary[PathLengthMaximum];
973#if defined(_WIN32) && defined(__linux__)
974 static_assert(
false,
"_WIN32 and __linux__ defined. Double check preprocessor definitions");
975#elif !defined(_WIN32) && !defined(__linux__) && !defined(DOXYGEN)
976 static_assert(
false,
"Neither _WIN32 nor __linux__ are defined AND this is not a documentation build. Double check preprocessor definitions");
978#if defined(_WIN32) || defined(DOXYGEN)
989 char NodeName[PathLengthMaximum];
993#if defined(__linux__) || defined(DOXYGEN)
1218 virtual IO*
IOGet(int32_t nodeNumber) PURE_VIRTUAL;
1265 virtual
void Refresh() PURE_VIRTUAL;
1274 virtual
void Shutdown() PURE_VIRTUAL;
1284 virtual
void MemoryToFile(const
char* const fileName) PURE_VIRTUAL;
1314 virtual int32_t SampleCounterGet() PURE_VIRTUAL;
1330 virtual
double ProcessorUsageGet() PURE_VIRTUAL;
1342 virtual
void ProcessorUsageClear() PURE_VIRTUAL;
1347 virtual uint32_t FirmwareTimingDeltaGet() PURE_VIRTUAL;
1381 virtual uint32_t SerialNumberGet(
void) PURE_VIRTUAL;
1401 virtual
void SampleWait(uint32_t samples) PURE_VIRTUAL;
1408 virtual const
char* const ServerNameGet() PURE_VIRTUAL;
1411 virtual int32_t ServerPortGet() PURE_VIRTUAL;
1443 virtual
void SampleRateSet(
double sampleRate) PURE_VIRTUAL;
1447 virtual
double SampleRateGet() PURE_VIRTUAL;
1466 virtual int32_t AxisCountGet() PURE_VIRTUAL;
1486 virtual
void AxisCountSet(int32_t axisCount) PURE_VIRTUAL;
1490 virtual
void AxisCountSet(int32_t axisCount,
bool setMotorFilterSupervisor) PURE_VIRTUAL;
1494 virtual
bool IsLicensed() PURE_VIRTUAL;
1497 virtual int32_t PackageVariantGet() PURE_VIRTUAL;
1500 virtual int32_t AxisLicenseCountGet() PURE_VIRTUAL;
1503 virtual
bool MechaWareLicenseGet() PURE_VIRTUAL;
1506 virtual int32_t UnsupportedOptionSet(int32_t option) PURE_VIRTUAL;
1532 virtual int32_t MotionCountGet() PURE_VIRTUAL;
1550 virtual
void MotionCountSet(int32_t motionCount) PURE_VIRTUAL;
1577 virtual int32_t UserVersionGet() PURE_VIRTUAL;
1602 virtual
void UserVersionSet(int32_t version) PURE_VIRTUAL;
1606 virtual int32_t ExternalMemorySizeGet() PURE_VIRTUAL;
1624 virtual
void AxisFrameBufferSizeSet(int32_t axisNumber, int32_t frameBufferSize) PURE_VIRTUAL;
1640 virtual int32_t AxisFrameBufferSizeGet(int32_t axisNumber) PURE_VIRTUAL;
1665 virtual const
char* const FirmwareVersionGet() PURE_VIRTUAL;
1684 virtual int32_t FirmwareOptionGet() PURE_VIRTUAL;
1687 virtual
bool HasMechaWare() PURE_VIRTUAL;
1712 virtual int32_t MemoryGet(uint64_t address) PURE_VIRTUAL;
1732 virtual
double MemoryDoubleGet(uint64_t address) PURE_VIRTUAL;
1759 virtual
void MemoryBlockGet(uint64_t address,
void* dataStart, int32_t size) PURE_VIRTUAL;
1775 virtual
void MemorySet(uint64_t address, int32_t data) PURE_VIRTUAL;
1795 virtual
void MemoryDoubleSet(uint64_t address,
double dataDouble) PURE_VIRTUAL;
1822 virtual
void MemoryBlockSet(uint64_t address, const
void* const dataStart, int32_t size) PURE_VIRTUAL;
1842 virtual uint32_t FirmwareAddressGet(uint64_t hostAddress) PURE_VIRTUAL;
1869 virtual uint64_t HostAddressGet(uint32_t firmwareAddress) PURE_VIRTUAL;
1895 virtual int32_t BackgroundCycleCounterGet() PURE_VIRTUAL;
1908 virtual uint64_t AddressFromStringGet(const
char* const addressName) PURE_VIRTUAL;
1920 virtual const
char* const StringFromAddressGet(uint64_t hostAddress) PURE_VIRTUAL;
1991 virtual
bool MotionHoldGateGet(int32_t gateNumber) PURE_VIRTUAL;
2010 virtual
void MotionHoldGateSet(int32_t gateNumber,
bool hold) PURE_VIRTUAL;
2026 virtual int32_t NetworkNodeCountGet() PURE_VIRTUAL;
2095 virtual const
char* const NetworkEniGenerateOutputGet() PURE_VIRTUAL;
2098 virtual
void NetworkStart() PURE_VIRTUAL;
2122 virtual
void NetworkShutdown() PURE_VIRTUAL;
2129 virtual int32_t NetworkCounterGet() PURE_VIRTUAL;
2132 virtual int32_t NetworkInputCountGet() PURE_VIRTUAL;
2135 virtual int32_t NetworkInputBitSizeGet(int32_t index) PURE_VIRTUAL;
2140 virtual const
char* const NetworkInputDataTypeNameGet(int32_t index) PURE_VIRTUAL;
2144 virtual int32_t NetworkInputBitOffsetGet(int32_t index) PURE_VIRTUAL;
2148 virtual const
char* const NetworkInputNameGet(int32_t index) PURE_VIRTUAL;
2153 virtual uint64_t NetworkInputValueGet(int32_t index) PURE_VIRTUAL;
2160 virtual uint64_t NetworkInputAddressGet(int32_t index) PURE_VIRTUAL;
2165 virtual int32_t NetworkOutputCountGet() PURE_VIRTUAL;
2169 virtual int32_t NetworkOutputBitSizeGet(int32_t index) PURE_VIRTUAL;
2175 virtual const
char* const NetworkOutputDataTypeNameGet(int32_t index) PURE_VIRTUAL;
2178 virtual int32_t NetworkOutputBitOffsetGet(int32_t index) PURE_VIRTUAL;
2181 virtual const
char* const NetworkOutputNameGet(int32_t index) PURE_VIRTUAL;
2198 virtual uint64_t NetworkOutputValueGet(int32_t index) PURE_VIRTUAL;
2216 virtual
void NetworkOutputValueSet(int32_t index, uint64_t outputValue) PURE_VIRTUAL;
2236 virtual uint64_t NetworkOutputAddressGet(int32_t index) PURE_VIRTUAL;
2254 virtual uint64_t NetworkOutputIntendedValueGet(int32_t index) PURE_VIRTUAL;
2267 virtual
void NetworkOutputOverrideSet(int32_t index,
bool outputOverride) PURE_VIRTUAL;
2279 virtual
bool NetworkOutputOverrideGet(int32_t index) PURE_VIRTUAL;
2300 virtual
void NetworkOutputOverrideValueSet(int32_t index, uint64_t outputValue) PURE_VIRTUAL;
2314 virtual uint64_t NetworkOutputOverrideValueGet(int32_t index) PURE_VIRTUAL;
2330 virtual uint64_t NetworkOutputSentValueGet(int32_t index) PURE_VIRTUAL;
2335 virtual int32_t NetworkLogMessageCountGet() PURE_VIRTUAL;
2344 virtual const
char* const NetworkLogMessageGet(int32_t messageIndex) PURE_VIRTUAL;
2347 virtual
void NetworkTimingEnableSet(
bool enable) PURE_VIRTUAL;
2350 virtual
void NetworkTimingClear() PURE_VIRTUAL;
2353 virtual uint32_t NetworkTimingDeltaGet() PURE_VIRTUAL;
2356 virtual uint32_t NetworkTimingMinGet() PURE_VIRTUAL;
2359 virtual uint32_t NetworkTimingMaxGet() PURE_VIRTUAL;
2362 virtual
void NetworkTimingThresholdLowSet(uint32_t microseconds) PURE_VIRTUAL;
2365 virtual
void NetworkTimingThresholdHighSet(uint32_t microseconds) PURE_VIRTUAL;
2368 virtual uint32_t NetworkTimingThresholdLowCountGet() PURE_VIRTUAL;
2371 virtual uint32_t NetworkTimingThresholdHighCountGet() PURE_VIRTUAL;
2374 virtual
bool NetworkSynchronizedGet() PURE_VIRTUAL;
2398 virtual
void InterruptEnableSet(
bool enable) PURE_VIRTUAL;
2418 virtual
void InterruptWake() PURE_VIRTUAL;
2447 virtual
void SyncInterruptEnableSet(
bool enable) PURE_VIRTUAL;
2474 virtual
void SyncInterruptPeriodSet(uint32_t samples) PURE_VIRTUAL;
2495 virtual int32_t SyncInterruptWait() PURE_VIRTUAL;
2498 virtual
bool ServiceThreadStateGet() PURE_VIRTUAL;
2510 virtual int32_t SyncInterruptHostProcessTimeGet() PURE_VIRTUAL;
2513 virtual int32_t SyncInterruptHostProcessFlagGet() PURE_VIRTUAL;
2527 virtual
void SyncInterruptHostProcessFlagSet(
bool hostProcessFlag) PURE_VIRTUAL;
2539 virtual
bool SyncInterruptHostProcessStatusBitGet() PURE_VIRTUAL;
2550 virtual
void SyncInterruptHostProcessStatusClear() PURE_VIRTUAL;
2578 virtual
void ServiceThreadEnableSet(
bool enable) PURE_VIRTUAL;
2606 virtual int32_t RecorderCountGet() PURE_VIRTUAL;
2625 virtual
void RecorderCountSet(int32_t recorderCount) PURE_VIRTUAL;
2643 virtual
void RecorderPeriodSet(uint32_t samples) PURE_VIRTUAL;
2646 virtual
void RecorderPeriodSet(int32_t recorderNumber, uint32_t samples) PURE_VIRTUAL;
2664 virtual
void RecorderCircularBufferSet(
bool enable) PURE_VIRTUAL;
2667 virtual
void RecorderCircularBufferSet(int32_t recorderNumber,
bool enable) PURE_VIRTUAL;
2684 virtual
void RecorderDataCountSet(int32_t count) PURE_VIRTUAL;
2687 virtual
void RecorderDataCountSet(int32_t recorderNumber,int32_t count) PURE_VIRTUAL;
2705 virtual
void RecorderDataAddressSet(int32_t index, uint64_t address) PURE_VIRTUAL;
2708 virtual
void RecorderDataAddressSet(int32_t recorderNumber,int32_t index, uint64_t address) PURE_VIRTUAL;
2716 virtual
void RecorderDataAddressesSet(int32_t recorderNumber, const uint64_t* const addresses, int32_t addressCount) PURE_VIRTUAL;
2737 virtual
void RecorderConfigureToTriggerOnMotion(
Axis *axis,
bool triggerOnMotion) PURE_VIRTUAL;
2745 virtual
void RecorderConfigureToTriggerOnMotion(int32_t recorderNumber,
Axis *axis,
bool triggerOnMotion) PURE_VIRTUAL;
2752 virtual
void RecorderConfigureToTriggerOnMotion(
MultiAxis *multiAxis,
bool triggerOnMotion) PURE_VIRTUAL;
2760 virtual
void RecorderConfigureToTriggerOnMotion(int32_t recorderNumber,
MultiAxis *multiAxis,
bool triggerOnMotion) PURE_VIRTUAL;
2768 virtual
void RecorderConfigureToTriggerOnMotion(int32_t recorderNumber, int32_t motionNumber,
bool triggerOnMotion) PURE_VIRTUAL;
2778 virtual
bool RecorderTriggerOnMotionGet(int32_t recorderNumber) PURE_VIRTUAL;
2795 virtual
bool RecorderEnabledGet() PURE_VIRTUAL;
2798 virtual
bool RecorderEnabledGet(int32_t recorderNumber ) PURE_VIRTUAL;
2816 virtual int32_t RecorderRecordCountGet() PURE_VIRTUAL;
2819 virtual int32_t RecorderRecordCountGet(int32_t recorderNumber ) PURE_VIRTUAL;
2834 virtual int32_t RecorderRecordMaxCountGet() PURE_VIRTUAL;
2837 virtual int32_t RecorderRecordMaxCountGet(int32_t recorderNumber) PURE_VIRTUAL;
2853 virtual
void RecorderStart() PURE_VIRTUAL;
2856 virtual
void RecorderStart(int32_t recorderNumber) PURE_VIRTUAL;
2874 virtual
void RecorderStop() PURE_VIRTUAL;
2877 virtual
void RecorderStop(int32_t recorderNumber) PURE_VIRTUAL;
2896 virtual const int32_t* const RecorderRecordDataGet() PURE_VIRTUAL;
2899 virtual const int32_t* const RecorderRecordDataGet(int32_t recorderNumber) PURE_VIRTUAL;
2915 virtual
void RecorderRecordDataRetrieve() PURE_VIRTUAL;
2936 virtual int32_t RecorderRecordDataRetrieveBulk(int32_t recorderNumber, int32_t recordCount) PURE_VIRTUAL;
2939 virtual
void RecorderRecordDataRetrieve(int32_t recorderNumber) PURE_VIRTUAL;
2957 virtual int32_t RecorderRecordDataValueGet(int32_t index) PURE_VIRTUAL;
2960 virtual int32_t RecorderRecordDataValueGet(int32_t recorderNumber, int32_t index) PURE_VIRTUAL;
2980 virtual int32_t RecorderRecordDataValueGet(int32_t recorderNumber, int32_t recordIndex, int32_t dataIndex) PURE_VIRTUAL;
2983 virtual
double RecorderRecordDataDoubleGet(int32_t index) PURE_VIRTUAL;
2986 virtual
double RecorderRecordDataDoubleGet(int32_t recorderNumber, int32_t index) PURE_VIRTUAL;
3006 virtual
double RecorderRecordDataDoubleGet(int32_t recorderNumber, int32_t recordIndex, int32_t dataIndex) PURE_VIRTUAL;
3025 virtual
void RecorderBufferHighCountSet(int32_t bufferHighCount) PURE_VIRTUAL;
3028 virtual
void RecorderBufferHighCountSet(int32_t recorderNumber, int32_t bufferHighCount) PURE_VIRTUAL;
3044 virtual
void RecorderReset() PURE_VIRTUAL;
3047 virtual
void RecorderReset(int32_t recorderNumber) PURE_VIRTUAL;
3060 virtual int32_t RecorderBufferSizeGet(int32_t recorderNumber) PURE_VIRTUAL;
3078 virtual
void RecorderBufferSizeSet(int32_t recorderNumber, int32_t bufferSize) PURE_VIRTUAL;
3113 virtual int32_t CompensatorCountGet() PURE_VIRTUAL;
3134 virtual
void CompensatorCountSet(int32_t compensatorCount) PURE_VIRTUAL;
3146 virtual int32_t CompensatorPointCountGet(int32_t compensatorNumber) PURE_VIRTUAL;
3167 virtual
void CompensatorPointCountSet(int32_t compensatorNumber, int32_t pointCount) PURE_VIRTUAL;
3182 virtual int32_t CompensatorDimensionGet(int32_t compensatorNumber) PURE_VIRTUAL;
3209 virtual
void CompensatorConfigSet(int32_t compensatorNumber, int32_t firstInputAxisNumber,
RSIAxisMasterType firstInputAxisType,
double firstInputAxisMinimum,
double firstInputAxisMaximum,
double firstInputAxisDelta, int32_t secondInputAxisNumber,
RSIAxisMasterType secondInputAxisType,
double secondInputAxisMinimum,
double secondInputAxisMaximum,
double secondInputAxisDelta, int32_t outputAxisNumber,
RSICompensatorOutputType outputType, const
double* const table) PURE_VIRTUAL;
3240 virtual
void CompensatorConfigSet(int32_t compensatorNumber,
Axis* firstInputAxis,
RSIAxisMasterType firstInputAxisType,
double firstInputAxisMinimum,
double firstInputAxisMaximum,
double firstInputAxisDelta,
Axis* secondInputAxis,
RSIAxisMasterType secondInputAxisType,
double secondInputAxisMinimum,
double secondInputAxisMaximum,
double secondInputAxisDelta,
Axis* outputAxis,
RSICompensatorOutputType outputType, const
double* const table) PURE_VIRTUAL;
3262 virtual
void CompensatorConfigSet(int32_t compensatorNumber, int32_t inputAxisNumber,
RSIAxisMasterType inputAxisType,
double inputAxisMinimum,
double inputAxisMaximum,
double inputAxisDelta, int32_t outputAxisNumber,
RSICompensatorOutputType outputType, const
double* const table) PURE_VIRTUAL;
3284 virtual
void CompensatorConfigSet(int32_t compensatorNumber,
Axis* inputAxis,
RSIAxisMasterType inputAxisType,
double inputAxisMinimum,
double inputAxisMaximum,
double inputAxisDelta,
Axis* outputAxis,
RSICompensatorOutputType outputType, const
double* const table) PURE_VIRTUAL;
3297 virtual
void CompensatorTableSet(int32_t compensatorNumber, const
double* const table) PURE_VIRTUAL;
3310 virtual
void CompensatorTableGet(int32_t compensatorNumber,
double* table) PURE_VIRTUAL;
3331 virtual
double CompensatorPositionGet(int32_t compensatorNumber) PURE_VIRTUAL;
3350 virtual
void CompensatorTableClear(int32_t compensatorNumber) PURE_VIRTUAL;
3360 virtual
void CompensatorDisable(int32_t compensatorNumber) PURE_VIRTUAL;
3366 virtual
void CompensatorDisable(int32_t compensatorNumber,
bool force) PURE_VIRTUAL;
3374 virtual
void CompensatorEnable(int32_t compensatorNumber) PURE_VIRTUAL;
3402 virtual int32_t UserLimitCountGet() PURE_VIRTUAL;
3423 virtual
void UserLimitCountSet(int32_t userLimitCount) PURE_VIRTUAL;
3454 virtual
RSIAction UserLimitActionGet(int32_t number) PURE_VIRTUAL;
3457 virtual int32_t UserLimitAxisNumberGet(int32_t number) PURE_VIRTUAL;
3460 virtual
double UserLimitDurationGet(int32_t number) PURE_VIRTUAL;
3463 virtual
bool UserLimitSingleShotGet(int32_t number) PURE_VIRTUAL;
3489 virtual
void UserLimitConditionSet(int32_t number, int32_t conditionNumber,
RSIUserLimitLogic logic, uint64_t addressOfUInt32, uint32_t userLimitMask, uint32_t limitValueUInt32) PURE_VIRTUAL;
3512 virtual
void UserLimitConditionSet(int32_t number, int32_t conditionNumber,
RSIUserLimitLogic logic, uint64_t addressOfDouble,
double limitValueDouble) PURE_VIRTUAL;
3515 virtual
RSIDataType UserLimitConditionDataTypeGet(int32_t number, int32_t conditionNumber) PURE_VIRTUAL;
3518 virtual
RSIUserLimitLogic UserLimitConditionLogicGet(int32_t number, int32_t conditionNumber) PURE_VIRTUAL;
3521 virtual uint64_t UserLimitConditionAddressGet(int32_t number, int32_t conditionNumber) PURE_VIRTUAL;
3524 virtual uint32_t UserLimitConditionMaskGet(int32_t number, int32_t conditionNumber) PURE_VIRTUAL;
3527 virtual int32_t UserLimitConditionLimitValueGet(int32_t number, int32_t conditionNumber) PURE_VIRTUAL;
3530 virtual
double UserLimitConditionLimitValueDoubleGet(int32_t number, int32_t conditionNumber) PURE_VIRTUAL;
3558 virtual
void UserLimitOutputSet(int32_t number, uint32_t andMask, uint32_t orMask, uint64_t outputPtr,
bool enabled) PURE_VIRTUAL;
3562 virtual
void UserLimitOutputSet(int32_t number, int32_t valueSet, uint64_t outputPtr,
bool enabled) PURE_VIRTUAL;
3566 virtual
void UserLimitOutputSet(int32_t number, uint64_t andMask, uint64_t orMask, uint64_t outputPtr,
bool enabled) PURE_VIRTUAL;
3570 virtual
void UserLimitOutputSet(int32_t number,
double limitValueDouble, uint64_t outputPtr,
bool enabled) PURE_VIRTUAL;
3587 virtual
void UserLimitOutputSet(int32_t number,
RSIDataType dataType, uint64_t inputPtr, uint64_t outputPtr,
bool enabled) PURE_VIRTUAL;
3590 virtual
bool UserLimitOutputEnableGet(int32_t number) PURE_VIRTUAL;
3593 virtual
RSIDataType UserLimitOutputDataTypeGet(int32_t number) PURE_VIRTUAL;
3596 virtual uint64_t UserLimitOutputAddressGet(int32_t number) PURE_VIRTUAL;
3599 virtual uint64_t UserLimitOutputInputAddressGet(int32_t number) PURE_VIRTUAL;
3602 virtual uint32_t UserLimitOutputAndMaskGet(int32_t number) PURE_VIRTUAL;
3605 virtual uint32_t UserLimitOutputOrMaskGet(int32_t number) PURE_VIRTUAL;
3608 virtual int32_t UserLimitOutputValueGet(int32_t number) PURE_VIRTUAL;
3611 virtual uint64_t UserLimitOutputAndMask64Get(int32_t number) PURE_VIRTUAL;
3614 virtual uint64_t UserLimitOutputOrMask64Get(int32_t number) PURE_VIRTUAL;
3618 virtual
double UserLimitOutputDoubleGet(int32_t number) PURE_VIRTUAL;
3640 virtual
bool UserLimitStateGet(int32_t number) PURE_VIRTUAL;
3662 virtual
bool UserLimitEnableGet(int32_t number) PURE_VIRTUAL;
3665 virtual
void UserLimitEnableSet(int32_t number,
bool enable) PURE_VIRTUAL;
3681 virtual
void UserLimitDisable(int32_t number) PURE_VIRTUAL;
3694 virtual
void UserLimitReset(int32_t number) PURE_VIRTUAL;
3705 virtual int32_t UserLimitCountMax() PURE_VIRTUAL;
3724 virtual
void UserLimitInterruptUserDataAddressSet(int32_t number, uint32_t userDataIndex, uint64_t address) PURE_VIRTUAL;
3727 virtual uint64_t UserLimitInterruptUserDataAddressGet(int32_t number, uint32_t userDataIndex) PURE_VIRTUAL;
3745 virtual int32_t MathBlockCountGet() PURE_VIRTUAL;
3757 virtual
void MathBlockCountSet(int32_t mathBlockCount) PURE_VIRTUAL;
3813 static inline constexpr uint32_t SDOTimeoutMillisecondsDefault = 100;
3830 virtual
bool IsEtherCAT() PURE_VIRTUAL;
3833 virtual
bool IsSynqNet() PURE_VIRTUAL;
3843 virtual
bool HasIO() PURE_VIRTUAL;
3846 virtual
bool DigitalInGet(int32_t digitalInNumber) PURE_VIRTUAL;
3849 virtual
bool DigitalOutGet(int32_t digitalOutNumber) PURE_VIRTUAL;
3852 virtual
void DigitalOutSet(int32_t digitalOutNumber,
bool state) PURE_VIRTUAL;
3855 virtual int32_t AnalogInGet(int32_t analogChannel) PURE_VIRTUAL;
3858 virtual int32_t AnalogOutGet(int32_t analogChannel) PURE_VIRTUAL;
3861 virtual
void AnalogOutSet(int32_t analogChannel, int32_t analogValue) PURE_VIRTUAL;
3870 virtual int32_t DigitalInCountGet() PURE_VIRTUAL;
3873 virtual int32_t DigitalOutCountGet() PURE_VIRTUAL;
3876 virtual int32_t AnalogInCountGet() PURE_VIRTUAL;
3879 virtual int32_t AnalogOutCountGet() PURE_VIRTUAL;
3883 virtual int32_t SegmentCountGet() PURE_VIRTUAL;
3886 virtual int32_t SegmentDigitalInCountGet(int32_t segmentNumber) PURE_VIRTUAL;
3889 virtual int32_t SegmentDigitalOutCountGet(int32_t segmentNumber) PURE_VIRTUAL;
3892 virtual int32_t SegmentAnalogInCountGet(int32_t segmentNumber) PURE_VIRTUAL;
3895 virtual int32_t SegmentAnalogOutCountGet(int32_t segmentNumber) PURE_VIRTUAL;
3898 virtual int32_t SegmentIDGet(int32_t segmentNumber) PURE_VIRTUAL;
3912 virtual uint64_t DigitalInAddressGet(int32_t bitNumber) PURE_VIRTUAL;
3926 virtual int32_t DigitalInMaskGet(int32_t bitNumber) PURE_VIRTUAL;
3940 virtual uint64_t DigitalOutAddressGet(int32_t bitNumber) PURE_VIRTUAL;
3954 virtual int32_t DigitalOutMaskGet(int32_t bitNumber) PURE_VIRTUAL;
3967 virtual uint64_t AnalogInAddressGet(int32_t channel) PURE_VIRTUAL;
3980 virtual int32_t AnalogInMaskGet(int32_t channel) PURE_VIRTUAL;
3993 virtual uint64_t AnalogOutAddressGet(int32_t channel) PURE_VIRTUAL;
4006 virtual int32_t AnalogOutMaskGet(int32_t channel) PURE_VIRTUAL;
4021 virtual int32_t ServiceChannelRead(int32_t index, int32_t subIndex, int32_t byteCount) PURE_VIRTUAL;
4026 virtual int32_t ServiceChannelRead(int32_t index, int32_t subIndex, int32_t byteCount, uint32_t timeoutMilliseconds) PURE_VIRTUAL;
4040 virtual const
char* const ServiceChannelReadString(int32_t index, int32_t subIndex, int32_t byteCount) PURE_VIRTUAL;
4045 virtual const
char* const ServiceChannelReadString(int32_t index, int32_t subIndex, int32_t byteCount, uint32_t timeoutMilliseconds) PURE_VIRTUAL;
4057 virtual
RapidVector<uint8_t> ServiceChannelReadBytes(int32_t index, int32_t subIndex, int32_t byteCount, uint32_t timeoutMilliseconds) PURE_VIRTUAL;
4072 virtual
void ServiceChannelWrite(int32_t index, int32_t subIndex, int32_t byteCount, int32_t sdoValue) PURE_VIRTUAL;
4079 virtual
void ServiceChannelWrite(int32_t index, int32_t subIndex, int32_t byteCount, int32_t sdoValue, uint32_t timeoutMilliseconds) PURE_VIRTUAL;
4092 virtual
void ServiceChannelWrite(int32_t index, int32_t subIndex, int32_t byteCount, const
char* const stringValue) PURE_VIRTUAL;
4101 virtual
void ServiceChannelWrite(int32_t index, int32_t subIndex, int32_t byteCount, const
char* const stringValue, uint32_t timeoutMilliseconds) PURE_VIRTUAL;
4111 virtual
void ServiceChannelWrite(int32_t index, int32_t subIndex, int32_t byteCount,
RapidVector<uint8_t> bytes, uint32_t timeoutMilliseconds) PURE_VIRTUAL;
4118 virtual
char* AKDASCIICommand(const
char* const command) PURE_VIRTUAL;
4121 virtual
void ClearFaults(int32_t axisNumber) PURE_VIRTUAL;
4124 virtual uint32_t VendorIdGet() PURE_VIRTUAL;
4138 virtual const
char* const NameGet() PURE_VIRTUAL;
4152 virtual const
char* const ProductNameGet() PURE_VIRTUAL;
4166 virtual const
char* const VendorNameGet() PURE_VIRTUAL;
4169 virtual uint32_t ProductCodeGet() PURE_VIRTUAL;
4172 virtual uint32_t RevisionGet() PURE_VIRTUAL;
4175 virtual uint32_t StationAliasGet() PURE_VIRTUAL;
4178 virtual const
char* const SerialNumberGet() PURE_VIRTUAL;
4181 virtual uint32_t AxisCountGet() PURE_VIRTUAL;
4184 virtual uint16_t StatusWordGet(int32_t axisIndex) PURE_VIRTUAL;
4245 virtual int32_t AxisCountGet() PURE_VIRTUAL;
4275 virtual
void TriggeredModify() PURE_VIRTUAL;
4303 virtual
void Stop() PURE_VIRTUAL;
4329 virtual
void Resume() PURE_VIRTUAL;
4355 virtual
void EStop() PURE_VIRTUAL;
4377 virtual
void EStopAbort() PURE_VIRTUAL;
4395 virtual
void EStopModify() PURE_VIRTUAL;
4399 virtual
void EStopModifyAbort() PURE_VIRTUAL;
4422 virtual
void Abort() PURE_VIRTUAL;
4450 virtual
void ClearFaults() PURE_VIRTUAL;
4478 virtual
void AmpEnableSet(
bool enable) PURE_VIRTUAL;
4509 virtual int32_t AmpEnableSet(
bool enable, int32_t ampActiveTimeoutMilliseconds) PURE_VIRTUAL;
4531 virtual
void Map() PURE_VIRTUAL;
4550 virtual
void Unmap() PURE_VIRTUAL;
4556 virtual
bool IsMapped() PURE_VIRTUAL;
4574 virtual
void FeedRateSet(
double rate) PURE_VIRTUAL;
4594 virtual
double FeedRateGet() PURE_VIRTUAL;
4677 virtual const
char* const SourceNameGet(
RSISource source) PURE_VIRTUAL;
4701 virtual int32_t MotionDoneWait() PURE_VIRTUAL;
4729 virtual int32_t MotionDoneWait(int32_t waitTimeoutMilliseconds) PURE_VIRTUAL;
4751 virtual
bool MotionDoneGet() PURE_VIRTUAL;
4791 virtual uint64_t StatusBitsGet() PURE_VIRTUAL;
4825 virtual
void InterruptEnableSet(
bool enable) PURE_VIRTUAL;
4840 virtual
void InterruptWake() PURE_VIRTUAL;
4861 virtual
double StopTimeGet() PURE_VIRTUAL;
4878 virtual
void StopTimeSet(
double seconds) PURE_VIRTUAL;
4895 virtual
double EStopTimeGet() PURE_VIRTUAL;
4912 virtual
void EStopTimeSet(
double seconds) PURE_VIRTUAL;
4930 virtual
double MotionDelayGet() PURE_VIRTUAL;
4952 virtual
void MotionDelaySet(
double seconds) PURE_VIRTUAL;
4974 virtual uint16_t MotionIdGet() PURE_VIRTUAL;
4993 virtual
void MotionIdSet(uint16_t
id) PURE_VIRTUAL;
4996 virtual uint16_t MotionIdExecutingGet() PURE_VIRTUAL;
4999 virtual uint16_t MotionElementIdExecutingGet() PURE_VIRTUAL;
5015 virtual
double MotionFinalVelocityGet() PURE_VIRTUAL;
5024 virtual
void MotionFinalVelocitySet(
double finalVelocity) PURE_VIRTUAL;
5092 virtual int32_t MotionHoldGateNumberGet() PURE_VIRTUAL;
5113 virtual
void MotionHoldGateNumberSet(int32_t gateNumber) PURE_VIRTUAL;
5131 virtual
double MotionHoldTimeoutGet() PURE_VIRTUAL;
5151 virtual
void MotionHoldTimeoutSet(
double seconds) PURE_VIRTUAL;
5176 virtual
bool MotionHoldGateGet() PURE_VIRTUAL;
5200 virtual
void MotionHoldGateSet(
bool hold) PURE_VIRTUAL;
5218 virtual int32_t MotionHoldAxisNumberGet() PURE_VIRTUAL;
5236 virtual
void MotionHoldAxisNumberSet(int32_t number) PURE_VIRTUAL;
5255 virtual
double MotionHoldAxisPositionGet() PURE_VIRTUAL;
5273 virtual
void MotionHoldAxisPositionSet(
double position) PURE_VIRTUAL;
5297 virtual uint64_t MotionHoldUserAddressGet() PURE_VIRTUAL;
5315 virtual
void MotionHoldUserAddressSet(uint64_t address) PURE_VIRTUAL;
5332 virtual int32_t MotionHoldUserMaskGet() PURE_VIRTUAL;
5349 virtual
void MotionHoldUserMaskSet(int32_t holdMask) PURE_VIRTUAL;
5366 virtual int32_t MotionHoldUserPatternGet() PURE_VIRTUAL;
5383 virtual
void MotionHoldUserPatternSet(int32_t pattern) PURE_VIRTUAL;
5386 virtual
void MotionAttributeMaskDefaultSet() PURE_VIRTUAL;
5495 virtual
void MovePT(
RSIMotionType type, const
double* const position, const
double* const time, int32_t pointCount, int32_t emptyCount,
bool retain,
bool final) PURE_VIRTUAL;
5534 virtual
void MovePVT(const
double* const position, const
double* const velocity, const
double* const time, int32_t pointCount, int32_t emptyCount,
bool retain,
bool final) PURE_VIRTUAL;
5565 virtual
void MovePVAJT(const
double* const position, const
double* const velocity, const
double* const acceleration, const
double* const jerk, const
double* const time, int32_t pointCount, int32_t emptyCount,
bool retain,
bool final) PURE_VIRTUAL;
5571 virtual
void StreamingOutputAdd(int32_t onMask, int32_t offMask, uint64_t address) PURE_VIRTUAL;
5594 virtual
void StreamingOutputAdd(int32_t onMask, int32_t offMask, uint64_t address, int32_t ptPointIndex) PURE_VIRTUAL;
5600 virtual
void StreamingOutputAdd(RapidCode::
IOPoint* point,
bool on) PURE_VIRTUAL;
5620 virtual
void StreamingOutputAdd(RapidCode::
IOPoint* point,
bool on, int32_t ptPointIndex) PURE_VIRTUAL;
5637 virtual
void StreamingOutputsClear() PURE_VIRTUAL;
5658 virtual
void StreamingOutputsEnableSet(
bool enable) PURE_VIRTUAL;
5679 static inline constexpr uint32_t NetworkIndexInvalid = 65535;
5682 static inline constexpr double AmpEnableAmpFaultTimeoutSecondsDefault = 1.0;
5743 virtual void MoveTrapezoidal(
double position,
double vel,
double accel,
double decel) PURE_VIRTUAL;
5766 virtual void MoveTrapezoidal(
double position,
double vel,
double accel,
double decel,
double finalVel) PURE_VIRTUAL;
5831 virtual void MoveSCurve(
double position,
double vel,
double accel,
double decel,
double jerkPct) PURE_VIRTUAL;
5848 virtual void MoveSCurve(
double position,
double vel,
double accel,
double decel,
double jerkPct,
double finalVel) PURE_VIRTUAL;
5967 virtual void MoveRelative(
double relativePosition,
double vel,
double accel,
double decel,
double jerkPct) PURE_VIRTUAL;
5977 virtual void MoveRelative(
double relativePosition,
double vel,
double accel,
double decel,
double jerkPct,
double finalVel) PURE_VIRTUAL;
6052 virtual
void ActualPositionSet(
double position) PURE_VIRTUAL;
6070 virtual
double CompensationPositionGet() PURE_VIRTUAL;
6084 virtual
void CompensationPositionSet(
double position) PURE_VIRTUAL;
6097 virtual
double TargetPositionGet() PURE_VIRTUAL;
6118 virtual
double CommandPositionGet() PURE_VIRTUAL;
6151 virtual
void CommandPositionSet(
double position) PURE_VIRTUAL;
6176 virtual
void CommandPositionDirectSet(
double position) PURE_VIRTUAL;
6194 virtual
double OriginPositionGet() PURE_VIRTUAL;
6218 virtual
void OriginPositionSet(
double position) PURE_VIRTUAL;
6240 virtual
double PositionErrorGet() PURE_VIRTUAL;
6263 virtual
double CommandVelocityGet() PURE_VIRTUAL;
6287 virtual
double ActualVelocityGet() PURE_VIRTUAL;
6309 virtual
double CommandAccelGet() PURE_VIRTUAL;
6312 virtual
double CommandJerkGet() PURE_VIRTUAL;
6357 virtual
double UserUnitsGet() PURE_VIRTUAL;
6381 virtual
void UserUnitsSet(
double countsPerUserUnit) PURE_VIRTUAL;
6384 virtual
double UserUnitsToCounts(
double userUnits) PURE_VIRTUAL;
6387 virtual
double CountsToUserUnits(
double counts) PURE_VIRTUAL;
6408 virtual int32_t FramesToExecuteGet() PURE_VIRTUAL;
6437 virtual
void Home() PURE_VIRTUAL;
6442 virtual
void Home(
bool moveToZero) PURE_VIRTUAL;
6507 virtual
double HomeOffsetGet() PURE_VIRTUAL;
6528 virtual
void HomeOffsetSet(
double offset) PURE_VIRTUAL;
6548 virtual
double HomeVelocityGet() PURE_VIRTUAL;
6574 virtual
void HomeVelocitySet(
double velocity) PURE_VIRTUAL;
6580 virtual
void HomeVelocitySet(
RSIHomeStage homeStage,
double velocity) PURE_VIRTUAL;
6597 virtual
double HomeSlowVelocityGet() PURE_VIRTUAL;
6614 virtual
void HomeSlowVelocitySet(
double velocity) PURE_VIRTUAL;
6634 virtual
double HomeAccelerationGet() PURE_VIRTUAL;
6660 virtual
void HomeAccelerationSet(
double accel) PURE_VIRTUAL;
6665 virtual
void HomeAccelerationSet(
RSIHomeStage homeStage,
double accel) PURE_VIRTUAL;
6684 virtual
double HomeDecelerationGet() PURE_VIRTUAL;
6709 virtual
void HomeDecelerationSet(
double decel) PURE_VIRTUAL;
6714 virtual
void HomeDecelerationSet(
RSIHomeStage homeStage,
double decel) PURE_VIRTUAL;
6734 virtual
double HomeJerkPercentGet() PURE_VIRTUAL;
6759 virtual
void HomeJerkPercentSet(
double percent) PURE_VIRTUAL;
6765 virtual
void HomeJerkPercentSet(
RSIHomeStage homeStage,
double percent) PURE_VIRTUAL;
6786 virtual
void HomeCancelSet(
bool cancel) PURE_VIRTUAL;
6806 virtual
bool HomeStateGet() PURE_VIRTUAL;
6820 virtual
void HomeStateSet(
bool homed) PURE_VIRTUAL;
6826 virtual
void HomeLimitCustomConfigSet(uint64_t address, int32_t bitIndex) PURE_VIRTUAL;
6829 virtual
void HomeLimitCustomConfigReset() PURE_VIRTUAL;
6832 virtual uint64_t HomeLimitCustomConfigAddressGet() PURE_VIRTUAL;
6836 virtual int32_t HomeLimitCustomConfigBitIndexGet() PURE_VIRTUAL;
6860 virtual
void HomeTravelDistanceSet(
RSIHomeStage stage,
double distanceToTravel) PURE_VIRTUAL;
6896 virtual
void HomeBehaviorSet(
RSIAction behavior) PURE_VIRTUAL;
6922 virtual uint16_t StatusWordGet() PURE_VIRTUAL;
6955 virtual
bool NegativeLimitGet() PURE_VIRTUAL;
6980 virtual
bool PositiveLimitGet() PURE_VIRTUAL;
7010 virtual
bool HomeLimitGet() PURE_VIRTUAL;
7039 virtual
bool HomeSwitchGet() PURE_VIRTUAL;
7061 virtual
bool AmpFaultGet() PURE_VIRTUAL;
7086 virtual
bool AmpEnableGet() PURE_VIRTUAL;
7361 virtual
double AnalogInGet(int32_t channel) PURE_VIRTUAL;
7382 virtual
double EStopDecelerationGet() PURE_VIRTUAL;
7398 virtual
void EStopDecelerationSet(
double decel) PURE_VIRTUAL;
7410 virtual
double EStopJerkPercentGet() PURE_VIRTUAL;
7429 virtual
void EStopJerkPercentSet(
double jerkPct) PURE_VIRTUAL;
7440 virtual
double TriggeredModifyDecelerationGet() PURE_VIRTUAL;
7459 virtual
void TriggeredModifyDecelerationSet(
double decel) PURE_VIRTUAL;
7471 virtual
double TriggeredModifyJerkPercentGet() PURE_VIRTUAL;
7490 virtual
void TriggeredModifyJerkPercentSet(
double jerkPct) PURE_VIRTUAL;
7493 virtual int32_t FrameBufferSizeGet() PURE_VIRTUAL;
7496 virtual
void FrameBufferSizeSet(int32_t frameSize) PURE_VIRTUAL;
7517 virtual uint16_t MotionIdExecutingGet() PURE_VIRTUAL;
7539 virtual uint16_t MotionElementIdExecutingGet() PURE_VIRTUAL;
7548 virtual
double MotionFinalVelocityGet() PURE_VIRTUAL;
7551 virtual
void MotionFinalVelocitySet(
double finalVelocity) PURE_VIRTUAL;
7554 virtual
double DefaultVelocityGet() PURE_VIRTUAL;
7557 virtual
void DefaultVelocitySet(
double velocity) PURE_VIRTUAL;
7560 virtual
double DefaultAccelerationGet() PURE_VIRTUAL;
7563 virtual
void DefaultAccelerationSet(
double acceleration) PURE_VIRTUAL;
7566 virtual
double DefaultDecelerationGet() PURE_VIRTUAL;
7569 virtual
void DefaultDecelerationSet(
double deceleration) PURE_VIRTUAL;
7572 virtual
double DefaultJerkPercentGet() PURE_VIRTUAL;
7575 virtual
void DefaultJerkPercentSet(
double jerkPercent) PURE_VIRTUAL;
7578 virtual
double DefaultPosition1Get() PURE_VIRTUAL;
7581 virtual
void DefaultPosition1Set(
double position1) PURE_VIRTUAL;
7584 virtual
double DefaultPosition2Get() PURE_VIRTUAL;
7587 virtual
void DefaultPosition2Set(
double position2) PURE_VIRTUAL;
7590 virtual
double DefaultRelativeIncrementGet() PURE_VIRTUAL;
7593 virtual
void DefaultRelativeIncrementSet(
double relativeIncrement) PURE_VIRTUAL;
7647 virtual
void AmpFaultActionSet(
RSIAction action) PURE_VIRTUAL;
7670 virtual
bool AmpFaultTriggerStateGet() PURE_VIRTUAL;
7693 virtual
void AmpFaultTriggerStateSet(
bool state) PURE_VIRTUAL;
7715 virtual
double AmpFaultDurationGet() PURE_VIRTUAL;
7737 virtual
void AmpFaultDurationSet(
double seconds) PURE_VIRTUAL;
7815 virtual
bool HomeTriggerStateGet() PURE_VIRTUAL;
7837 virtual
void HomeTriggerStateSet(
bool state) PURE_VIRTUAL;
7860 virtual
double HomeDurationGet() PURE_VIRTUAL;
7884 virtual
void HomeDurationSet(
double seconds) PURE_VIRTUAL;
7914 virtual
RSIAction ErrorLimitActionGet() PURE_VIRTUAL;
7942 virtual
void ErrorLimitActionSet(
RSIAction action) PURE_VIRTUAL;
7966 virtual
double ErrorLimitTriggerValueGet() PURE_VIRTUAL;
7989 virtual
void ErrorLimitTriggerValueSet(
double triggerValue) PURE_VIRTUAL;
8012 virtual
double ErrorLimitDurationGet() PURE_VIRTUAL;
8036 virtual
void ErrorLimitDurationSet(
double seconds) PURE_VIRTUAL;
8062 virtual
RSIAction HardwareNegLimitActionGet() PURE_VIRTUAL;
8088 virtual
void HardwareNegLimitActionSet(
RSIAction action) PURE_VIRTUAL;
8113 virtual
bool HardwareNegLimitTriggerStateGet() PURE_VIRTUAL;
8138 virtual
void HardwareNegLimitTriggerStateSet(
bool state) PURE_VIRTUAL;
8162 virtual
double HardwareNegLimitDurationGet() PURE_VIRTUAL;
8187 virtual
void HardwareNegLimitDurationSet(
double seconds) PURE_VIRTUAL;
8213 virtual
RSIAction HardwarePosLimitActionGet() PURE_VIRTUAL;
8239 virtual
void HardwarePosLimitActionSet(
RSIAction action) PURE_VIRTUAL;
8261 virtual
bool HardwarePosLimitTriggerStateGet() PURE_VIRTUAL;
8286 virtual
void HardwarePosLimitTriggerStateSet(
bool state) PURE_VIRTUAL;
8310 virtual
double HardwarePosLimitDurationGet() PURE_VIRTUAL;
8334 virtual
void HardwarePosLimitDurationSet(
double seconds) PURE_VIRTUAL;
8361 virtual
RSIAction SoftwareNegLimitActionGet() PURE_VIRTUAL;
8386 virtual
void SoftwareNegLimitActionSet(
RSIAction action) PURE_VIRTUAL;
8410 virtual
double SoftwareNegLimitTriggerValueGet() PURE_VIRTUAL;
8434 virtual
void SoftwareNegLimitTriggerValueSet(
double triggerValue) PURE_VIRTUAL;
8459 virtual
RSIAction SoftwarePosLimitActionGet() PURE_VIRTUAL;
8484 virtual
void SoftwarePosLimitActionSet(
RSIAction action) PURE_VIRTUAL;
8508 virtual
double SoftwarePosLimitTriggerValueGet() PURE_VIRTUAL;
8532 virtual
void SoftwarePosLimitTriggerValueSet(
double triggerValue) PURE_VIRTUAL;
8559 virtual
RSIAction EncoderFaultActionGet() PURE_VIRTUAL;
8585 virtual
void EncoderFaultActionSet(
RSIAction action) PURE_VIRTUAL;
8656 virtual
double EncoderFaultDurationGet() PURE_VIRTUAL;
8679 virtual
void EncoderFaultDurationSet(
double seconds) PURE_VIRTUAL;
8682 virtual
RSIAction NodeFailureActionGet() PURE_VIRTUAL;
8685 virtual
void NodeFailureActionSet(
RSIAction action) PURE_VIRTUAL;
8728 virtual
bool LimitTriggerStateGet(
RSIEventType limit) PURE_VIRTUAL;
8731 virtual
void LimitTriggerStateSet(
RSIEventType limit,
bool triggerState) PURE_VIRTUAL;
8734 virtual
double LimitTriggerValueGet(
RSIEventType limit) PURE_VIRTUAL;
8737 virtual
void LimitTriggerValueSet(
RSIEventType limit,
double triggerValue) PURE_VIRTUAL;
8740 virtual
double LimitDurationGet(
RSIEventType limit) PURE_VIRTUAL;
8743 virtual
void LimitDurationSet(
RSIEventType limit,
double seconds) PURE_VIRTUAL;
8764 virtual
double PositionToleranceFineGet() PURE_VIRTUAL;
8779 virtual
void PositionToleranceFineSet(
double tolerance) PURE_VIRTUAL;
8794 virtual
double PositionToleranceCoarseGet() PURE_VIRTUAL;
8812 virtual
void PositionToleranceCoarseSet(
double tolerance) PURE_VIRTUAL;
8827 virtual
double VelocityToleranceGet() PURE_VIRTUAL;
8842 virtual
void VelocityToleranceSet(
double tolerance) PURE_VIRTUAL;
8858 virtual
double SettlingTimeGet() PURE_VIRTUAL;
8874 virtual
void SettlingTimeSet(
double time) PURE_VIRTUAL;
8892 virtual
bool SettleOnStopGet() PURE_VIRTUAL;
8911 virtual
void SettleOnStopSet(
bool state) PURE_VIRTUAL;
8929 virtual
bool SettleOnEStopGet() PURE_VIRTUAL;
8946 virtual
void SettleOnEStopSet(
bool state) PURE_VIRTUAL;
8964 virtual
bool SettleOnEStopCmdEqActGet() PURE_VIRTUAL;
8981 virtual
void SettleOnEStopCmdEqActSet(
bool state) PURE_VIRTUAL;
9022 virtual
void MotorTypeSet(
RSIMotorType type) PURE_VIRTUAL;
9111 virtual
double BrakeApplyDelayGet() PURE_VIRTUAL;
9130 virtual
void BrakeApplyDelaySet(
double seconds) PURE_VIRTUAL;
9147 virtual
double BrakeReleaseDelayGet() PURE_VIRTUAL;
9166 virtual
void BrakeReleaseDelaySet(
double seconds) PURE_VIRTUAL;
9169 virtual
void ClosedLoopStepperSet(
bool enable) PURE_VIRTUAL;
9172 virtual int32_t ClosedLoopStepperVersionGet() PURE_VIRTUAL;
9178 virtual
void EncoderPointerSet(
RSIMotorFeedback encoder, uint64_t address) PURE_VIRTUAL;
9185 virtual
void FeedbackDeltaPointerSet(
RSIAxisPositionInput input, uint64_t address) PURE_VIRTUAL;
9210 virtual int32_t EncoderRatioNumeratorGet(
RSIMotorFeedback encoder) PURE_VIRTUAL;
9213 virtual int32_t EncoderRatioDenominatorGet(
RSIMotorFeedback encoder) PURE_VIRTUAL;
9236 virtual
void EncoderRatioSet(
RSIMotorFeedback encoder, int32_t numerator, int32_t denominator) PURE_VIRTUAL;
9239 virtual const
char* const EncoderRatioPrimaryGet() PURE_VIRTUAL;
9242 virtual
void EncoderRatioPrimarySet(
char* numeratorCommaDenominator) PURE_VIRTUAL;
9245 virtual const
char* const EncoderRatioSecondaryGet() PURE_VIRTUAL;
9248 virtual
void EncoderRatioSecondarySet(
char* numeratorCommaDenominator) PURE_VIRTUAL;
9251 virtual int32_t EncoderCountGet() PURE_VIRTUAL;
9255 virtual
void EncoderCountSet(int32_t count) PURE_VIRTUAL;
9312 virtual int32_t MotorFaultMaskGet() PURE_VIRTUAL;
9339 virtual
void MotorFaultMaskSet(int32_t faultMask) PURE_VIRTUAL;
9368 virtual
void GearingEnable(int32_t masterAxisNumber,
RSIAxisMasterType masterFeedbackSource, int32_t numerator, int32_t denominator) PURE_VIRTUAL;
9373 virtual
void GearingEnable(
Axis* masterAxis,
RSIAxisMasterType masterFeedbackSource, int32_t numerator, int32_t denominator) PURE_VIRTUAL;
9393 virtual
void GearingRatioChange(int32_t numerator, int32_t denominator) PURE_VIRTUAL;
9411 virtual
void GearingDisable() PURE_VIRTUAL;
9414 virtual int32_t GearingNumeratorGet() PURE_VIRTUAL;
9417 virtual int32_t GearingDenominatorGet() PURE_VIRTUAL;
9420 virtual
bool GearingEnableGet() PURE_VIRTUAL;
9439 virtual int32_t GearingMasterAxisNumberGet() PURE_VIRTUAL;
9477 virtual
double MotionCamMasterStartGet(
Axis* master) PURE_VIRTUAL;
9493 virtual
void MotionCamMasterStartSet(
Axis* master,
double startPosition) PURE_VIRTUAL;
9511 virtual int32_t MotionCamRepeatFromGet() PURE_VIRTUAL;
9530 virtual
void MotionCamRepeatFromSet(int32_t repeatFrom) PURE_VIRTUAL;
9549 virtual
void MotionCamRepeatStop() PURE_VIRTUAL;
9573 virtual
void MoveCamLinear(int32_t masterAxisNumber,
RSIAxisMasterType masterFeedbackSource, const
double* const masterDistances, const
double* const slavePositions, int32_t pointCount) PURE_VIRTUAL;
9604 virtual
void MoveCamCubic(int32_t masterAxisNumber,
RSIAxisMasterType masterFeedbackSource, const
double* const masterDistances, const
double* const slavePositions, const
double* const gearRatios, int32_t pointCount) PURE_VIRTUAL;
9623 virtual int32_t DriveIndexGet() PURE_VIRTUAL;
9643 virtual
double BacklashWidthGet() PURE_VIRTUAL;
9657 virtual
void BacklashWidthSet(
double width) PURE_VIRTUAL;
9671 virtual
double BacklashRateGet() PURE_VIRTUAL;
9685 virtual
void BacklashRateSet(
double rate) PURE_VIRTUAL;
9698 virtual
double BacklashValueGet() PURE_VIRTUAL;
9819 virtual
void FilterCoeffSet(
RSIFilterGainPIVCoeff coeff, int32_t gainTable,
double coeffValue) PURE_VIRTUAL;
9855 virtual int32_t FilterGainTableGet() PURE_VIRTUAL;
9885 virtual
void FilterGainTableSet(int32_t gainTable) PURE_VIRTUAL;
9903 virtual int32_t FilterGainTableSizeGet() PURE_VIRTUAL;
9906 virtual
double FilterOutputGet(
void) PURE_VIRTUAL;
9920 virtual
double FilterLowPassGet() PURE_VIRTUAL;
9937 virtual
void FilterLowPassSet(
double frequency) PURE_VIRTUAL;
9961 virtual
bool FilterGainSchedulingGet() PURE_VIRTUAL;
9965 virtual
void FilterGainSchedulingSet(
bool enable) PURE_VIRTUAL;
9968 virtual
bool IsTuneable() PURE_VIRTUAL;
9986 virtual
void PostFilterLowPassSet(int32_t sectionNumber,
double frequency) PURE_VIRTUAL;
10003 virtual
void PostFilterUnityGainSet(int32_t sectionNumber) PURE_VIRTUAL;
10023 virtual
void PostFilterSingleOrderSet(int32_t sectionNumber,
double aOne,
double bZero,
double bOne) PURE_VIRTUAL;
10040 virtual
void PostFilterHighPassSet(int32_t sectionNumber,
double cornerFreq) PURE_VIRTUAL;
10059 virtual
void PostFilterNotchSet(int32_t sectionNumber,
double centerFreq,
double bandwidth) PURE_VIRTUAL;
10079 virtual
void PostFilterResonatorSet(int32_t sectionNumber,
double centerFreq,
double bandwidth,
double gain) PURE_VIRTUAL;
10099 virtual
void PostFilterLeadLagSet(int32_t sectionNumber,
double lowGain,
double highGain,
double centerFreq) PURE_VIRTUAL;
10116 virtual
void PostFilterClear(int32_t sectionNumber) PURE_VIRTUAL;
10138 virtual
void PostFilterBiquadSet(int32_t sectionNumber,
double aOne,
double aTwo,
double bZero,
double bOne,
double bTwo) PURE_VIRTUAL;
10141 virtual const
char* const PostFilterInfoGet() PURE_VIRTUAL;
10169 virtual const
char* const UserLabelGet() PURE_VIRTUAL;
10191 virtual
void UserLabelSet(const
char* const userLabel) PURE_VIRTUAL;
10200 virtual
void PostTrajectoryGearingEnableSet(
bool enable) PURE_VIRTUAL;
10203 virtual
bool PostTrajectoryGearingEnableGet() PURE_VIRTUAL;
10206 virtual
void PostTrajectoryGearingMasterAxisSet(int32_t masterAxisNumber) PURE_VIRTUAL;
10209 virtual int32_t PostTrajectoryGearingMasterAxisGet() PURE_VIRTUAL;
10212 virtual
void PostTrajectoryGearingMultiplierSet(
double multiplier) PURE_VIRTUAL;
10215 virtual
double PostTrajectoryGearingMultiplierGet() PURE_VIRTUAL;
10254 virtual
void NetworkIndexSet(
RSINetworkIndexType indexType, uint32_t newIndex) PURE_VIRTUAL;
10266 virtual
double BacklashHysteresisLimitGet() PURE_VIRTUAL;
10274 virtual
void BacklashHysteresisLimitSet(
double hysteresisLimit) PURE_VIRTUAL;
10299 virtual
bool StepperMotorLoopbackGet() PURE_VIRTUAL;
10324 virtual
void StepperMotorLoopbackSet(
bool loopback) PURE_VIRTUAL;
10353 virtual uint64_t GearingMasterAddressGet() PURE_VIRTUAL;