Search found 1011 matches

by fferri
23 Mar 2020, 18:19
Forum: General questions
Topic: During build: ...sim_ros_interface\generated\pub.cpp(728): fatal error C1061: compiler limit: blocks nested too deeply
Replies: 5
Views: 1770

Re: During build: ...sim_ros_interface\generated\pub.cpp(728): fatal error C1061: compiler limit: blocks nested too deep

when I type in: > rosrun image_view image_view image:=/visionSensorData a small window opens labeled /visionSensorData opens but nothing is shown. If I click on the window, it shows (Not responding). image_view is not part of CoppeliaSim's ROS interface. That might be an issue with image_view and W...
by fferri
23 Mar 2020, 11:00
Forum: General questions
Topic: Rotate table
Replies: 3
Views: 1413

Re: Rotate table

Joint can do rotation.
by fferri
23 Mar 2020, 10:57
Forum: General questions
Topic: Motion Planning - Picking Angle Change
Replies: 1
Views: 1233

Re: Motion Planning - Picking Angle Change

Change the second argument (localShift) of getShiftedMatrix() to something else (i.e. in lines 429, 447, 507, 527).
by fferri
23 Mar 2020, 10:08
Forum: General questions
Topic: QMutex : destroying locked mutex
Replies: 5
Views: 3652

Re: QMutex : destroying locked mutex

Search what drivers are available for your graphics card. Some cards have more than one.
by fferri
20 Mar 2020, 13:28
Forum: General questions
Topic: Has anyone received Lua runtime error in simROS.Publish during ROS1 tutorial
Replies: 9
Views: 3339

Re: Has anyone received Lua runtime error in simROS.Publish during ROS1 tutorial

You have to keep an eye for warning messages that appear before the compile phase. (i.e. not those warning C4100: 'p': unreferenced formal parameter which are irrelevant)

If a ROS message cannot be found, a warning is emitted but code generation will continue.
by fferri
19 Mar 2020, 16:25
Forum: General questions
Topic: Has anyone run into this: ...src\sim_ros_interface.cpp(510): error C2466: cannot allocate an array of constant size 0
Replies: 4
Views: 1111

Re: Has anyone run into this: ...src\sim_ros_interface.cpp(510): error C2466: cannot allocate an array of constant size

That probably makes use of an outdated C standard (or not standard at all).

The point is to fake zero command line arguments.

Try changing that to char *argv = nullptr;
by fferri
19 Mar 2020, 16:19
Forum: General questions
Topic: Has anyone received Lua runtime error in simROS.Publish during ROS1 tutorial
Replies: 9
Views: 3339

Re: Has anyone received Lua runtime error in simROS.Publish during ROS1 tutorial

Can you show the commands used to build the plugin? You should pass the options to see full verbose output. Those will vary depend on the build tool you use to compile the plugin. With catkin-tools on Linux that would be something like VERBOSE=1 catkin build --verbose . Probably you didn't source th...
by fferri
18 Mar 2020, 20:40
Forum: General questions
Topic: Compiling simExtROS2Interface for/with ROS2 Crystal
Replies: 6
Views: 1220

Re: Compiling simExtROS2Interface for/with ROS2 Crystal

The compiler is telling you how to solve it. :-)

Just pass -fpermissive to the C++ flags (e.g. pass --cmake-args ' -DCMAKE_CXX_FLAGS=-fpermissive' to colcon).