24 lines
412 B
C
24 lines
412 B
C
/*
|
|
$License:
|
|
Copyright (C) 2011-2012 InvenSense Corporation, All Rights Reserved.
|
|
See included License.txt for License information.
|
|
$
|
|
*/
|
|
|
|
|
|
#ifndef INV_MPL_H__
|
|
#define INV_MPL_H__
|
|
#include "mltypes.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
inv_error_t inv_init_mpl(void);
|
|
inv_error_t inv_start_mpl(void);
|
|
inv_error_t inv_get_version(char **version);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // INV_MPL_H__
|