-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error compiling on RPI3 #2
Comments
`with catkin_make |
Hi ) |
`Base path: /home/chris/pca_ws Running command: "make cmake_check_build_system" in "/home/chris/pca_ws/build"Running command: "make -j4 -l4" in "/home/chris/pca_ws/build"[ 0%] Built target std_msgs_generate_messages_lisp |
Im using isolated workspace
==> Processing catkin package: 'pca9685_msgs' ==> Processing catkin package: 'ros_pca9685' |
In ros_pca9685/CMakeLists.txt |
I have a similar problem with latest: ==> Processing catkin package: 'ros_pca9685' |
muddling around this by changing CMakeList.txt to comment out other add_libraries and put all source ( 3 files) in the executable: add_executable(controller_sub src/controller_sub.cpp src/lib/I2C/src/I2C.cpp src/lib/PCA9685/src/PCA9685.cpp) |
I have a similar error... tried the suggested by @tawnkramer "...put all source ( 3 files) in the executable..." and it did let the "~/pca_ws$ catkin_make_isolated" to finish without an error. But now trying to run and getting error: ubuntu@urobot:~$ rosrun ros_pca9685 controller_sub Could somebody help me please? Here it is what I have in that folder: 10 directories, 17 files |
include_directories( add_library(I2C src/lib/I2C/src/I2C.cpp) add_library(PCA9685 src/lib/PCA9685/src/PCA9685.cpp) add_executable(controller_sub src/controller_sub.cpp src/lib/I2C/src/I2C.cpp src/lib/PCA9685/src/PCA9685.cpp) |
The text was updated successfully, but these errors were encountered: