fix:fix directory tree bug

This commit is contained in:
Livox-SDK
2019-04-08 22:12:48 +08:00
parent 844dd85fe8
commit 9b3d06534f

View File

@@ -1,64 +1,26 @@
The following portions of the LIVOXs Livox SDK (“Software” referred to in the terms below) are made available to you under the terms of the MIT License provided below. The following portions of the LIVOXs Livox SDK (“Software” referred to in the terms below) are made available to you under the terms of the MIT License provided below.
Livox-SDK livox_ros_driver
├── CMakeLists.txt ├── LICENSE.txt
├── sample ├── livox_ros_driver
│   ├── hub │   ├── CMakeLists.txt
│   │   ├── CMakeLists.txt │   ├── config
│   │   ── main.c │   │   ── display_hub_points.rviz
│   └── lidar │   │   └── display_lidar_points.rviz
│   ├── CMakeLists.txt │   ├── launch
│   └── main.c │   │   ├── livox_hub.launch
└── sdk_core │   │   ├── livox_hub_msg.launch
├── CMakeLists.txt │   │   ├── livox_hub_rviz.launch
├── include │   │   ├── livox_lidar.launch
│   ├── comm │   │   ├── livox_lidar_msg.launch
│   │   ── comm_port.h │   │   ── livox_lidar_rviz.launch
│   │   └── protocol.h │   ├── livox_hub.cpp
│   ├── livox_def.h │   ├── livox_lidar.cpp
│   ── livox_sdk.h │   ── msg
└── src │   │   ├── CustomMsg.msg
├── base │   │   └── CustomPoint.msg
│   ── command_callback.h │   ── package.xml
│   ├── io_loop.cpp └── README.md
│   ├── io_loop.h
│   ├── io_thread.cpp
│   ├── io_thread.h
│   ├── logging.h
│   ├── network_util.cpp
│   ├── network_util.h
│   ├── noncopyable.h
│   ├── thread_base.cpp
│   ├── thread_base.h
│   ├── util.cpp
│   └── util.h
├── comm
│   ├── comm_port.cpp
│   ├── sdk_protocol.cpp
│   └── sdk_protocol.h
├── command_handler
│   ├── command_channel.cpp
│   ├── command_channel.h
│   ├── command_handler.cpp
│   ├── command_handler.h
│   ├── command_impl.cpp
│   ├── command_impl.h
│   ├── hub_command_handler.cpp
│   ├── hub_command_handler.h
│   ├── lidar_command_handler.cpp
│   └── lidar_command_handler.h
├── data_handler
│   ├── data_handler.cpp
│   ├── data_handler.h
│   ├── hub_data_handler.cpp
│   ├── hub_data_handler.h
│   ├── lidar_data_handler.cpp
│   └── lidar_data_handler.h
├── device_discovery.cpp
├── device_discovery.h
├── device_manager.cpp
├── device_manager.h
└── livox_sdk.cpp
------------------------------------------------------------- -------------------------------------------------------------