Home | History | Annotate | Download | only in linux
      1 /*
      2  $License:
      3     Copyright (C) 2012 InvenSense Corporation, All Rights Reserved.
      4  $
      5  */
      6 
      7 /*******************************************************************************
      8  *
      9  * $Id:$
     10  *
     11  ******************************************************************************/
     12 
     13 #ifndef INV_LOAD_DMP_H
     14 #define INV_LOAD_DMP_H
     15 
     16 #ifdef __cplusplus
     17 extern "C" {
     18 #endif
     19 
     20 /*
     21     Includes.
     22 */
     23 #include "mltypes.h"
     24 
     25 /*
     26     APIs
     27 */
     28 inv_error_t inv_load_dmp(FILE  *fd);
     29 void read_dmp_img(char *dmp_path, char *out_file);
     30 
     31 #ifdef __cplusplus
     32 }
     33 #endif
     34 #endif  /* INV_LOAD_DMP_H */
     35