-
Notifications
You must be signed in to change notification settings - Fork 10
/
Define.h
50 lines (46 loc) · 969 Bytes
/
Define.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
*********************************************************************************
*
*版权:黄凯
*
*********************************************************************************
*
*创建人:黄凯
*创建时间:2015.05.06
*
*********************************************************************************
*
*功能描述:用于存储所有宏定义
*
*********************************************************************************
*
*
*
*********************************************************************************
*/
#ifndef _DEFINE_H
#define _DEFINE_H
/**
* 数量宏定义
*
*/
#define FINS_FRAME_COUNT 10
#define CMD_FINS_0101 101
#define CMD_FINS_0102 102
#define FINS_MAX_CH 900
#define PLCDATA_ERROR -5
#define OMRON_NA 1E+308
/**
* 字符定义
*
*/
#define KOUMOKU_AI 1L
#define KOUMOKU_AO 2L
#define KOUMOKU_DI 8L
#define KOUMOKU_DO 9L
/**
* 命名空间宏定义
*
*/
#define USING_OMRAN_NAMESPACE using namespace Omron;
#endif //_DEFINE_H