WPILibC++ 2024.3.2
RuntimeType.h
Go to the documentation of this file.
1// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
4
5#pragma once
6
7namespace frc {
8/**
9 * Runtime type.
10 */
12 /// roboRIO 1.0.
14 /// roboRIO 2.0.
16 /// Simulation runtime.
18};
19} // namespace frc
Definition: AprilTagPoseEstimator.h:15
RuntimeType
Runtime type.
Definition: RuntimeType.h:11
@ kRoboRIO2
roboRIO 2.0.
Definition: RuntimeType.h:15
@ kRoboRIO
roboRIO 1.0.
Definition: RuntimeType.h:13
@ kSimulation
Simulation runtime.
Definition: RuntimeType.h:17