APIs, concepts, guides, and more

◆ StartTheNetwork()

static void StartTheNetwork ( MotionController controller)
static
Parameters
controllerPointer to the MotionController to start the network on.
Exceptions
ExceptionThrown if the network does not reach the OPERATIONAL state.
public static void StartTheNetwork(MotionController controller)
{
// Initialize the Network
if (controller.NetworkStateGet() != RSINetworkState.RSINetworkStateOPERATIONAL) // Check if network is started already.
{
Console.WriteLine("Starting Network..");
controller.NetworkStart(); // If not. Initialize The Network. (This can also be done from RapidSetup Tool)
}
if (controller.NetworkStateGet() != RSINetworkState.RSINetworkStateOPERATIONAL) // Check if network is started again.
{
int messagesToRead = controller.NetworkLogMessageCountGet(); // Some kind of error starting the network, read the network log messages
for (int i = 0; i < messagesToRead; i++)
{
Console.WriteLine(controller.NetworkLogMessageGet(i)); // Print all the messages to help figure out the problem
}
throw new SystemException("Expected OPERATIONAL state but the network did not get there.");
}
else // Else, of network is operational.
{
Console.WriteLine("Network Started");
}
}
See also
CheckErrors @[Start-The-Network-cs]

Definition at line 61 of file HelperFunctionsCS.cs.