Mercurial > hg > fxanalyse
comparison KKFX80E.h @ 89:c9e4f63c2033
Implement data acquisition through direct communication with the KK counter
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Thu, 21 Mar 2013 19:00:22 +0100 |
parents | |
children | 4f1f353e84f5 |
comparison
equal
deleted
inserted
replaced
88:9b7588cd4013 | 89:c9e4f63c2033 |
---|---|
1 #ifndef __KKFX80E_H__ | |
2 #define __KKFX80E_H__ | |
3 | |
4 #ifdef __cplusplus | |
5 extern "C" { | |
6 #endif | |
7 | |
8 int FX_Init(void); | |
9 void FX_Free(void); | |
10 int FX_OpenPort(char **port); | |
11 void FX_ClosePort(void); | |
12 int FX_SendCommand(char **cmd); | |
13 int FX_GetReport(char **sep); | |
14 void FX_Debug(BOOL value); | |
15 | |
16 int FX_Open(char *port); | |
17 void FX_Close(void); | |
18 int FX_Send(char *cmd); | |
19 char * FX_Recv(char **data); | |
20 | |
21 #ifdef __cplusplus | |
22 } | |
23 #endif | |
24 | |
25 #endif /* ndef __KKFX80E_H__ */ |