blob: 4dea38b26486e97cbe26dce4933b9373c23b02b2 [file] [log] [blame]
Diana Vandenberg223703d2017-01-28 17:39:53 -08001#ifndef Y2017_CONTROL_LOOPS_DRIVETRAIN_DRIVETRAIN_BASE_H_
2#define Y2017_CONTROL_LOOPS_DRIVETRAIN_DRIVETRAIN_BASE_H_
3
4#include "frc971/control_loops/drivetrain/drivetrain_config.h"
5
6namespace y2017 {
Austin Schuhaab05dc2017-02-04 22:13:38 -08007namespace constants {
8// The ratio from the encoder shaft to the drivetrain wheels.
9static constexpr double kDrivetrainEncoderRatio = 1.0;
10
11} // namespace constants
Diana Vandenberg223703d2017-01-28 17:39:53 -080012namespace control_loops {
13namespace drivetrain {
Diana Vandenberg223703d2017-01-28 17:39:53 -080014const ::frc971::control_loops::drivetrain::DrivetrainConfig &
15GetDrivetrainConfig();
16
17} // namespace drivetrain
18} // namespace control_loops
19} // namespace y2017
20
21#endif // Y2017_CONTROL_LOOPS_DRIVETRAIN_DRIVETRAIN_BASE_H_