You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
170B

  1. #ifndef UserDataType_h
  2. #define UserDataType_h
  3. const uint8_t ACCEL_DIM = 3;
  4. struct data_t {
  5. unsigned long time;
  6. int16_t accel[ACCEL_DIM];
  7. };
  8. #endif // UserDataType_h