imu_t.h 200 B

12345678910111213
  1. #ifndef IMU_T_H /* Include guard */
  2. #define IMU_T_H
  3. struct imu_t
  4. {
  5. unsigned int address;
  6. bool (*begin)(void);
  7. void (*end)(void);
  8. int (*read)(double* vec);
  9. char* name;
  10. };
  11. #endif