gyro_factory.h 249 B

12345678910111213141516
  1. #ifndef __GYRO_FACTORY_H__
  2. #define __GYRO_FACTORY_H__
  3. #include "gyroscope.h"
  4. #include "cust_gyro.h"
  5. extern struct gyro_context *gyro_context_obj;
  6. #define SETCALI 1
  7. #define CLRCALI 2
  8. #define GETCALI 3
  9. int gyro_factory_device_init(void);
  10. #endif