https://github.com/duckietown/Software
Raw File
Tip revision: 6ae253f4020baeff82fd1f080203d767f4e03005 authored by Liam Paull on 14 April 2019, 20:46:01 UTC
lane controller launch file update to not need machines file or drivers
Tip revision: 6ae253f
Makefile.log.mk
logs:
	@echo "$(sep)Demos"
	@echo
	@echo "These are Makefiles for taking logs"

log-minimal: check-environment
	@read -p "Institution? (UdM, NCTU, ETHZ, TTIC): " institution; \
	. ${DUCKIETOWN_ROOT}/environment.sh; \
	. ${DUCKIETOWN_ROOT}/set_ros_master.sh; \
        . ${DUCKIETOWN_ROOT}/set_vehicle_name.sh; \
	roslaunch duckietown make_log.launch veh:=$(vehicle_name) institution:=$$institution

log-full: check-environment
	@read -p "Institution? (UdM, NCTU, ETHZ, TTIC): " institution; \
	. ${DUCKIETOWN_ROOT}/environment.sh; \
	. ${DUCKIETOWN_ROOT}/set_ros_master.sh; \
        . ${DUCKIETOWN_ROOT}/set_vehicle_name.sh; \
	rosbag record -a -o /media/logs/$(vehicle_name)_$$institution

log-minimal-docker: check-environment
	roslaunch duckietown make_log_docker.launch veh:=$(vehicle_name)

log-full-docker: check-environment
	rosbag record -a -o /logs/$(vehicle_name)
back to top