forked from ChrisVeigl/BrainBay
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ob_comreader.h
53 lines (34 loc) · 1.41 KB
/
ob_comreader.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
51
52
53
/* -----------------------------------------------------------------------------
BrainBay Version 1.7, GPL 2003-2010, contact: chris@shifz.org
MODULE: OB_COMREADER.H: declarations for the ComPort Reader Element
Authors: Chris Veigl
The ComPort Reader can be used to open a serial port and read data from it
Thus, external devices or Software like Mitsar Psytask can be connected and
transfer information to a running BrainBay Session
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; See the
GNU General Public License for more details.
-----------------------------------------------------------------------------*/
#include "brainBay.h"
#define COMREADERBUFLEN 4096
class COMREADEROBJ : public BASE_CL
{
public:
float input1;
HANDLE comdev;
unsigned int baudrate,comport,connected;
unsigned int inpos,outpos, received,processed;
unsigned char buffer[COMREADERBUFLEN];
DWORD dwRead;
BOOL COMREADEROBJ::SetupComPort(int port);
BOOL COMREADEROBJ::ReadComPort(HANDLE device, unsigned char * buffer, unsigned int pos, unsigned int maxlen);
BOOL COMREADEROBJ::BreakDownComPort(void);
COMREADEROBJ(int num);
void make_dialog(void);
void load(HANDLE hFile);
void save(HANDLE hFile);
void incoming_data(int port, float value);
void work(void);
~COMREADEROBJ();
};