-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
executable file
·342 lines (269 loc) · 6.2 KB
/
main.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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/*
*
* File: main.c
*
*
*
*
*
*
*/
//debug info uncomment to send dubug info
//to USART
#define DEBUG
//#define ISRTEST
#include <avr/io.h>
#include <util/delay.h>
#include <stdint.h>
#include <stdlib.h>
#include <util/atomic.h>
//#include "bitmasks.h"
#include "myio.h"
#include "sFuncs.h"
#include "isr.h"
#include "ui.h"
#include "myTypes.h"
/*===========GLOBALS=============*/
//offset indicator for rxBuff
volatile int bPos = 0;
//hz counter
volatile uint16_t hz = 0;
//interrupt flags
volatile uint8_t isr[ISR_MAX];
//handshake to start serial io
volatile uint8_t hs = 0;
/*=======INTERRUPT PROTOTYPES====*/
//ISR(_VECTOR(int));
int main()
{
//we arent going to worry about the possibility of
//a continous uptime of a 100 years here
int sec=0;int min=0; int hr=0;
//counters for value buffers
int lPos = 0; int tPos = 0; int mPos = 0;
//counter for polling control
uint8_t ctr = 0;
//flag for pump
uint8_t pump = 0;
//flags for ui
uint8_t ui[3] = {0,0,0};
//buffers for values
int lBuff[MAX_VBUFF_SZ]; int mBuff[MAX_VBUFF_SZ]; int tBuff[MAX_VBUFF_SZ];
//init buffers
clrBuff(lBuff, MAX_VBUFF_SZ);
clrBuff(mBuff, MAX_VBUFF_SZ);
clrBuff(tBuff, MAX_VBUFF_SZ);
//avg values
int avgL = 0; int avgM = 0; int avgT = 0;
//set interrupts on
ISRinit();
ioinit();
//do ADC init
adcinit();
for(;;)
{
if(isr[0])//check flag for Rx
{
//setup menu if first RX
if(! ui[0])
{
main_menu2();
ui[0] = 1;
}
//block Rx while we read from buffer
rxBlock();
//read from rxBuff
//we have a long buffer in case of a
//failed Tx's and for future use.
//we just increment the counter and hence the
//buffer offset after a read
//we are only interested in the last byte received
//as this is our control
char c = rxBuff[bPos-1];//ie the last char recieved
switch (c)
{
case 'o':
overide_msg();
if(!pump)
switching_proc(&pump, min);
else
switching_proc(&pump, min);
rxEnable();
break;
case 'd':
data_menu();
rxEnable();
break;
case 't':
for(int i = 0; i << 7; i++)
{
readSensor(temp, tBuff, &tPos);
}
temp_disp();
//sendInt(avg(tBuff, tPos));
sendInt(ADCToTemp( avg(lBuff, lPos), 0, 10 ) );
sendStr("\r\n");
main_menu2();
rxEnable();
break;
case 'l':
for(int i = 0; i < 7; i++)
{
readSensor(light, lBuff, &lPos);
}
light_disp();
//sendInt(avg(lBuff, lPos));
sendInt(adc_to_light( avg(lBuff, lPos) ) );
sendStr("\r\n");
main_menu2();
rxEnable();
break;
case 'm':
readSensor(moist, mBuff, &mPos);
moist_disp();
//sendInt(mBuff[mPos]);
sendInt(adc_to_moist( avg(mBuff, mPos) ) );
sendStr("\r\n");
main_menu2();
rxEnable();
break;
default:
main_menu2();
rxEnable();
break;
}
//reset flag
isr[0] = 0;
}
if(isr[1])//0.001 sec passed
{
do
{
ATOMIC_BLOCK(ATOMIC_FORCEON)
{
int cpHz = hz;
//seconds
if( !(cpHz%1000) )
{
//clear the hz counter if too big
//as we have declared it int
//so max val = 0xff
if(cpHz > 0x7fff)
hz = 0;
//toggle LED 12
PORTB ^= (1 << PORTB4);
//LED interface
if(pump)
{
//synch the LED'S
if(PORTB & (1 << PORTB4))
PORTB |= (1 << PORTB2);
else
PORTB &= ~(1 << PORTB2);
//toggle LED
PORTB ^= (1 << PORTB2);
}
//}
else
{
PORTB &= ~(1 << PORTB2);
}
//increase seconds
sec++;
//reneable interrupts while we deal with
//tasks at the second mark sending data
NONATOMIC_BLOCK(NONATOMIC_RESTORESTATE)
{
//sec++;
if (!(sec%60))
{
sec = 0;
min++;
if (!(min%60))
{
min = 0;
hr++;
}
}
//process for dry conditions
if ( (avgM > 400) && (!(pump) ) )
{
switching_proc(&pump, min);
}
else if(pump)
{
switching_proc(&pump, min);
}
#ifdef DEBUG
//send data over serial
//if serial on
if (hs)//serial on ?
{
//sendStr("\rSeconds: ");
//sendInt(sec);
sendStr("\r\nMins: ");
sendInt(min);
sendStr("\r\nAVG T: ");
sendInt(avgT);
sendStr("\r\nAVG M ADC: ");
sendInt(avgM);
sendStr("\r\nAVG L ADC: ");
sendInt(avgL);
}
#endif
}
}
//0.1 seconds
if( !(cpHz%100) )
{
if(!(pump))
{
//calculate values and averages
avgT = ADCToTemp(avg(tBuff, MAX_VBUFF_SZ), 0, 10);
avgM = avg(mBuff, MAX_VBUFF_SZ);
avgL = avg(lBuff, MAX_VBUFF_SZ);
}
}//end 0.1
//0.01 seconds
if (!(cpHz%10))
{
NONATOMIC_BLOCK(NONATOMIC_RESTORESTATE)
{
//poll sensors and assign values to
//respective arrays we can only
//currently read from 1 signal
//as the circuit gets too noisy
//with several ADC conversions
//happening at once
if(!(pump))
readSensor(moist, mBuff, &mPos);
//readSensor(light, lBuff, &lPos);
//readSensor(temp, tBuff, &tPos);
}
}//end 0.01 seconds
//reset flag
isr[1] = 0;
}
}while(isr[1]);
}
}
}//end main loop
//ISR for recieve
ISR(USART_RX_vect)
{
//set flag
isr[0] = 1;
//set handshake flag
hs = 1;
//read from the UDR0 buffer
readUDR(rxBuff, &bPos);
}
//ISR at 1000hz for polling sensors and
//general operations
ISR(TIMER0_COMPA_vect)
{
//set flag
isr[1] = 1;
//increment hz count
hz++;
}