File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414 # - rcs_robotiq
1515 - rcs_tacto
1616 - rcs_usb_cam
17- - rcs_zed
1817 runs-on : ubuntu-latest
1918 steps :
2019 - uses : actions/checkout@v4
7473 pip install -r requirements.txt
7574 - name : Check clang format
7675 run : make -C extensions/${{ matrix.extension }} cppcheckformat
77- - name : Clang Tidy
78- run : make -C extensions/${{ matrix.extension }} cpplint
76+ # - name: Clang Tidy
77+ # run: make -C extensions/${{ matrix.extension }} cpplint
7978 - name : Clang build
8079 run : make -C extensions/${{ matrix.extension }} clangcompile PYTHON_EXECUTABLE=${{ steps.setup-python.outputs.python-path }}
8180
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
2525set (CMAKE_CXX_STANDARD 20)
2626set (CMAKE_CXX_STANDARD_REQUIRED ON )
2727set (CMAKE_CXX_EXTENSIONS OFF )
28+ set (CMAKE_POLICY_VERSION_MINIMUM 3.5)
2829
2930set (CMAKE_EXPORT_COMPILE_COMMANDS ON )
3031
Original file line number Diff line number Diff line change 1313using namespace std ;
1414
1515const string ip = " 192.168.101.1" ;
16- const string urdf_path = " models/urdf/ fr3.urdf " ;
16+ const string mjcf_path = " assets/ fr3/mjcf/fr3_0.xml " ;
1717
1818int main () {
1919 try {
20- auto ik = make_shared<rcs::common::RL>(urdf_path );
20+ auto ik = make_shared<rcs::common::Pin>(mjcf_path, " attachment_site_0 " , false );
2121 rcs::hw::Franka robot (ip, ik);
2222 robot.automatic_error_recovery ();
2323 std::cout << " WARNING: This example will move the robot! "
Original file line number Diff line number Diff line change 11PYSRC = src/rcs_panda
2- CPPSRC = src
2+ CPPSRC = src_fr3
33COMPILE_MODE = Release
44
55# CPP
You can’t perform that action at this time.
0 commit comments