The RMP Motion Controller APIs

◆ MemoryDoubleSet()

void MemoryDoubleSet ( uint64_t address,
double dataDouble )
Description:
MemoryDoubleSet writes a double value into controller memory
Parameters
addressAny address (host) in the controller's memory.
dataDoubleThe double data to write.
Remarks
This function is also available in RapidSequencer.
Sample Code:
int addressToSet = controller.AddressGet(RSIControllerAddressTypeUSER_BUFFER);
controller.MemoryDoubleSet(addressToSet, 1234567.89);
void MemoryDoubleSet(uint64_t address, double dataDouble)
Write a 64-bit double value to controller memory.
uint64_t AddressGet(RSIControllerAddressType type)
Get the an address for some location on the MotionController.
@ RSIControllerAddressTypeUSER_BUFFER
First location in User Buffer.
See also
MemoryGet
Examples
MathBlock.cs.