├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── README_CN.md ├── include └── ros2_api.h ├── launch ├── ld14.launch.py ├── ld14p.launch.py ├── viewer_ld14.launch.py └── viewer_ld14p.launch.py ├── ldlidar_driver ├── include │ ├── ldlidar_datatype.h │ ├── ldlidar_driver.h │ ├── lipkg.h │ ├── log_module.h │ ├── serial_interface_linux.h │ ├── sl_transform.h │ └── slbf.h └── src │ ├── ldlidar_driver.cpp │ ├── lipkg.cpp │ ├── log_module.cpp │ ├── serial_interface_linux.cpp │ ├── sl_transform.cpp │ └── slbf.cpp ├── package.xml ├── rviz2 └── ldlidar.rviz ├── scripts ├── create_udev_rules.sh ├── delete_udev_rules.sh └── ldlidar.rules └── src └── demo.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | *.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/README_CN.md -------------------------------------------------------------------------------- /include/ros2_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/include/ros2_api.h -------------------------------------------------------------------------------- /launch/ld14.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/launch/ld14.launch.py -------------------------------------------------------------------------------- /launch/ld14p.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/launch/ld14p.launch.py -------------------------------------------------------------------------------- /launch/viewer_ld14.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/launch/viewer_ld14.launch.py -------------------------------------------------------------------------------- /launch/viewer_ld14p.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/launch/viewer_ld14p.launch.py -------------------------------------------------------------------------------- /ldlidar_driver/include/ldlidar_datatype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/include/ldlidar_datatype.h -------------------------------------------------------------------------------- /ldlidar_driver/include/ldlidar_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/include/ldlidar_driver.h -------------------------------------------------------------------------------- /ldlidar_driver/include/lipkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/include/lipkg.h -------------------------------------------------------------------------------- /ldlidar_driver/include/log_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/include/log_module.h -------------------------------------------------------------------------------- /ldlidar_driver/include/serial_interface_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/include/serial_interface_linux.h -------------------------------------------------------------------------------- /ldlidar_driver/include/sl_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/include/sl_transform.h -------------------------------------------------------------------------------- /ldlidar_driver/include/slbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/include/slbf.h -------------------------------------------------------------------------------- /ldlidar_driver/src/ldlidar_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/src/ldlidar_driver.cpp -------------------------------------------------------------------------------- /ldlidar_driver/src/lipkg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/src/lipkg.cpp -------------------------------------------------------------------------------- /ldlidar_driver/src/log_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/src/log_module.cpp -------------------------------------------------------------------------------- /ldlidar_driver/src/serial_interface_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/src/serial_interface_linux.cpp -------------------------------------------------------------------------------- /ldlidar_driver/src/sl_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/src/sl_transform.cpp -------------------------------------------------------------------------------- /ldlidar_driver/src/slbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/ldlidar_driver/src/slbf.cpp -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/package.xml -------------------------------------------------------------------------------- /rviz2/ldlidar.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/rviz2/ldlidar.rviz -------------------------------------------------------------------------------- /scripts/create_udev_rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/scripts/create_udev_rules.sh -------------------------------------------------------------------------------- /scripts/delete_udev_rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/scripts/delete_udev_rules.sh -------------------------------------------------------------------------------- /scripts/ldlidar.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/scripts/ldlidar.rules -------------------------------------------------------------------------------- /src/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldrobotSensorTeam/ldlidar_sl_ros2/HEAD/src/demo.cpp --------------------------------------------------------------------------------