-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconsolei2cinterface.cpp
188 lines (154 loc) · 3.79 KB
/
consolei2cinterface.cpp
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
///////////////////////////////////////////////////////////////////////
//HardwareExpert. Print only interface for I2C port.
//Copyright (C) 2011 Stanislav (f0ma) Ivanov
//
//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, either version 3 of the License, or
//(at your option) any later version.
//
//This program is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//GNU General Public License for more details.
//
//You should have received a copy of the GNU General Public License
//along with this program. If not, see <http://www.gnu.org/licenses/>.
///////////////////////////////////////////////////////////////////////
#include "consolei2cinterface.h"
ConsoleI2cInterface::ConsoleI2cInterface()
{
con=NULL;
}
void ConsoleI2cInterface::setConsole(ConsoleInterface * acon)
{
con=acon;
}
bool ConsoleI2cInterface::open()
{
return true;
}
void ConsoleI2cInterface::close()
{
inputBuffer.clear();
operations.clear();
}
void ConsoleI2cInterface::addWrite (unsigned char adr,QByteArray data)
{
operation n;
n.type=operation::WRITE;
n.adr=adr;
n.data=data;
operations.append(n);
}
void ConsoleI2cInterface::addRead (unsigned char adr,unsigned int size)
{
operation n;
n.type=operation::READ;
n.adr=adr;
n.size=size;
operations.append(n);
}
void ConsoleI2cInterface::addStop()
{
operation n;
n.type=operation::STOP;
operations.append(n);
}
bool ConsoleI2cInterface::preform()
{
operation p;
QString s;
con->print("\nI2C:");
if(operations.count()==0)
{
con->print(" NOP \n");
return true;
}
foreach(p,operations)
{
if(p.type==operation::WRITE)
{
s.setNum(p.adr & 0xfe,16);
if(s.length()==1)s="0"+s;
con->print(" S "+s);
s =p.data.toHex().toUpper();
int v = s.size()+s.size()/2;
for(int i=0;i<v;i+=2)
{
s.insert(i," ");
i++;
}
con->print(s+" ");
}
if(p.type==operation::READ)
{
s.setNum(p.adr | 0x01,16);
if(s.length()==1)s="0"+s;
con->print(" S "+s);
s.setNum(p.size);
con->print(QObject::tr(" [Reading: ")+ s + QObject::tr(" bytes] "));
QByteArray v;
v.fill(0x00,p.size);
inputBuffer.append(v);
}
if(p.type==operation::STOP)
{
con->print("P\n");
}
if(p.type==operation::WAIT)
{
s.setNum(p.time);
con->print(QObject::tr(" [Wating ") +s+ QObject::tr("ms] "));
}
}
operations.clear();
return true;
}
void ConsoleI2cInterface::addWait(int time)
{
operation n;
n.type=operation::WAIT;
n.time=time;
operations.append(n);
}
int ConsoleI2cInterface::getBufferLength()
{
return inputBuffer.length();
}
QByteArray ConsoleI2cInterface::getBuffer()
{
QByteArray r;
r.append((QByteArray)inputBuffer);
inputBuffer.clear();
return r;
}
void ConsoleI2cInterface::checkAsk(bool a)
{
Q_UNUSED(a);
}
void ConsoleI2cInterface::writeNow (unsigned char adr,QByteArray data)
{
addWrite (adr,data);
addStop();
preform();
}
QByteArray ConsoleI2cInterface::readNow (unsigned char adr,unsigned int size)
{
addRead (adr,size);
addStop();
preform();
return getBuffer();
}
QByteArray ConsoleI2cInterface::writeReadNow (unsigned char adr,QByteArray data ,unsigned int size)
{
addWrite (adr,data);
addRead (adr,size);
addStop();
preform();
return getBuffer();
}
bool ConsoleI2cInterface::isOk()
{
return true;
}