-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPortChatClass.h
128 lines (103 loc) · 2.27 KB
/
PortChatClass.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
public ref class PortChat
{
private:
static SerialPort^ _serialPort;
static String ^serialStream;
bool Connected;
static array<System::String ^>^ Parser;
static Mutex^ mut = gcnew Mutex;
static Mutex^ mut2 = gcnew Mutex;
public:
static bool _continue;
PortChat()
{
_serialPort = gcnew SerialPort();
Connected = 0;
}
array<String^>^ getSerialPorts()
{
array<String^>^ PortNames = gcnew array<String^>(10);
int port_count = 0;
//Console::WriteLine("Available Ports:");
for each (String^ s in SerialPort::GetPortNames())
{
//Console::WriteLine(" {0}", s);
PortNames[port_count] = s;
port_count++;
}
PortNames[port_count] = "";
return PortNames;
}
void Initialization(System::String ^port)
{
_serialPort->PortName = port;//cbPorts->SelectedItem->ToString();
_serialPort->BaudRate = 9600;//PortChat::SetPortBaudRate(9600);
_serialPort->Parity = Parity::None;
_serialPort->DataBits = 8;//PortChat::SetPortDataBits(_serialPort->DataBits);
_serialPort->StopBits = StopBits::One;//PortChat::SetPortStopBits(_serialPort->StopBits);
DCB dsf; // gör en ny med normal inpu!!!
_serialPort->DtrEnable = 0;
_serialPort->RtsEnable = 0;
_serialPort->Encoding->UTF8;
//_serialPort->Handshake = Handshake::None;
_serialPort->ReadTimeout = 1500;
_serialPort->WriteTimeout = 1500;
_serialPort->Open();
Connected = true;
}
String ^getSerialStream()
{
return serialStream;
}
bool getSerial_Connection_Status()
{
return Connected;
}
static void Read()
{
while (1)
{
String^ message1;
try
{
serialStream = _serialPort->ReadLine();
Parser = serialStream->Split(',');
//Console::Write(Parser[0]);
//Console::Write(" ");
//Console::WriteLine(Parser[1]);
}
catch (...)
{
Console::WriteLine("no data timeout...");
}
}
}
String ^getCh0()
{
mut->WaitOne();
mut->ReleaseMutex();
//Monitor::Enter(this);
try
{
return Parser[0];
}
finally
{
}
//Monitor::Exit(this);
}
String ^getCh1()
{
mut2->WaitOne();
mut2->ReleaseMutex();
//Monitor::Enter(this);
try
{
return Parser[1];
}
finally
{
}
//Monitor::Exit(this);
}
};