forked from VoxMi/MPU-9150
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathml.h
29 lines (25 loc) · 822 Bytes
/
ml.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
$License:
Copyright (C) 2011 InvenSense Corporation, All Rights Reserved.
$
*/
/**
* @defgroup ML
* @brief Motion Library APIs.
* The Motion Library processes gyroscopes, accelerometers, and
* compasses to provide a physical model of the movement for the
* sensors.
* The results of this processing may be used to control objects
* within a user interface environment, detect gestures, track 3D
* movement for gaming applications, and analyze the blur created
* due to hand movement while taking a picture.
*
* @{
* @file ml.h
* @brief Header file for the Motion Library.
*/
#ifndef _ML_H_
#define _ML_H_
#include <avr/io.h>
extern uint16_t inv_orientation_matrix_to_scalar(const int8_t *mtx);
#endif /* _ML_H_ */