Compiling rosfalcon.
Hi,
I am currently working on a project where I have to control a Jackal robot with a Novint Falcon controller through ROS and matlab.
My setup is ros indigo running on top of ubuntu 14.04.
I found this: RosFalcon.
First had to install its dependencies (Boost and libnifalcon).
It's a pretty old package and is made for the older rosbuild system.
Compiling the package (using rosmake rosfalcon) I have encountered a few errors, which I don't know how to handle, most of them are of similar nature to this one:
rosbuild_workspace/rosfalcon/src/falcon_cs_pid.cpp:129:22: error: ‘class libnifalcon::FalconDevice’ has no member named ‘getFalconFirmware’
m_falconDevice.getFalconFirmware()->setLEDStatus(libnifalcon::FalconFirmware::BLUE_LED);
^
I have opened the files linked in the includes (namely FalconDevice.h from usr/local/include/falcon/core) and they do contain the getFalconFirmware function, so do the libnifalcon library source files which I have compiled and installed. (they contain the function as an inline in the headers)
Searching the web for similar problems has netted no results.
Any help would be really appreciated.
Thanks, Tal