Autonomous Racing  1
f1tenth Project Group of Technical University Dortmund, Germany
drive_mode.h
Go to the documentation of this file.
1 #pragma once
2 
3 enum class DriveMode : int
4 {
5  LOCKED = 0,
6  MANUAL = 1,
7  AUTONOMOUS = 2
8 };
DriveMode
Definition: drive_mode.h:3