MotionController Axis MultiAxis IO IOPoint NetworkNode RsiError
Sample Apps Changelog

RapidCode API

◆ HostAddressGet()

uint64 HostAddressGet ( uint32  firmwareAddress)
pure virtual

Convert a firmware address to a host controller address.

Description:
HostAddressGet converts and returns a firmware address to a host controller address.
Parameters
firmwareAddressAny address (firmware) in the controller's memory, as you would see it in VM3.
Returns
(uint64) Host address.
Sample Code:
// enter string as seen in VM3.
// -- C++ -- //
printf("Host address is 0x%x Firmware Address is 0x%x\n", controller->HostAddressGet(firmwareAddr), firmwareAddr);
// -- C# -- //
Console.WriteLine("Host address is 0x{0} Firmware Address is 0x{1}", controller.HostAddressGet(firmwareAddr), firmwareAddr);
See also
MemorySet, MemoryGet, AddressFromStringGet, FirmwareAddressGet
 
Examples
MotionHoldReleasedBySoftwareAddress.cpp, and MotionHoldReleasedBySoftwareAddress.cs.