Learn the basic structure for building RapidCode C++ applications.
- Warning
- This is a sample program to assist in the integration of the RMP motion controller with your application. It may not contain all of the logic and safety features that your application requires. We recommend that you wire an external hardware emergency stop (e-stop) button for safety when using our code sample apps. Doing so will help ensure the safety of you and those around you and will prevent potential injury or damage.
The sample apps assume that the system (network, axes, I/O) are configured prior to running the code featured in the sample app. See the Configuration page for more information.
In this page:
📜 Template: Basic Structure
Basic template structure for building RapidCode C++ applications with proper initialization, error handling, and cleanup patterns.
const int NUM_AXES = 0;
int exitCode = -1;
try
{
std::cout << "Hello World!" << std::endl;
exitCode = 0;
}
catch (const std::exception &ex)
{
std::cerr << ex.what() << std::endl;
exitCode = -1;
}
controller->Delete();
Source: starter-template.cpp