MotionController Axis MultiAxis IO IOPoint NetworkNode RsiError
Sample Apps Changelog

RapidCode API

◆ MemoryDoubleGet()

double MemoryDoubleGet ( uint64  address)
pure virtual

Read a 64-bit double value from controller memory.

Description:
MemoryDoubleGet returns the value the controller's memory.
Parameters
addressAn address (host) in the controller's memory.
Returns
(double) The value stored at the address.
Sample Code:
anAddress = axis.AddressGet(RSIAxisAddressType.RSIAxisAddressTypeACTUAL_POSITION);
Console.WriteLine("Value is {0}", controller.MemoryDoubleGet(anAddress));
Note
This does an atomic read of a 64-bit value
See also
MemorySet
 
Examples
Memory.cpp.