-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathi2c-cmd.c
250 lines (219 loc) · 6.88 KB
/
i2c-cmd.c
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/*
i2c-cmd is a library that controls the i2c bus as a master
Copyright (C) 2019 Ronald Sutherland
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <avr/pgmspace.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include "../lib/parse.h"
#include "../lib/twi.h"
#include "i2c-cmd.h"
static uint8_t returnCode;
static uint8_t I2cAddress = 0;
static uint8_t txBuffer[TWI_BUFFER_LENGTH];
static uint8_t txBufferIndex = 0;
static uint8_t rxBuffer[TWI_BUFFER_LENGTH];
static uint8_t rxBufferLength = 0;
static uint8_t JsonIndex;
/* set I2C bus addresses and clear the buffer*/
void I2c_address(void)
{
if (command_done == 10)
{
// check that argument[0] is 7 bits e.g. the range 1..127
uint8_t arg0 = is_arg_in_uint8_range(0,1,127);
if ( !arg0 )
{
initCommandBuffer();
return;
}
txBufferIndex = 0;
I2cAddress = arg0;
printf_P(PSTR("{\"address\":\"0x%X\"}\r\n"),I2cAddress);
initCommandBuffer();
}
else
{
initCommandBuffer();
}
}
/* buffer bytes into an I2C txBuffer */
void I2c_txBuffer(void)
{
if (command_done == 10)
{
// check that arguments are digit and in the range 0..255
for (uint8_t arg_index=0; arg_index < arg_count; arg_index++)
{
if ( ( !( isdigit(arg[arg_index][0]) ) ) || (atoi(arg[arg_index]) < 0) || (atoi(arg[arg_index]) > 255) )
{
printf_P(PSTR("{\"err\":\"I2CDatOutOfRng\"}\r\n"));
initCommandBuffer();
return;
}
if ( txBufferIndex >= TWI_BUFFER_LENGTH)
{
printf_P(PSTR("{\"err\":\"I2CBufOVF\"}\r\n"));
txBufferIndex = 0;
initCommandBuffer();
return;
}
txBuffer[txBufferIndex] = (uint8_t) atoi(arg[arg_index]);
txBufferIndex += 1;
}
printf_P(PSTR("{\"txBuffer[%d]\":["),txBufferIndex);
JsonIndex = 0;
command_done = 11;
}
else if (command_done == 11)
{
// txBufferIndex is pointing to the next position data would be placed
if ( JsonIndex >= txBufferIndex )
{
command_done = 12;
}
else
{
if (JsonIndex > 0)
{
printf_P(PSTR(","));
}
printf_P(PSTR("{\"data\":\"0x%X\"}"),txBuffer[JsonIndex]);
JsonIndex += 1;
}
}
else if ( (command_done == 12) )
{
printf_P(PSTR("]}\r\n"));
initCommandBuffer();
}
else
{
initCommandBuffer();
}
}
/* write the I2C txBuffer */
void I2c_write(void)
{
if (command_done == 10)
{
uint8_t wait = 1;
uint8_t sendStop = 1;
uint8_t txBufferLength = txBufferIndex;
returnCode = twi_writeTo(I2cAddress, txBuffer, txBufferLength, wait, sendStop);
if (returnCode == 0)
{
printf_P(PSTR("{\"returnCode\":\"success\""));
txBufferIndex = 0;
}
if (returnCode == 1)
printf_P(PSTR("{\"rtnCode\":\"bufOVF\",\"i2c_addr\":\"%d\""),I2cAddress);
if ( (returnCode == 2) || (returnCode == 3) )
printf_P(PSTR("{\"rtnCode\":\"nack\",\"i2c_addr\":\"%d\""),I2cAddress);
if (returnCode == 4)
printf_P(PSTR("{\"rtnCode\":\"other\",\"i2c_addr\":\"%d\""),I2cAddress);
command_done = 11;
}
else if (command_done == 11)
{
printf_P(PSTR("}\r\n"));
initCommandBuffer();
}
else
{
initCommandBuffer();
}
}
/* write the byte(s) in buffer (e.g. command byte) to I2C address
without a stop condition. Then send a repeated Start condition
and address with read bit to obtain readings.*/
void I2c_read(void)
{
if (command_done == 10)
{
// check that argument[0] range 1..32
if ( ( !( isdigit(arg[0][0]) ) ) || (atoi(arg[0]) < 1) || (atoi(arg[0]) > TWI_BUFFER_LENGTH) )
{
printf_P(PSTR("{\"err\":\"I2cReadUpTo%d\"}\r\n"),TWI_BUFFER_LENGTH);
initCommandBuffer();
return;
}
// send command byte(s) without a Stop (causing a repeated Start durring read)
if (txBufferIndex)
{
uint8_t wait = 1;
uint8_t sendStop = 0;
uint8_t txBufferLength = txBufferIndex;
returnCode = twi_writeTo(I2cAddress, txBuffer, txBufferLength, wait, sendStop);
if (returnCode == 0)
{
printf_P(PSTR("{\"rxBuffer\":["));
txBufferIndex = 0;
command_done = 11;
}
else
{
if (returnCode == 1)
printf_P(PSTR("{\"rtnCode\":\"bufOVF\",\"i2c_addr\":\"%d\""),I2cAddress);
if ( (returnCode == 2) || (returnCode == 3) )
printf_P(PSTR("{\"rtnCode\":\"nack\",\"i2c_addr\":\"%d\""),I2cAddress);
if (returnCode == 4)
printf_P(PSTR("{\"rtnCode\":\"other\",\"i2c_addr\":\"%d\""),I2cAddress);
printf_P(PSTR("}\r\n"));
initCommandBuffer();
}
}
else
{
printf_P(PSTR("{\"rxBuffer\":["));
command_done = 11;
}
}
else if (command_done == 11)
{
// read I2C, it will cause a repeated start if a command has been sent.
uint8_t sendStop = 1;
uint8_t quantity = (uint8_t) atoi(arg[0]); // arg[0] has been checked to be in range 1..32
uint8_t read = twi_readFrom(I2cAddress, rxBuffer, quantity, sendStop);
rxBufferLength = read;
JsonIndex = 0;
command_done = 12;
}
else if (command_done == 12)
{
if (JsonIndex > 0)
{
printf_P(PSTR(","));
}
printf_P(PSTR("{\"data\":\"0x%X\"}"),rxBuffer[JsonIndex]);
if ( JsonIndex >= (rxBufferLength-1) )
{
command_done = 13;
}
else
{
JsonIndex += 1;
}
}
else if (command_done == 13)
{
printf_P(PSTR("]}\r\n"));
initCommandBuffer();
}
else
{
initCommandBuffer();
}
}