I am trying to control Dynamixel servos using a GUI made using Qt. Dynamixel provides a C set of C libraries to control the motors, while the only way of making GUI's I know is Qt, which is essentially C++. Will it be possible to use Dynamixel C libraries from Qt C++ code in any way?
|
Yes, C++ can compile C with a C++ compiler and you can link C++ against C. Just be sure that any C function you call uses C linkage. This is made my enclosing the prototype of by an
The headers for the library may already do that, BTW. |
|||||
|
|
Dont forget about 'Extern "C"' around the library headers. Read here. How does C's "extern" work? |
|||||
|
|
|
Sure ... C code is called from C++ all the time. For instance, most OS libraries are written in C rather than C++. So whenever you're making syscalls from your C++ code to perform tasks that are handed over to the OS kernel, those are going through C-code calls. Just be sure to include the proper headers and link against the C-libraries in question at compile time. Also remember to use linking custom libraries using
Note that the |
|||||||||||
|
|
You can use C libraries from C++... however there are some caveats. One big thing to watch out when using third-party C libraries with C++ is error handling. Some C libraries use facilities like Also exceptions can be a concern. If a C++ exception propagates to a C/C++ boundary then the application may terminate rather than propagating the exception. (Depending on how the C library was compiled and your OS etc.) (You might get this situation if you pass a C++ function into a C library as a callback.) |
|||
|
|
|
Yes - C++ can use C libraries. This is an example that uses libc the main C library
|
|||||||||
|
|
There is a C++ driver for Dynamixel servos in the Rock Framework. |
|||
|
|