mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-03 03:01:44 +00:00
[docs] Add missing docs to enum fields (NFC) (#6150)
Co-authored-by: Tyler Veness <calcmogul@gmail.com>
This commit is contained in:
@@ -23,12 +23,19 @@ class RobotDriveBase : public MotorSafety {
|
||||
* The location of a motor on the robot for the purpose of driving.
|
||||
*/
|
||||
enum MotorType {
|
||||
/// Front-left motor.
|
||||
kFrontLeft = 0,
|
||||
/// Front-right motor.
|
||||
kFrontRight = 1,
|
||||
/// Rear-left motor.
|
||||
kRearLeft = 2,
|
||||
/// Rear-right motor.
|
||||
kRearRight = 3,
|
||||
/// Left motor.
|
||||
kLeft = 0,
|
||||
/// Right motor.
|
||||
kRight = 1,
|
||||
/// Back motor.
|
||||
kBack = 2
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user