├── .gitignore ├── CMakeLists.txt ├── README ├── README.md ├── changelog ├── conf ├── CMakeLists.txt └── ros.conf.remake ├── copyright └── src ├── CMakeLists.txt └── pure_pursuit_controller ├── CMakeLists.txt ├── bin ├── CMakeLists.txt └── pure_pursuit_controller_node.cpp ├── conf ├── CMakeLists.txt └── pure_pursuit_controller.yaml ├── launch ├── CMakeLists.txt └── pure_pursuit_controller.launch └── lib ├── CMakeLists.txt ├── PurePursuitControllerNode.cpp └── PurePursuitControllerNode.h /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/README.md -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/changelog -------------------------------------------------------------------------------- /conf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/conf/CMakeLists.txt -------------------------------------------------------------------------------- /conf/ros.conf.remake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/conf/ros.conf.remake -------------------------------------------------------------------------------- /copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/copyright -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/pure_pursuit_controller/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | remake_add_directories(bin conf launch lib) 2 | -------------------------------------------------------------------------------- /src/pure_pursuit_controller/bin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/src/pure_pursuit_controller/bin/CMakeLists.txt -------------------------------------------------------------------------------- /src/pure_pursuit_controller/bin/pure_pursuit_controller_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/src/pure_pursuit_controller/bin/pure_pursuit_controller_node.cpp -------------------------------------------------------------------------------- /src/pure_pursuit_controller/conf/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | remake_add_configurations(*.yaml) 2 | -------------------------------------------------------------------------------- /src/pure_pursuit_controller/conf/pure_pursuit_controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/src/pure_pursuit_controller/conf/pure_pursuit_controller.yaml -------------------------------------------------------------------------------- /src/pure_pursuit_controller/launch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/src/pure_pursuit_controller/launch/CMakeLists.txt -------------------------------------------------------------------------------- /src/pure_pursuit_controller/launch/pure_pursuit_controller.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/src/pure_pursuit_controller/launch/pure_pursuit_controller.launch -------------------------------------------------------------------------------- /src/pure_pursuit_controller/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/src/pure_pursuit_controller/lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/pure_pursuit_controller/lib/PurePursuitControllerNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/src/pure_pursuit_controller/lib/PurePursuitControllerNode.cpp -------------------------------------------------------------------------------- /src/pure_pursuit_controller/lib/PurePursuitControllerNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmaye/pure-pursuit-controller-ros/HEAD/src/pure_pursuit_controller/lib/PurePursuitControllerNode.h --------------------------------------------------------------------------------