Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 1 | #include "frc971/wpilib/ADIS16448.h" |
| 2 | |
| 3 | #include "InterruptableSensorBase.h" |
| 4 | #undef ERROR |
| 5 | |
| 6 | #include <inttypes.h> |
| 7 | #include <math.h> |
| 8 | |
| 9 | #include "aos/common/logging/queue_logging.h" |
| 10 | #include "aos/common/time.h" |
| 11 | #include "aos/linux_code/init.h" |
| 12 | |
| 13 | #include "frc971/wpilib/imu.q.h" |
| 14 | |
| 15 | namespace frc971 { |
| 16 | namespace wpilib { |
| 17 | |
| 18 | template <uint8_t size> |
| 19 | bool ADIS16448::DoTransaction(uint8_t to_send[size], uint8_t to_receive[size]) { |
| 20 | switch (spi_->Transaction(to_send, to_receive, size)) { |
| 21 | case -1: |
| 22 | LOG(INFO, "SPI::Transaction of %zd bytes failed\n", size); |
| 23 | return false; |
| 24 | case size: |
| 25 | return true; |
| 26 | default: |
| 27 | LOG(FATAL, "SPI::Transaction returned something weird\n"); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | namespace { |
| 32 | |
| 33 | // Addresses pulled out of the documentation. |
| 34 | constexpr uint8_t kMscCtrlAddress = 0x34; |
| 35 | constexpr uint8_t kSmplPrdAddress = 0x36; |
| 36 | constexpr uint8_t kDiagStatAddress = 0x3C; |
| 37 | constexpr uint8_t kGlobalReadAddress = 0x3E; |
| 38 | constexpr uint8_t kLotId1Address = 0x52; |
| 39 | constexpr uint8_t kLotId2Address = 0x54; |
| 40 | constexpr uint8_t kProdIdAddress = 0x56; |
| 41 | constexpr uint8_t kSerialNumberAddress = 0x58; |
| 42 | |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 43 | // degree/second/LSB for the gyros. |
| 44 | constexpr double kGyroLsbDegreeSecond = 1.0 / 25.0; |
| 45 | // G/LSB for the accelerometers. |
| 46 | constexpr double kAccelerometerLsbG = 1.0 / 1200.0; |
| 47 | // gauss/LSB for the magnetometers. |
| 48 | constexpr double kMagnetometerLsbGauss = |
| 49 | 1.0 / (7.0 / 1000.0) /* mgauss to gauss */; |
| 50 | // bar/LSB for the barometer. |
| 51 | constexpr double kBarometerLsbPascal = 0.02 * 100; |
| 52 | // degree/LSB C for the temperature sensor. |
| 53 | constexpr double kTemperatureLsbDegree = 0.07386; |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 54 | // Degrees C corresponding to 0 for the temperature sensor. |
| 55 | constexpr double kTemperatureZero = 31; |
| 56 | |
| 57 | // From somebody online who says this works with the sensor. I don't feel like |
| 58 | // re-deriving this, and I can't find what all the CRC parameters are supposed |
| 59 | // to be. |
| 60 | const uint16_t kCrcTable[256] = { |
| 61 | 0x0000, 0x17CE, 0x0FDF, 0x1811, 0x1FBE, 0x0870, 0x1061, 0x07AF, 0x1F3F, |
| 62 | 0x08F1, 0x10E0, 0x072E, 0x0081, 0x174F, 0x0F5E, 0x1890, 0x1E3D, 0x09F3, |
| 63 | 0x11E2, 0x062C, 0x0183, 0x164D, 0x0E5C, 0x1992, 0x0102, 0x16CC, 0x0EDD, |
| 64 | 0x1913, 0x1EBC, 0x0972, 0x1163, 0x06AD, 0x1C39, 0x0BF7, 0x13E6, 0x0428, |
| 65 | 0x0387, 0x1449, 0x0C58, 0x1B96, 0x0306, 0x14C8, 0x0CD9, 0x1B17, 0x1CB8, |
| 66 | 0x0B76, 0x1367, 0x04A9, 0x0204, 0x15CA, 0x0DDB, 0x1A15, 0x1DBA, 0x0A74, |
| 67 | 0x1265, 0x05AB, 0x1D3B, 0x0AF5, 0x12E4, 0x052A, 0x0285, 0x154B, 0x0D5A, |
| 68 | 0x1A94, 0x1831, 0x0FFF, 0x17EE, 0x0020, 0x078F, 0x1041, 0x0850, 0x1F9E, |
| 69 | 0x070E, 0x10C0, 0x08D1, 0x1F1F, 0x18B0, 0x0F7E, 0x176F, 0x00A1, 0x060C, |
| 70 | 0x11C2, 0x09D3, 0x1E1D, 0x19B2, 0x0E7C, 0x166D, 0x01A3, 0x1933, 0x0EFD, |
| 71 | 0x16EC, 0x0122, 0x068D, 0x1143, 0x0952, 0x1E9C, 0x0408, 0x13C6, 0x0BD7, |
| 72 | 0x1C19, 0x1BB6, 0x0C78, 0x1469, 0x03A7, 0x1B37, 0x0CF9, 0x14E8, 0x0326, |
| 73 | 0x0489, 0x1347, 0x0B56, 0x1C98, 0x1A35, 0x0DFB, 0x15EA, 0x0224, 0x058B, |
| 74 | 0x1245, 0x0A54, 0x1D9A, 0x050A, 0x12C4, 0x0AD5, 0x1D1B, 0x1AB4, 0x0D7A, |
| 75 | 0x156B, 0x02A5, 0x1021, 0x07EF, 0x1FFE, 0x0830, 0x0F9F, 0x1851, 0x0040, |
| 76 | 0x178E, 0x0F1E, 0x18D0, 0x00C1, 0x170F, 0x10A0, 0x076E, 0x1F7F, 0x08B1, |
| 77 | 0x0E1C, 0x19D2, 0x01C3, 0x160D, 0x11A2, 0x066C, 0x1E7D, 0x09B3, 0x1123, |
| 78 | 0x06ED, 0x1EFC, 0x0932, 0x0E9D, 0x1953, 0x0142, 0x168C, 0x0C18, 0x1BD6, |
| 79 | 0x03C7, 0x1409, 0x13A6, 0x0468, 0x1C79, 0x0BB7, 0x1327, 0x04E9, 0x1CF8, |
| 80 | 0x0B36, 0x0C99, 0x1B57, 0x0346, 0x1488, 0x1225, 0x05EB, 0x1DFA, 0x0A34, |
| 81 | 0x0D9B, 0x1A55, 0x0244, 0x158A, 0x0D1A, 0x1AD4, 0x02C5, 0x150B, 0x12A4, |
| 82 | 0x056A, 0x1D7B, 0x0AB5, 0x0810, 0x1FDE, 0x07CF, 0x1001, 0x17AE, 0x0060, |
| 83 | 0x1871, 0x0FBF, 0x172F, 0x00E1, 0x18F0, 0x0F3E, 0x0891, 0x1F5F, 0x074E, |
| 84 | 0x1080, 0x162D, 0x01E3, 0x19F2, 0x0E3C, 0x0993, 0x1E5D, 0x064C, 0x1182, |
| 85 | 0x0912, 0x1EDC, 0x06CD, 0x1103, 0x16AC, 0x0162, 0x1973, 0x0EBD, 0x1429, |
| 86 | 0x03E7, 0x1BF6, 0x0C38, 0x0B97, 0x1C59, 0x0448, 0x1386, 0x0B16, 0x1CD8, |
| 87 | 0x04C9, 0x1307, 0x14A8, 0x0366, 0x1B77, 0x0CB9, 0x0A14, 0x1DDA, 0x05CB, |
| 88 | 0x1205, 0x15AA, 0x0264, 0x1A75, 0x0DBB, 0x152B, 0x02E5, 0x1AF4, 0x0D3A, |
| 89 | 0x0A95, 0x1D5B, 0x054A, 0x1284}; |
| 90 | |
| 91 | uint16_t CalculateCrc(const uint8_t *data, size_t data_length) { |
| 92 | uint16_t crc = 0xFFFF; |
| 93 | uint16_t byte; |
| 94 | |
| 95 | while (data_length--) { |
| 96 | // Compute lower byte CRC first. |
| 97 | byte = data[1]; |
| 98 | crc = (crc >> 8) ^ kCrcTable[(crc & 0x00FF) ^ byte]; |
| 99 | // Compute upper byte of CRC. |
| 100 | byte = data[0]; |
| 101 | crc = (crc >> 8) ^ kCrcTable[(crc & 0x00FF) ^ byte]; |
| 102 | data += 2; |
| 103 | } |
| 104 | crc = ~crc; // Compute complement of CRC |
| 105 | return static_cast<uint16_t>( |
| 106 | (crc << 8) | (crc >> 8)); // Perform byte swap prior to returning CRC; |
| 107 | } |
| 108 | |
| 109 | } // namespace |
| 110 | |
| 111 | ADIS16448::ADIS16448(SPI::Port port, DigitalInput *dio1) |
| 112 | : spi_(new SPI(port)), dio1_(dio1) { |
| 113 | // 1MHz is the maximum supported for burst reads. |
| 114 | spi_->SetClockRate(1e6); |
| 115 | spi_->SetChipSelectActiveLow(); |
| 116 | spi_->SetClockActiveLow(); |
| 117 | spi_->SetSampleDataOnFalling(); |
| 118 | spi_->SetMSBFirst(); |
| 119 | |
| 120 | dio1_->RequestInterrupts(); |
| 121 | dio1_->SetUpSourceEdge(true, false); |
| 122 | } |
| 123 | |
| 124 | void ADIS16448::operator()() { |
| 125 | ::aos::SetCurrentThreadName("IMU"); |
| 126 | |
| 127 | // Try to initialize repeatedly as long as we're supposed to be running. |
| 128 | while (run_ && !Initialize()) { |
| 129 | ::aos::time::SleepFor(::aos::time::Time::InMS(50)); |
| 130 | } |
| 131 | LOG(INFO, "IMU initialized successfully\n"); |
| 132 | |
| 133 | bool got_an_interrupt = false; |
| 134 | while (run_) { |
| 135 | { |
| 136 | const InterruptableSensorBase::WaitResult result = |
| 137 | dio1_->WaitForInterrupt(0.1, !got_an_interrupt); |
| 138 | if (result == InterruptableSensorBase::kTimeout) { |
| 139 | LOG(WARNING, "IMU read timed out\n"); |
| 140 | continue; |
| 141 | } |
| 142 | } |
| 143 | got_an_interrupt = true; |
| 144 | const ::aos::time::Time read_time = ::aos::time::Time::Now(); |
| 145 | |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 146 | uint8_t to_send[2 * 14], to_receive[2 * 14]; |
| 147 | memset(&to_send[0], 0, sizeof(to_send)); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 148 | to_send[0] = kGlobalReadAddress; |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 149 | if (!DoTransaction<2 * 14>(to_send, to_receive)) continue; |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 150 | |
| 151 | // If it's false now or another edge happened, then we're in trouble. This |
| 152 | // won't catch all instances of being a little bit slow (because of the |
| 153 | // interrupt delay among other things), but it will catch the code |
| 154 | // constantly falling behind, which seems like the most likely failure |
| 155 | // scenario. |
| 156 | if (!dio1_->Get() || |
| 157 | dio1_->WaitForInterrupt(0, false) != |
| 158 | InterruptableSensorBase::kTimeout) { |
| 159 | LOG(ERROR, "IMU read took too long\n"); |
| 160 | continue; |
| 161 | } |
| 162 | |
| 163 | { |
| 164 | const uint16_t calculated_crc = CalculateCrc(&to_receive[4], 11); |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 165 | uint16_t received_crc = |
| 166 | to_receive[13 * 2 + 1] | (to_receive[13 * 2] << 8); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 167 | if (received_crc != calculated_crc) { |
| 168 | LOG(WARNING, "received CRC %" PRIx16 " but calculated %" PRIx16 "\n", |
| 169 | received_crc, calculated_crc); |
| 170 | continue; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | { |
| 175 | uint16_t diag_stat; |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 176 | memcpy(&diag_stat, &to_receive[2], 2); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 177 | if (!CheckDiagStatValue(diag_stat)) continue; |
| 178 | } |
| 179 | |
| 180 | auto message = imu_values.MakeMessage(); |
| 181 | message->fpga_timestamp = dio1_->ReadRisingTimestamp(); |
| 182 | message->monotonic_timestamp_ns = read_time.ToNSec(); |
| 183 | |
| 184 | message->gyro_x = |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 185 | ConvertValue(&to_receive[4], kGyroLsbDegreeSecond * M_PI / 180.0); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 186 | message->gyro_y = |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 187 | ConvertValue(&to_receive[6], kGyroLsbDegreeSecond * M_PI / 180.0); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 188 | message->gyro_z = |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 189 | ConvertValue(&to_receive[8], kGyroLsbDegreeSecond * M_PI / 180.0); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 190 | |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 191 | message->accelerometer_x = |
| 192 | ConvertValue(&to_receive[10], kAccelerometerLsbG); |
| 193 | message->accelerometer_y = |
| 194 | ConvertValue(&to_receive[12], kAccelerometerLsbG); |
| 195 | message->accelerometer_z = |
| 196 | ConvertValue(&to_receive[14], kAccelerometerLsbG); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 197 | |
| 198 | message->magnetometer_x = |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 199 | ConvertValue(&to_receive[16], kMagnetometerLsbGauss); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 200 | message->magnetometer_y = |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 201 | ConvertValue(&to_receive[18], kMagnetometerLsbGauss); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 202 | message->magnetometer_z = |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 203 | ConvertValue(&to_receive[20], kMagnetometerLsbGauss); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 204 | |
| 205 | message->barometer = |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 206 | ConvertValue(&to_receive[22], kBarometerLsbPascal, false); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 207 | |
| 208 | message->temperature = |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 209 | ConvertValue(&to_receive[24], kTemperatureLsbDegree) + kTemperatureZero; |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 210 | |
| 211 | LOG_STRUCT(DEBUG, "sending", *message); |
| 212 | if (!message.Send()) { |
| 213 | LOG(WARNING, "sending queue message failed\n"); |
| 214 | } |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | float ADIS16448::ConvertValue(uint8_t *data, double lsb_per_output, bool sign) { |
| 219 | double value; |
| 220 | if (sign) { |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 221 | int16_t raw_value = static_cast<int16_t>( |
| 222 | (static_cast<uint16_t>(data[0]) << 8) | static_cast<uint16_t>(data[1])); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 223 | value = raw_value; |
| 224 | } else { |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 225 | uint16_t raw_value = |
| 226 | (static_cast<uint16_t>(data[0]) << 8) | static_cast<uint16_t>(data[1]); |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 227 | value = raw_value; |
| 228 | } |
| 229 | return value * lsb_per_output; |
| 230 | } |
| 231 | |
| 232 | bool ADIS16448::ReadRegister(uint8_t next_address, uint16_t *value) { |
| 233 | uint8_t to_send[2], to_receive[2]; |
| 234 | to_send[0] = next_address; |
| 235 | to_send[1] = 0; |
| 236 | |
| 237 | if (!DoTransaction<2>(to_send, to_receive)) return false; |
| 238 | |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 239 | if (value) { |
| 240 | memcpy(value, to_receive, 2); |
| 241 | } |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 242 | return true; |
| 243 | } |
| 244 | |
| 245 | bool ADIS16448::WriteRegister(uint8_t address, uint16_t value) { |
| 246 | uint8_t to_send[4], to_receive[4]; |
| 247 | to_send[0] = address | 0x80; |
| 248 | to_send[1] = value & 0xFF; |
| 249 | to_send[2] = address | 0x81; |
| 250 | to_send[3] = value >> 8; |
| 251 | if (!DoTransaction<4>(to_send, to_receive)) return false; |
| 252 | return true; |
| 253 | } |
| 254 | |
| 255 | bool ADIS16448::CheckDiagStatValue(uint16_t value) const { |
| 256 | bool r = true; |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 257 | if (value & (1 << 2)) { |
| 258 | LOG(WARNING, "IMU gave flash update failure\n"); |
| 259 | } |
| 260 | if (value & (1 << 3)) { |
| 261 | LOG(WARNING, "IMU gave SPI communication failure\n"); |
| 262 | } |
| 263 | if (value & (1 << 4)) { |
| 264 | LOG(WARNING, "IMU gave sensor overrange\n"); |
| 265 | } |
| 266 | if (value & (1 << 5)) { |
| 267 | LOG(WARNING, "IMU gave self-test failure\n"); |
| 268 | r = false; |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 269 | if (value & (1 << 10)) { |
| 270 | LOG(WARNING, "IMU gave X-axis gyro self-test failure\n"); |
| 271 | } |
| 272 | if (value & (1 << 11)) { |
| 273 | LOG(WARNING, "IMU gave Y-axis gyro self-test failure\n"); |
| 274 | } |
| 275 | if (value & (1 << 12)) { |
| 276 | LOG(WARNING, "IMU gave Z-axis gyro self-test failure\n"); |
| 277 | } |
| 278 | if (value & (1 << 13)) { |
| 279 | LOG(WARNING, "IMU gave X-axis accelerometer self-test failure\n"); |
| 280 | } |
| 281 | if (value & (1 << 14)) { |
| 282 | LOG(WARNING, "IMU gave Y-axis accelerometer self-test failure\n"); |
| 283 | } |
| 284 | if (value & (1 << 15)) { |
| 285 | LOG(WARNING, "IMU gave Z-axis accelerometer self-test failure, %x\n", |
| 286 | value); |
| 287 | } |
| 288 | if (value & (1 << 0)) { |
| 289 | LOG(WARNING, "IMU gave magnetometer functional test failure\n"); |
| 290 | } |
| 291 | if (value & (1 << 1)) { |
| 292 | LOG(WARNING, "IMU gave barometer functional test failure\n"); |
| 293 | } |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 294 | } |
| 295 | if (value & (1 << 6)) { |
| 296 | LOG(WARNING, "IMU gave flash test checksum failure\n"); |
| 297 | } |
| 298 | if (value & (1 << 8)) { |
| 299 | LOG(WARNING, "IMU says alarm 1 is active\n"); |
| 300 | } |
| 301 | if (value & (1 << 9)) { |
| 302 | LOG(WARNING, "IMU says alarm 2 is active\n"); |
| 303 | } |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 304 | return r; |
| 305 | } |
| 306 | |
| 307 | bool ADIS16448::Initialize() { |
| 308 | if (!ReadRegister(kProdIdAddress, nullptr)) return false; |
| 309 | uint16_t product_id; |
| 310 | if (!ReadRegister(kLotId1Address, &product_id)) return false; |
| 311 | if (product_id != 0x4040) { |
| 312 | LOG(ERROR, "product ID is %" PRIx16 " instead of 0x4040\n", product_id); |
| 313 | return false; |
| 314 | } |
| 315 | |
| 316 | uint16_t lot_id1, lot_id2, serial_number; |
| 317 | if (!ReadRegister(kLotId2Address, &lot_id1)) return false; |
| 318 | if (!ReadRegister(kSerialNumberAddress, &lot_id2)) return false; |
| 319 | if (!ReadRegister(0, &serial_number)) return false; |
| 320 | LOG(INFO, "have IMU %" PRIx16 "%" PRIx16 ": %" PRIx16 "\n", lot_id1, lot_id2, |
| 321 | serial_number); |
| 322 | |
| 323 | // Divide the sampling by 2^2 = 4 to get 819.2 / 4 = 204.8 Hz. |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 324 | if (!WriteRegister(kSmplPrdAddress, (2 << 8) | 1)) return false; |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 325 | |
| 326 | // Start a self test. |
| 327 | if (!WriteRegister(kMscCtrlAddress, 1 << 10)) return false; |
| 328 | // Wait for the self test to finish. |
| 329 | { |
| 330 | uint16_t value; |
| 331 | do { |
| 332 | ::aos::time::SleepFor(::aos::time::Time::InMS(10)); |
| 333 | if (!ReadRegister(kMscCtrlAddress, &value)) return false; |
| 334 | } while ((value & (1 << 10)) != 0); |
| 335 | } |
| 336 | |
| 337 | if (!ReadRegister(kDiagStatAddress, nullptr)) return false; |
| 338 | uint16_t diag_stat; |
| 339 | if (!ReadRegister(0, &diag_stat)) return false; |
| 340 | if (!CheckDiagStatValue(diag_stat)) return false; |
| 341 | |
| 342 | if (!WriteRegister(kMscCtrlAddress, |
| 343 | ((0 << 0) | // DIO1 |
| 344 | (1 << 1) | // DIO goes high when data is valid |
| 345 | (1 << 2) | // enable DIO changing when data is vald |
Austin Schuh | 871a136 | 2016-04-02 12:25:00 -0700 | [diff] [blame^] | 346 | (1 << 4) | // enable CRC16 for burst mode |
| 347 | (1 << 6)))) { |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 348 | return false; |
| 349 | } |
| 350 | return true; |
| 351 | } |
| 352 | |
| 353 | } // namespace wpilib |
| 354 | } // namespace frc971 |