blob: 16d6890c8a023df3e54b0754ceafe462279aebdd [file] [log] [blame]
brians343bc112013-02-10 01:53:46 +00001#ifndef __COMMON_SENSOR_VALUES_H_
2#define __COMMON_SENSOR_VALUES_H_
3
4#include <stdint.h>
5
6namespace frc971 {
7
8struct sensor_values {
9 union {
10 struct {
11 int32_t lencoder, rencoder;
12 };
13 uint32_t encoders[2];
14 };
15
16 // TODO(2013) all the rest
17};
18
19} // namespace frc971
20
21#endif
22