Flexiv RDK (Robotic Development Kit), a key component of the Flexiv Robotic Software Platform, is a powerful development toolkit that enables the users to create complex and customized robotic applications using APIs that provide both low-level real-time (RT) and high-level non-real-time (NRT) access to Flexiv robots.
Flexiv RDK Home Page is the main reference. It contains important information including user manual and API documentation.
| Supported OS | Supported processor | Supported language | Required compiler kit |
|---|---|---|---|
| Linux (Ubuntu 18/20/22 tested) | x86_64, arm64 | C++, Python | build-essential |
| macOS 12 (Monterey) | arm64 | C++, Python | Xcode Command Line Tools |
| Windows 10 | x86_64 | C++, Python | MSVC 14.0+ |
NOTE: the full documentation is in Flexiv RDK Manual.
The C++ interface of Flexiv RDK is packed into a unified modern CMake library named flexiv_rdk, which can be configured via CMake on all supported OS.
-
In a new Terminal, use
cmake-guito configure the top-levelflexiv_rdkCMake project:cd flexiv_rdk mkdir build && cd build cmake-gui .. & -
Configure with default native compiler settings.
-
Set
CMAKE_INSTALL_PREFIXto a dedicated directory (preferably not a system path) for theflexiv_rdklibrary to be installed to. For example~/rdk_install. -
Configure and Generate, then back to the Terminal to compile and install:
cd flexiv_rdk/build make install -
The user project can now find and link to the installed
flexiv_rdklibrary:cd flexiv_rdk/example mkdir build && cd build cmake .. -DCMAKE_INSTALL_PREFIX=~/rdk_install make -j4Note:
CMAKE_INSTALL_PREFIXis set to the same directory whereflexiv_rdkwas installed to. -
Assuming the system setup detailed in the Flexiv RDK Manual is done, to run an compiled example program:
./<program_name> [robot_ip] [local_ip] [...]Note:
sudois not required unless prompted by the program.
- In a Terminal, use
xcode-selectcommand to invoke the installation of Xcode Command Line Tools, then follow the prompted window to finish the installation. - Download
cmake-3.x.x-macos-universal.dmgfrom CMake download page and install the dmg file. The minimum required version is 3.4. - When done, start CMake from Launchpad and navigate to Tools -> How to Install For Command Line Use. Then follow the instruction "Or, to install symlinks to '/usr/local/bin', run:" to install
cmakeandcmake-guicommand for use in Terminal. - The rest steps are the same as mentioned in Compile and install for Linux.
-
Install any edition of Microsoft Visual Studio with version 2010 or above. Choose the "Desktop development with C++" package during installation.
-
Download
cmake-3.x.x-windows-x86_64.msifrom CMake download page and install the msi file. The minimum required version is 3.4. Add CMake to system PATH when prompted, so thatcmakeandcmake-guicommand can be used from Command Prompt or PowerShell. -
Configure the
flexiv_rdkCMake project using the same steps mentioned in Compile and install for Linux. -
Instead of
make install, usecmaketo compile and install it:cmake --build . --target INSTALL --config Release -
Configure the user project (RDK example programs) using the same steps mentioned in Compile and install for Linux.
-
Instead of
make, usecmaketo compile it:cmake --build . --config Release -
To run an compiled example program:
cd Release <program_name>.exe [robot_ip] [local_ip] [...]
Python 3.8 and 3.10 are supported by RDK, see Flexiv RDK Manual for more details. A brief instruction is provided below and applies to all supported OS.
-
Check Python version is 3.8.x or 3.10.x:
python3 --version -
Assume the system setup detailed in Flexiv RDK Manual is done, to run an example Python program:
cd flexiv_rdk/example_py python3 <program_name>.py [robot_ip] [local_ip] [...]