Brian Silverman | 890a32a | 2018-03-11 15:41:56 -0700 | [diff] [blame^] | 1 | #pragma once |
2 | |||||
3 | namespace ctre { | ||||
4 | namespace phoenix { | ||||
5 | |||||
6 | enum CANifierVelocityMeasPeriod { | ||||
7 | Period_1Ms = 1, | ||||
8 | Period_2Ms = 2, | ||||
9 | Period_5Ms = 5, | ||||
10 | Period_10Ms = 10, | ||||
11 | Period_20Ms = 20, | ||||
12 | Period_25Ms = 25, | ||||
13 | Period_50Ms = 50, | ||||
14 | Period_100Ms = 100, | ||||
15 | }; | ||||
16 | |||||
17 | } // namespace phoenix | ||||
18 | } // namespace ctre |