forked from rchovan/npreal2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nport.h
36 lines (28 loc) · 805 Bytes
/
nport.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
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <time.h>
#include <unistd.h>
#include <sys/timeb.h>
#include <sys/time.h>
#include <sys/types.h>
#define TRUE 1
#define FALSE 0
#define SEARCH_TIMEOUT 100
#define SEARCH_RETRY_CNT 30
#define MAX_DEVICE_NUM 10
#define TEMPDIR "/tmp/moxa"
#define NPPATH "/usr/lib/npreal2"
#define DRIVERPATH "/usr/lib/npreal2/driver"
#define NP5210 0x0322
#define NP5230 0x0312
#define NP5410 0x0504
#define NP5430 0x0534
#define NP5610_8 0x5618
#define NP5610_16 0x5613
//#define _DEBUG_PRINT 1
#ifdef _DEBUG_PRINT
#define DBG_PRINT printf
#else
#define DBG_PRINT if (0) printf
#endif