Cosmo-Z Library
2.0.5
src
driver.h
1
/*
2
* driver.h
3
*
4
* Created on: 2017/10/08
5
* Author: user
6
*/
7
8
#ifndef SRC_DRIVER_H_
9
#define SRC_DRIVER_H_
10
11
#include <stdint.h>
// uint32_tなどの定義
12
13
#include "register.h"
// レジスタ番号の読み込み
14
15
// ユーザ非公開のAPI関数
16
#if __cplusplus
17
extern
"C"
{
18
#endif
19
20
BOOL
csz_driver_open(uint32_t *version);
21
void
csz_driver_close();
22
23
#if __cplusplus
24
}
25
#endif
26
27
#endif
/* SRC_DRIVER_H_ */
BOOL
#define BOOL
C言語ではBOOLがないのでintでtypedefしておく
Definition:
cosmoz.h:31
構築:
1.8.14