97 lines
2.0 KiB
C
Executable File
97 lines
2.0 KiB
C
Executable File
/******************************************************************************
|
|
*
|
|
* $Id: FileIO.h 303 2011-08-12 04:22:45Z kihara.gb $
|
|
*
|
|
* -- Copyright Notice --
|
|
*
|
|
* Copyright (c) 2004 Asahi Kasei Microdevices Corporation, Japan
|
|
* All Rights Reserved.
|
|
*
|
|
* This software program is proprietary program of Asahi Kasei Microdevices
|
|
* Corporation("AKM") licensed to authorized Licensee under Software License
|
|
* Agreement (SLA) executed between the Licensee and AKM.
|
|
*
|
|
* Use of the software by unauthorized third party, or use of the software
|
|
* beyond the scope of the SLA is strictly prohibited.
|
|
*
|
|
* -- End Asahi Kasei Microdevices Copyright Notice --
|
|
*
|
|
******************************************************************************/
|
|
#ifndef AKMD_INC_FILEIO_H
|
|
#define AKMD_INC_FILEIO_H
|
|
|
|
// Common include files.
|
|
#include "AKCommon.h"
|
|
|
|
// Include file for AK8963 library.
|
|
#include "AKCompass.h"
|
|
|
|
/*** Constant definition ******************************************************/
|
|
#define DELIMITER " = "
|
|
|
|
/*** Type declaration *********************************************************/
|
|
|
|
/*** Global variables *********************************************************/
|
|
|
|
/*** Prototype of function ****************************************************/
|
|
int16 LoadParameters(AK8963PRMS* prms);
|
|
|
|
int16 LoadInt(
|
|
FILE* lpFile,
|
|
const char* lpKeyName,
|
|
int* val
|
|
);
|
|
|
|
int16 LoadInt16(
|
|
FILE* lpFile,
|
|
const char* lpKeyName,
|
|
int16* val
|
|
);
|
|
|
|
int16 LoadInt32(
|
|
FILE* lpFile,
|
|
const char* lpKeyName,
|
|
int32* val
|
|
);
|
|
|
|
int16 LoadInt16vec(
|
|
FILE* lpFile,
|
|
const char* lpKeyName,
|
|
int16vec* vec
|
|
);
|
|
|
|
int16 LoadInt32vec(
|
|
FILE* lpFile,
|
|
const char* lpKeyName,
|
|
int32vec* vec
|
|
);
|
|
|
|
int16 SaveParameters(AK8963PRMS* prms);
|
|
|
|
int16 SaveInt16(
|
|
FILE* lpFile,
|
|
const char* lpKeyName,
|
|
const int16 val
|
|
);
|
|
|
|
int16 SaveInt16vec(
|
|
FILE* lpFile,
|
|
const char* lpKeyName,
|
|
const int16vec* vec
|
|
);
|
|
|
|
int16 SaveInt32(
|
|
FILE* lpFile,
|
|
const char* lpKeyName,
|
|
const int32 val
|
|
);
|
|
|
|
int16 SaveInt32vec(
|
|
FILE* lpFile,
|
|
const char* lpKeyName,
|
|
const int32vec* vec
|
|
);
|
|
|
|
#endif
|
|
|