├── .gitignore ├── HARDWARE.md ├── LICENSE ├── LITERATURE.md ├── README.md ├── doc ├── NAMING.md └── PUBLICATION_PENDING.md └── res ├── figures ├── overview_toolbox.png └── repo_structure.png └── hardware ├── vehicle_captain_closed.jpeg ├── vehicle_captain_demo_board_closed.jpeg ├── vehicle_captain_dev_kit_gen3.png └── vehicle_captain_open.png /.gitignore: -------------------------------------------------------------------------------- 1 | # CLion config 2 | /.idea/ 3 | -------------------------------------------------------------------------------- /HARDWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/HARDWARE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /LITERATURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/LITERATURE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/README.md -------------------------------------------------------------------------------- /doc/NAMING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/doc/NAMING.md -------------------------------------------------------------------------------- /doc/PUBLICATION_PENDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/doc/PUBLICATION_PENDING.md -------------------------------------------------------------------------------- /res/figures/overview_toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/res/figures/overview_toolbox.png -------------------------------------------------------------------------------- /res/figures/repo_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/res/figures/repo_structure.png -------------------------------------------------------------------------------- /res/hardware/vehicle_captain_closed.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/res/hardware/vehicle_captain_closed.jpeg -------------------------------------------------------------------------------- /res/hardware/vehicle_captain_demo_board_closed.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/res/hardware/vehicle_captain_demo_board_closed.jpeg -------------------------------------------------------------------------------- /res/hardware/vehicle_captain_dev_kit_gen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/res/hardware/vehicle_captain_dev_kit_gen3.png -------------------------------------------------------------------------------- /res/hardware/vehicle_captain_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtual-vehicle/vehicle_captain_toolbox/HEAD/res/hardware/vehicle_captain_open.png --------------------------------------------------------------------------------