new package not created properly on Raspbian
I'm trying to get ROS setup on Raspberry Pi 3 with Raspbian. I've followed this tutorial to get Kinetic setup, and everything went well. http://wiki.ros.org/ROSberryPi/Instal...
I'm trying to setup a custom package with publishers and subscribers from scratch, by following this tutorial: http://wiki.ros.org/ROS/Tutorials/Wri...
Based on my understanding I have to use catkin_make_isolated instead of the regular catkin_make when compiling the package, so that's the only line of command that I did differently:
sudo ./src/catkin/bin/catkin_make_isolated --install -DCMAKE_BUILD_TYPE=Release --install-space /opt/ros/kinetic
I've yet to find a way to only compile my package, so for now it take a very very long time. Now when I get to the point where I call:
rosrun beginner_tutorials talker
I get the error "[rosrun] Couldn't find executable named talker". All my searches online seems to suggest something to do with catkin_make, but none of them seems to work for Raspbian. Any ideas on why it didn't work? Does it have something to do with wstool_merge?