Mercurial > templog
annotate main.c @ 412:a4d6030db09e
Remove crc8.o
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 07 Sep 2012 22:59:26 +0800 |
parents | 4a04b63a6b4a |
children | 5234ccc416e8 b0ec7b783c0b |
rev | line source |
---|---|
306 | 1 #include <stdio.h> |
2 #include <string.h> | |
319 | 3 #include <stddef.h> |
307 | 4 #include <avr/io.h> |
5 #include <avr/interrupt.h> | |
6 #include <avr/sleep.h> | |
313 | 7 #include <util/delay.h> |
312 | 8 #include <avr/pgmspace.h> |
319 | 9 #include <avr/eeprom.h> |
360
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
10 #include <avr/wdt.h> |
365 | 11 #include <util/atomic.h> |
306 | 12 #include <util/crc16.h> |
13 | |
318 | 14 #include "simple_ds18b20.h" |
319 | 15 #include "onewire.h" |
309 | 16 |
306 | 17 // configuration params |
18 // - measurement interval | |
19 // - transmit interval | |
20 // - bluetooth params | |
21 // - number of sensors (and range?) | |
22 | |
386 | 23 // TICK should be 8 or less (8 untested). all timers need |
24 // to be a multiple. | |
25 | |
26 #define TICK 6 | |
27 // we have 1024 prescaler, 32768 crystal. | |
28 #define SLEEP_COMPARE (32*TICK-1) | |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
29 |
381
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
368
diff
changeset
|
30 #define VALUE_NOSENSOR 0x07D0 // 125 degrees |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
368
diff
changeset
|
31 #define VALUE_BROKEN 0x07D1 // 125.0625 |
319 | 32 |
316 | 33 #define BAUD 19200 |
313 | 34 #define UBRR ((F_CPU)/8/(BAUD)-1) |
35 | |
36 #define PORT_LED PORTC | |
37 #define DDR_LED DDRC | |
38 #define PIN_LED PC4 | |
307 | 39 |
321
df7384336798
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
320
diff
changeset
|
40 #define PORT_SHDN PORTD |
df7384336798
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
320
diff
changeset
|
41 #define DDR_SHDN DDRD |
df7384336798
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
320
diff
changeset
|
42 #define PIN_SHDN PD7 |
df7384336798
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
320
diff
changeset
|
43 |
386 | 44 // total amount of 16bit values available for measurements. |
45 // adjust emperically, be sure to allow enough stack space too | |
46 #define TOTAL_MEASUREMENTS 840 | |
47 | |
48 // each sensor slot uses 8 bytes | |
49 #define MAX_SENSORS 6 | |
312 | 50 |
321
df7384336798
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
320
diff
changeset
|
51 // fixed at 8, have a shorter name |
df7384336798
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
320
diff
changeset
|
52 #define ID_LEN OW_ROMCODE_SIZE |
df7384336798
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
320
diff
changeset
|
53 |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
54 // #define HAVE_UART_ECHO |
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
55 |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
56 // stores a value of clock_epoch combined with the remainder of TCNT2, |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
57 // for 1/32 second accuracy |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
58 struct epoch_ticks |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
59 { |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
60 uint32_t ticks; |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
61 // remainder |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
62 uint8_t rem; |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
63 }; |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
64 |
386 | 65 // eeprom-settable parameters. all timeouts should |
66 // be a multiple of TICK (6 seconds probably) | |
402 | 67 static uint16_t measure_wake = 138; // not a divisor of comms_wake |
386 | 68 static uint16_t comms_wake = 3600; |
69 static uint8_t wake_secs = 30; | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
70 |
365 | 71 // ---- Atomic guards required accessing these variables |
72 static uint32_t clock_epoch; | |
73 static uint16_t comms_count; | |
74 static uint16_t measure_count; | |
75 // ---- End atomic guards required | |
76 | |
323 | 77 static uint16_t n_measurements; |
365 | 78 |
386 | 79 // calculated at startup as TOTAL_MEASUREMENTS/n_sensors |
80 static uint16_t max_measurements; | |
81 | |
82 static uint16_t measurements[TOTAL_MEASUREMENTS]; | |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
83 |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
84 static struct epoch_ticks first_measurement_clock; |
328
46070aaf29ea
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
85 // last_measurement_clock is redundant but checks that we're not missing |
46070aaf29ea
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
86 // samples |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
87 static struct epoch_ticks last_measurement_clock; |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
88 static struct epoch_ticks last_comms_clock; |
365 | 89 |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
90 // boolean flags |
323 | 91 static uint8_t need_measurement; |
92 static uint8_t need_comms; | |
346 | 93 static uint8_t uart_enabled; |
386 | 94 static uint8_t stay_awake; |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
95 static uint8_t button_pressed; |
307 | 96 |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
97 // counts down from WAKE_SECS to 0, goes to deep sleep when hits 0 |
323 | 98 static uint8_t comms_timeout; |
307 | 99 |
323 | 100 static uint8_t readpos; |
306 | 101 static char readbuf[30]; |
333
298e502fdcd4
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
332
diff
changeset
|
102 static uint8_t have_cmd; |
306 | 103 |
386 | 104 static uint8_t n_sensors; |
105 static uint8_t sensor_id[MAX_SENSORS][ID_LEN]; | |
106 | |
107 | |
108 int uart_putchar(char c, FILE *stream); | |
109 static void long_delay(int ms); | |
110 static void blink(); | |
111 static uint16_t adc_vcc(); | |
112 | |
113 static FILE mystdout = FDEV_SETUP_STREAM(uart_putchar, NULL, | |
114 _FDEV_SETUP_WRITE); | |
115 | |
116 static uint16_t crc_out; | |
117 static FILE _crc_stdout = FDEV_SETUP_STREAM(uart_putchar, NULL, | |
118 _FDEV_SETUP_WRITE); | |
119 // convenience | |
120 static FILE *crc_stdout = &_crc_stdout; | |
121 | |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
122 |
319 | 123 // thanks to http://projectgus.com/2010/07/eeprom-access-with-arduino/ |
124 #define eeprom_read_to(dst_p, eeprom_field, dst_size) eeprom_read_block((dst_p), (void *)offsetof(struct __eeprom_data, eeprom_field), (dst_size)) | |
125 #define eeprom_read(dst, eeprom_field) eeprom_read_to((&dst), eeprom_field, sizeof(dst)) | |
126 #define eeprom_write_from(src_p, eeprom_field, src_size) eeprom_write_block((src_p), (void *)offsetof(struct __eeprom_data, eeprom_field), (src_size)) | |
127 #define eeprom_write(src, eeprom_field) { eeprom_write_from(&src, eeprom_field, sizeof(src)); } | |
128 | |
129 #define EXPECT_MAGIC 0x67c9 | |
130 | |
131 struct __attribute__ ((__packed__)) __eeprom_data { | |
382
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
132 // XXX eeprom unused at present |
319 | 133 uint16_t magic; |
386 | 134 uint16_t measure_wake; |
135 uint16_t comms_wake; | |
136 uint8_t wake_secs; | |
319 | 137 }; |
138 | |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
139 static void deep_sleep(); |
307 | 140 |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
141 // Very first setup |
324 | 142 static void |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
143 setup_chip() |
324 | 144 { |
360
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
145 cli(); |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
146 |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
147 // stop watchdog timer (might have been used to cause a reset) |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
148 wdt_reset(); |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
149 MCUSR &= ~_BV(WDRF); |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
150 WDTCSR |= _BV(WDCE) | _BV(WDE); |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
151 WDTCSR = 0; |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
152 |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
153 // Set clock to 2mhz |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
154 CLKPR = _BV(CLKPCE); |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
155 // divide by 4 |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
156 CLKPR = _BV(CLKPS1); |
358
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
157 |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
158 // enable pullups |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
159 PORTB = 0xff; // XXX change when using SPI |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
160 PORTD = 0xff; |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
161 PORTC = 0xff; |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
162 |
325 | 163 // 3.3v power for bluetooth and SD |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
164 DDR_LED |= _BV(PIN_LED); |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
165 DDR_SHDN |= _BV(PIN_SHDN); |
325 | 166 |
352
99f8b97a9449
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
349
diff
changeset
|
167 // set pullup |
99f8b97a9449
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
349
diff
changeset
|
168 PORTD |= _BV(PD2); |
347 | 169 // INT0 setup |
358
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
170 EICRA = (1<<ISC01); // falling edge - data sheet says it won't work? |
347 | 171 EIMSK = _BV(INT0); |
358
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
172 |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
173 // comparator disable |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
174 ACSR = _BV(ACD); |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
175 |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
176 // disable adc pin input buffers |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
177 DIDR0 = 0x3F; // acd0-adc5 |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
178 DIDR1 = (1<<AIN1D)|(1<<AIN0D); // ain0/ain1 |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
179 |
71d2cc90354a
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
352
diff
changeset
|
180 sei(); |
324 | 181 } |
182 | |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
183 static void |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
184 set_aux_power(uint8_t on) |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
185 { |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
186 if (on) |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
187 { |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
188 PORT_SHDN &= ~_BV(PIN_SHDN); |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
189 } |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
190 else |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
191 { |
349 | 192 PORT_SHDN |= _BV(PIN_SHDN); |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
193 } |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
194 } |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
195 |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
196 static void |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
197 get_epoch_ticks(struct epoch_ticks *t) |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
198 { |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
199 ATOMIC_BLOCK(ATOMIC_RESTORESTATE) |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
200 { |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
201 t->ticks = clock_epoch; |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
202 t->rem = TCNT2; |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
203 } |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
204 } |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
205 |
386 | 206 static void |
207 set_measurement(uint8_t sensor, uint16_t measurement, uint16_t reading) | |
208 { | |
209 measurements[sensor*max_measurements + measurement] = reading; | |
210 } | |
211 | |
212 static uint16_t | |
213 get_measurement(uint8_t sensor, uint16_t measurement) | |
214 { | |
215 return measurements[sensor*max_measurements + measurement]; | |
216 } | |
217 | |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
218 static void |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
219 setup_tick_counter() |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
220 { |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
221 // set up counter2. |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
222 // COM21 COM20 Set OC2 on Compare Match (p116) |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
223 // WGM21 Clear counter on compare |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
224 //TCCR2A = _BV(COM2A1) | _BV(COM2A0) | _BV(WGM21); |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
225 // toggle on match |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
226 TCCR2A = _BV(COM2A0); |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
227 // CS22 CS21 CS20 clk/1024 |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
228 TCCR2B = _BV(CS22) | _BV(CS21) | _BV(CS20); |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
229 // set async mode |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
230 ASSR |= _BV(AS2); |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
231 TCNT2 = 0; |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
232 OCR2A = SLEEP_COMPARE; |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
233 // interrupt |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
234 TIMSK2 = _BV(OCIE2A); |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
235 } |
324 | 236 |
306 | 237 static void |
313 | 238 uart_on() |
306 | 239 { |
314 | 240 // Power reduction register |
352
99f8b97a9449
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
349
diff
changeset
|
241 PRR &= ~_BV(PRUSART0); |
314 | 242 |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
243 // All of this needs to be done each time after turning off the PRR |
306 | 244 // baud rate |
313 | 245 UBRR0H = (unsigned char)(UBRR >> 8); |
246 UBRR0L = (unsigned char)UBRR; | |
247 // set 2x clock, improves accuracy of UBRR | |
248 UCSR0A |= _BV(U2X0); | |
312 | 249 UCSR0B = _BV(RXCIE0) | _BV(RXEN0) | _BV(TXEN0); |
306 | 250 //8N1 |
313 | 251 UCSR0C = _BV(UCSZ01) | _BV(UCSZ00); |
347 | 252 uart_enabled = 1; |
312 | 253 } |
254 | |
255 static void | |
256 uart_off() | |
257 { | |
395
f0ddb75bcf04
main.c : add a delay before turning on uart
Matt Johnston <matt@ucc.asn.au>
parents:
393
diff
changeset
|
258 // Turn off interrupts and disable tx/rx |
312 | 259 UCSR0B = 0; |
347 | 260 uart_enabled = 0; |
312 | 261 |
262 // Power reduction register | |
352
99f8b97a9449
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
349
diff
changeset
|
263 PRR |= _BV(PRUSART0); |
306 | 264 } |
265 | |
316 | 266 int |
306 | 267 uart_putchar(char c, FILE *stream) |
268 { | |
347 | 269 if (!uart_enabled) |
270 { | |
271 return EOF; | |
272 } | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
273 // XXX could perhaps sleep in the loop for power. |
314 | 274 if (c == '\n') |
275 { | |
316 | 276 loop_until_bit_is_set(UCSR0A, UDRE0); |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
277 UDR0 = '\r'; |
314 | 278 } |
308 | 279 loop_until_bit_is_set(UCSR0A, UDRE0); |
280 UDR0 = c; | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
281 if (stream == crc_stdout) |
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
282 { |
332
05c1249da994
- Move crc16 to utils and fix it
Matt Johnston <matt@ucc.asn.au>
parents:
331
diff
changeset
|
283 crc_out = _crc_ccitt_update(crc_out, c); |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
284 } |
316 | 285 if (c == '\r') |
286 { | |
287 loop_until_bit_is_set(UCSR0A, UDRE0); | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
288 UDR0 = '\n'; |
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
289 if (stream == crc_stdout) |
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
290 { |
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
291 crc_out = _crc_ccitt_update(crc_out, '\n'); |
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
292 } |
316 | 293 } |
346 | 294 return (unsigned char)c; |
306 | 295 } |
296 | |
297 static void | |
298 cmd_fetch() | |
299 { | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
300 crc_out = 0; |
361
cfcd200c69da
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
360
diff
changeset
|
301 |
387
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
302 fprintf_P(crc_stdout, PSTR("START\n")); |
365 | 303 { |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
304 struct epoch_ticks now; |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
305 get_epoch_ticks(&now); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
306 fprintf_P(crc_stdout, PSTR("now=%lu\n"), now.ticks); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
307 fprintf_P(crc_stdout, PSTR("now_rem=%hhu\n"), now.rem); |
365 | 308 } |
387
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
309 fprintf_P(crc_stdout, PSTR("time_step=%hu\n"), measure_wake); |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
310 fprintf_P(crc_stdout, PSTR("first_time=%lu\n"), first_measurement_clock.ticks); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
311 fprintf_P(crc_stdout, PSTR("first_time_rem=%hhu\n"), first_measurement_clock.rem); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
312 fprintf_P(crc_stdout, PSTR("last_time=%lu\n"), last_measurement_clock.ticks); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
313 fprintf_P(crc_stdout, PSTR("last_time_rem=%hhu\n"), last_measurement_clock.rem); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
314 fprintf_P(crc_stdout, PSTR("comms_time=%lu\n"), last_comms_clock.ticks); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
315 fprintf_P(crc_stdout, PSTR("comms_time_rem=%hhu\n"), last_comms_clock.rem); |
387
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
316 fprintf_P(crc_stdout, PSTR("voltage=%hu\n"), adc_vcc()); |
393 | 317 fprintf_P(crc_stdout, PSTR("measure=%hu\n"), measure_wake); |
318 fprintf_P(crc_stdout, PSTR("comms=%hu\n"), comms_wake); | |
319 fprintf_P(crc_stdout, PSTR("wake=%hhu\n"), wake_secs); | |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
320 fprintf_P(crc_stdout, PSTR("tick_secs=%d\n"), TICK); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
321 fprintf_P(crc_stdout, PSTR("tick_wake=%d\n"), SLEEP_COMPARE); |
393 | 322 fprintf_P(crc_stdout, PSTR("maxsens=%hhu\n"), MAX_SENSORS); |
323 fprintf_P(crc_stdout, PSTR("totalmeas=%hu\n"), TOTAL_MEASUREMENTS); | |
387
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
324 fprintf_P(crc_stdout, PSTR("sensors=%hhu\n"), n_sensors); |
321
df7384336798
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
320
diff
changeset
|
325 for (uint8_t s = 0; s < n_sensors; s++) |
df7384336798
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
320
diff
changeset
|
326 { |
387
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
327 fprintf_P(crc_stdout, PSTR("sensor_id%hhu="), s); |
382
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
328 printhex(sensor_id[s], ID_LEN, crc_stdout); |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
329 fputc('\n', crc_stdout); |
321
df7384336798
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
320
diff
changeset
|
330 } |
341
ccab04e2f601
- decrease measurement interval, measure at start
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
331 fprintf_P(crc_stdout, PSTR("measurements=%hu\n"), n_measurements); |
320 | 332 for (uint16_t n = 0; n < n_measurements; n++) |
306 | 333 { |
352
99f8b97a9449
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
349
diff
changeset
|
334 fprintf_P(crc_stdout, PSTR("meas%hu="), n); |
321
df7384336798
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
320
diff
changeset
|
335 for (uint8_t s = 0; s < n_sensors; s++) |
319 | 336 { |
386 | 337 fprintf_P(crc_stdout, PSTR(" %04hx"), get_measurement(s, n)); |
319 | 338 } |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
339 fputc('\n', crc_stdout); |
306 | 340 } |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
341 fprintf_P(crc_stdout, PSTR("END\n")); |
331
5de3fc71ce48
- Make the python work on openwrt
Matt Johnston <matt@ucc.asn.au>
parents:
330
diff
changeset
|
342 fprintf_P(stdout, PSTR("CRC=%hu\n"), crc_out); |
306 | 343 } |
344 | |
345 static void | |
346 cmd_clear() | |
347 { | |
313 | 348 n_measurements = 0; |
338 | 349 printf_P(PSTR("cleared\n")); |
306 | 350 } |
351 | |
352 static void | |
353 cmd_btoff() | |
354 { | |
399
744c3c7eb09d
don't reset the wake time when btoff happens
Matt Johnston <matt@ucc.asn.au>
parents:
396
diff
changeset
|
355 uint8_t rem; |
744c3c7eb09d
don't reset the wake time when btoff happens
Matt Johnston <matt@ucc.asn.au>
parents:
396
diff
changeset
|
356 uint16_t count_copy; |
365 | 357 ATOMIC_BLOCK(ATOMIC_RESTORESTATE) |
358 { | |
399
744c3c7eb09d
don't reset the wake time when btoff happens
Matt Johnston <matt@ucc.asn.au>
parents:
396
diff
changeset
|
359 count_copy = comms_count; |
744c3c7eb09d
don't reset the wake time when btoff happens
Matt Johnston <matt@ucc.asn.au>
parents:
396
diff
changeset
|
360 rem = TCNT2; |
365 | 361 } |
399
744c3c7eb09d
don't reset the wake time when btoff happens
Matt Johnston <matt@ucc.asn.au>
parents:
396
diff
changeset
|
362 printf_P(PSTR("next_wake=%hu,"), comms_wake-count_copy); |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
363 printf_P(PSTR("rem=%hhu,"), rem); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
364 printf_P(PSTR("tick_secs=%hhu,"), TICK); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
365 printf_P(PSTR("tick_wake=%hhu\n"), SLEEP_COMPARE); |
352
99f8b97a9449
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
349
diff
changeset
|
366 _delay_ms(100); |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
367 comms_timeout = 0; |
306 | 368 } |
369 | |
370 static void | |
360
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
371 cmd_reset() |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
372 { |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
373 printf_P(PSTR("reset\n")); |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
374 _delay_ms(100); |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
375 cli(); // disable interrupts |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
376 wdt_enable(WDTO_15MS); // enable watchdog |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
377 while(1); // wait for watchdog to reset processor |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
378 } |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
379 |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
380 static void |
318 | 381 cmd_measure() |
382 { | |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
383 printf_P(PSTR("measuring\n")); |
318 | 384 need_measurement = 1; |
385 } | |
386 | |
387 static void | |
388 cmd_sensors() | |
389 { | |
390 uint8_t ret = simple_ds18b20_start_meas(NULL); | |
387
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
391 printf_P(PSTR("All sensors, ret %hhu, waiting...\n"), ret); |
320 | 392 long_delay(DS18B20_TCONV_12BIT); |
318 | 393 simple_ds18b20_read_all(); |
394 } | |
395 | |
319 | 396 static void |
382
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
397 init_sensors() |
319 | 398 { |
347 | 399 uint8_t id[OW_ROMCODE_SIZE]; |
382
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
400 printf_P(PSTR("init sensors\n")); |
319 | 401 ow_reset(); |
347 | 402 for( uint8_t diff = OW_SEARCH_FIRST; diff != OW_LAST_DEVICE; ) |
403 { | |
404 diff = ow_rom_search( diff, &id[0] ); | |
405 if( diff == OW_PRESENCE_ERR ) { | |
406 printf_P( PSTR("No Sensor found\r") ); | |
407 return; | |
408 } | |
409 | |
410 if( diff == OW_DATA_ERR ) { | |
411 printf_P( PSTR("Bus Error\r") ); | |
412 return; | |
413 } | |
382
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
414 |
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
415 if (n_sensors < MAX_SENSORS) |
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
416 { |
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
417 memcpy(sensor_id[n_sensors], id, ID_LEN); |
387
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
418 printf_P(PSTR("Added sensor %hhu : "), n_sensors); |
382
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
419 printhex(id, ID_LEN, stdout); |
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
420 putchar('\n'); |
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
421 n_sensors++; |
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
422 } |
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
423 else |
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
424 { |
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
425 printf_P(PSTR("Too many sensors\n")); |
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
426 } |
319 | 427 } |
386 | 428 |
429 max_measurements = TOTAL_MEASUREMENTS / n_sensors; | |
430 } | |
431 | |
432 static void | |
433 load_params() | |
434 { | |
435 uint16_t magic; | |
436 eeprom_read(magic, magic); | |
437 if (magic == EXPECT_MAGIC) | |
438 { | |
439 eeprom_read(measure_wake, measure_wake); | |
440 eeprom_read(comms_wake, comms_wake); | |
441 eeprom_read(wake_secs, wake_secs); | |
442 } | |
443 } | |
444 | |
445 static void | |
446 cmd_get_params() | |
447 { | |
387
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
448 printf_P(PSTR("measure %hu\n"), measure_wake); |
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
449 printf_P(PSTR("comms %hu\n"), comms_wake); |
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
450 printf_P(PSTR("wake %hhu\n"), wake_secs); |
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
451 printf_P(PSTR("tick %d\n"), TICK); |
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
452 printf_P(PSTR("sensors %hhu (%hhu)\n"), |
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
453 n_sensors, MAX_SENSORS); |
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
454 printf_P(PSTR("meas %hu (%hu)\n"), |
386 | 455 max_measurements, TOTAL_MEASUREMENTS); |
319 | 456 } |
457 | |
458 static void | |
386 | 459 cmd_set_params(const char *params) |
319 | 460 { |
386 | 461 uint16_t new_measure_wake; |
462 uint16_t new_comms_wake; | |
463 uint8_t new_wake_secs; | |
387
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
464 int ret = sscanf_P(params, PSTR("%hu %hu %hhu"), |
386 | 465 &new_measure_wake, &new_comms_wake, &new_wake_secs); |
466 | |
467 if (ret != 3) | |
319 | 468 { |
386 | 469 printf_P(PSTR("Bad values\n")); |
470 } | |
471 else | |
472 { | |
320 | 473 cli(); |
386 | 474 eeprom_write(new_measure_wake, measure_wake); |
475 eeprom_write(new_comms_wake, comms_wake); | |
476 eeprom_write(new_wake_secs, wake_secs); | |
477 uint16_t magic = EXPECT_MAGIC; | |
320 | 478 eeprom_write(magic, magic); |
479 sei(); | |
386 | 480 printf_P(PSTR("set_params for next boot\n")); |
387
1ee4485b59a2
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
386
diff
changeset
|
481 printf_P(PSTR("measure %hu comms %hu wake %hhu\n"), |
386 | 482 new_measure_wake, new_comms_wake, new_wake_secs); |
319 | 483 } |
386 | 484 } |
485 | |
486 static void | |
487 cmd_awake() | |
488 { | |
489 stay_awake = 1; | |
490 printf_P(PSTR("awake\n")); | |
319 | 491 } |
492 | |
318 | 493 static void |
306 | 494 read_handler() |
495 { | |
312 | 496 if (strcmp_P(readbuf, PSTR("fetch")) == 0) |
306 | 497 { |
498 cmd_fetch(); | |
499 } | |
312 | 500 else if (strcmp_P(readbuf, PSTR("clear")) == 0) |
306 | 501 { |
502 cmd_clear(); | |
503 } | |
312 | 504 else if (strcmp_P(readbuf, PSTR("btoff")) == 0) |
306 | 505 { |
506 cmd_btoff(); | |
507 } | |
318 | 508 else if (strcmp_P(readbuf, PSTR("measure")) == 0) |
509 { | |
510 cmd_measure(); | |
511 } | |
512 else if (strcmp_P(readbuf, PSTR("sensors")) == 0) | |
513 { | |
514 cmd_sensors(); | |
515 } | |
386 | 516 else if (strcmp_P(readbuf, PSTR("get_params")) == 0) |
517 { | |
518 cmd_get_params(); | |
519 } | |
389 | 520 else if (strncmp_P(readbuf, PSTR("set_params "), 11) == 0) |
386 | 521 { |
389 | 522 cmd_set_params(&readbuf[11]); |
386 | 523 } |
524 else if (strcmp_P(readbuf, PSTR("awake")) == 0) | |
525 { | |
526 cmd_awake(); | |
527 } | |
360
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
528 else if (strcmp_P(readbuf, PSTR("reset")) == 0) |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
529 { |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
530 cmd_reset(); |
5d86f1182f62
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
358
diff
changeset
|
531 } |
306 | 532 else |
533 { | |
389 | 534 printf_P(PSTR("Bad command '%s'\n"), readbuf); |
306 | 535 } |
536 } | |
537 | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
325
diff
changeset
|
538 ISR(INT0_vect) |
324 | 539 { |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
540 button_pressed = 1; |
330
7ac6b8846eea
- some fixes for server code
Matt Johnston <matt@ucc.asn.au>
parents:
328
diff
changeset
|
541 blink(); |
7ac6b8846eea
- some fixes for server code
Matt Johnston <matt@ucc.asn.au>
parents:
328
diff
changeset
|
542 _delay_ms(100); |
7ac6b8846eea
- some fixes for server code
Matt Johnston <matt@ucc.asn.au>
parents:
328
diff
changeset
|
543 blink(); |
324 | 544 } |
545 | |
546 | |
308 | 547 ISR(USART_RX_vect) |
306 | 548 { |
308 | 549 char c = UDR0; |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
550 #ifdef HAVE_UART_ECHO |
318 | 551 uart_putchar(c, NULL); |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
552 #endif |
328
46070aaf29ea
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
553 if (c == '\r' || c == '\n') |
306 | 554 { |
328
46070aaf29ea
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
555 if (readpos > 0) |
46070aaf29ea
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
556 { |
46070aaf29ea
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
557 readbuf[readpos] = '\0'; |
333
298e502fdcd4
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
332
diff
changeset
|
558 have_cmd = 1; |
328
46070aaf29ea
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
559 readpos = 0; |
46070aaf29ea
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
560 } |
306 | 561 } |
562 else | |
563 { | |
564 readbuf[readpos] = c; | |
565 readpos++; | |
566 if (readpos >= sizeof(readbuf)) | |
567 { | |
568 readpos = 0; | |
569 } | |
570 } | |
571 } | |
572 | |
308 | 573 ISR(TIMER2_COMPA_vect) |
307 | 574 { |
320 | 575 TCNT2 = 0; |
386 | 576 measure_count += TICK; |
577 comms_count += TICK; | |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
578 |
386 | 579 clock_epoch += TICK; |
323 | 580 |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
581 if (comms_timeout != 0) |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
582 { |
386 | 583 comms_timeout -= TICK; |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
584 } |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
585 |
386 | 586 if (measure_count >= measure_wake) |
307 | 587 { |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
588 measure_count = 0; |
307 | 589 need_measurement = 1; |
590 } | |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
591 |
386 | 592 if (comms_count >= comms_wake) |
347 | 593 { |
594 comms_count = 0; | |
595 need_comms = 1; | |
596 } | |
307 | 597 } |
598 | |
599 static void | |
600 deep_sleep() | |
601 { | |
602 // p119 of manual | |
308 | 603 OCR2A = SLEEP_COMPARE; |
604 loop_until_bit_is_clear(ASSR, OCR2AUB); | |
307 | 605 |
606 set_sleep_mode(SLEEP_MODE_PWR_SAVE); | |
607 sleep_mode(); | |
608 } | |
609 | |
610 static void | |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
611 idle_sleep() |
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
612 { |
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
613 set_sleep_mode(SLEEP_MODE_IDLE); |
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
614 sleep_mode(); |
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
615 } |
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
616 |
365 | 617 static uint16_t |
618 adc_vcc() | |
361
cfcd200c69da
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
360
diff
changeset
|
619 { |
cfcd200c69da
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
360
diff
changeset
|
620 PRR &= ~_BV(PRADC); |
cfcd200c69da
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
360
diff
changeset
|
621 |
368 | 622 // /16 prescaler |
361
cfcd200c69da
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
360
diff
changeset
|
623 ADCSRA = _BV(ADEN) | _BV(ADPS2); |
cfcd200c69da
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
360
diff
changeset
|
624 |
cfcd200c69da
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
360
diff
changeset
|
625 // set to measure 1.1 reference |
364 | 626 ADMUX = _BV(REFS0) | _BV(MUX3) | _BV(MUX2) | _BV(MUX1); |
366 | 627 // average a number of samples |
628 uint16_t sum = 0; | |
629 uint8_t num = 0; | |
630 for (uint8_t n = 0; n < 20; n++) | |
365 | 631 { |
632 ADCSRA |= _BV(ADSC); | |
633 loop_until_bit_is_clear(ADCSRA, ADSC); | |
361
cfcd200c69da
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
360
diff
changeset
|
634 |
366 | 635 uint8_t low_11 = ADCL; |
636 uint8_t high_11 = ADCH; | |
637 uint16_t val = low_11 + (high_11 << 8); | |
312 | 638 |
366 | 639 if (n >= 4) |
640 { | |
641 sum += val; | |
642 num++; | |
643 } | |
644 } | |
645 ADCSRA = 0; | |
646 PRR |= _BV(PRADC); | |
312 | 647 |
386 | 648 //float res_volts = 1.1 * 1024 * num / sum; |
649 //return 1000 * res_volts; | |
650 return ((uint32_t)1100*1024*num) / sum; | |
312 | 651 } |
652 | |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
653 static void |
307 | 654 do_measurement() |
655 { | |
381
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
368
diff
changeset
|
656 blink(); |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
368
diff
changeset
|
657 |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
658 /* Take the timer here since deep_sleep() below could take 6 seconds */ |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
659 get_epoch_ticks(&last_measurement_clock); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
660 if (n_measurements == 0) |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
661 { |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
662 first_measurement_clock = last_measurement_clock; |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
663 } |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
664 |
361
cfcd200c69da
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
360
diff
changeset
|
665 simple_ds18b20_start_meas(NULL); |
365 | 666 // sleep rather than using a long delay |
667 deep_sleep(); | |
668 //_delay_ms(DS18B20_TCONV_12BIT); | |
319 | 669 |
386 | 670 if (n_measurements == max_measurements) |
319 | 671 { |
672 n_measurements = 0; | |
673 } | |
312 | 674 |
386 | 675 for (uint8_t s = 0; s < n_sensors; s++) |
319 | 676 { |
381
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
368
diff
changeset
|
677 uint16_t reading; |
386 | 678 uint8_t ret = simple_ds18b20_read_raw(sensor_id[s], &reading); |
679 if (ret != DS18X20_OK) | |
319 | 680 { |
386 | 681 reading = VALUE_BROKEN; |
319 | 682 } |
386 | 683 set_measurement(s, n_measurements, reading); |
319 | 684 } |
328
46070aaf29ea
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
685 |
320 | 686 n_measurements++; |
307 | 687 } |
688 | |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
689 static void |
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
690 do_comms() |
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
691 { |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
692 get_epoch_ticks(&last_comms_clock); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
693 |
347 | 694 // turn on bluetooth |
330
7ac6b8846eea
- some fixes for server code
Matt Johnston <matt@ucc.asn.au>
parents:
328
diff
changeset
|
695 set_aux_power(1); |
395
f0ddb75bcf04
main.c : add a delay before turning on uart
Matt Johnston <matt@ucc.asn.au>
parents:
393
diff
changeset
|
696 // avoid receiving rubbish, perhaps |
f0ddb75bcf04
main.c : add a delay before turning on uart
Matt Johnston <matt@ucc.asn.au>
parents:
393
diff
changeset
|
697 _delay_ms(50); |
313 | 698 uart_on(); |
347 | 699 |
700 // write sd card here? same 3.3v regulator... | |
701 | |
386 | 702 for (comms_timeout = wake_secs; |
703 comms_timeout > 0 || stay_awake; | |
704 ) | |
347 | 705 { |
312 | 706 if (need_measurement) |
707 { | |
320 | 708 need_measurement = 0; |
312 | 709 do_measurement(); |
349 | 710 continue; |
312 | 711 } |
712 | |
333
298e502fdcd4
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
332
diff
changeset
|
713 if (have_cmd) |
298e502fdcd4
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
332
diff
changeset
|
714 { |
298e502fdcd4
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
332
diff
changeset
|
715 have_cmd = 0; |
298e502fdcd4
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
332
diff
changeset
|
716 read_handler(); |
349 | 717 continue; |
333
298e502fdcd4
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
332
diff
changeset
|
718 } |
298e502fdcd4
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
332
diff
changeset
|
719 |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
720 // wait for commands from the master |
347 | 721 idle_sleep(); |
722 } | |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
723 |
312 | 724 uart_off(); |
352
99f8b97a9449
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
349
diff
changeset
|
725 // in case bluetooth takes time to flush |
99f8b97a9449
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
349
diff
changeset
|
726 _delay_ms(100); |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
727 set_aux_power(0); |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
728 } |
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
729 |
313 | 730 static void |
731 blink() | |
732 { | |
733 PORT_LED &= ~_BV(PIN_LED); | |
315 | 734 _delay_ms(1); |
313 | 735 PORT_LED |= _BV(PIN_LED); |
736 } | |
737 | |
738 static void | |
739 long_delay(int ms) | |
740 { | |
741 int iter = ms / 100; | |
742 | |
743 for (int i = 0; i < iter; i++) | |
744 { | |
745 _delay_ms(100); | |
746 } | |
747 } | |
748 | |
314 | 749 ISR(BADISR_vect) |
750 { | |
320 | 751 //uart_on(); |
314 | 752 printf_P(PSTR("Bad interrupt\n")); |
753 } | |
754 | |
306 | 755 int main(void) |
756 { | |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
757 setup_chip(); |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
758 blink(); |
315 | 759 |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
760 set_aux_power(0); |
313 | 761 |
312 | 762 stdout = &mystdout; |
313 | 763 uart_on(); |
764 | |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
765 printf(PSTR("Started.\n")); |
319 | 766 |
386 | 767 load_params(); |
319 | 768 |
382
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
769 init_sensors(); |
f429169aa3cd
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
381
diff
changeset
|
770 |
314 | 771 uart_off(); |
306 | 772 |
312 | 773 // turn off everything except timer2 |
352
99f8b97a9449
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
349
diff
changeset
|
774 PRR = _BV(PRTWI) | _BV(PRTIM0) | _BV(PRTIM1) | _BV(PRSPI) | _BV(PRUSART0) | _BV(PRADC); |
314 | 775 |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
776 setup_tick_counter(); |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
777 |
318 | 778 sei(); |
314 | 779 |
331
5de3fc71ce48
- Make the python work on openwrt
Matt Johnston <matt@ucc.asn.au>
parents:
330
diff
changeset
|
780 need_comms = 1; |
341
ccab04e2f601
- decrease measurement interval, measure at start
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
781 need_measurement = 1; |
331
5de3fc71ce48
- Make the python work on openwrt
Matt Johnston <matt@ucc.asn.au>
parents:
330
diff
changeset
|
782 |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
783 for(;;) |
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
784 { |
396
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
785 if (button_pressed) |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
786 { |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
787 // debounce |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
788 _delay_ms(200); |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
789 need_comms = 1; |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
790 comms_timeout = wake_secs; |
a17a5984116f
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
395
diff
changeset
|
791 button_pressed = 0; |
347 | 792 continue; |
307 | 793 } |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
794 |
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
795 if (need_comms) |
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
796 { |
322
840f51824254
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
321
diff
changeset
|
797 need_comms = 0; |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
798 do_comms(); |
347 | 799 continue; |
310
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
800 } |
0a64532c1de1
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
309
diff
changeset
|
801 |
402 | 802 if (need_measurement) |
803 { | |
804 need_measurement = 0; | |
805 do_measurement(); | |
806 continue; | |
807 } | |
808 | |
347 | 809 deep_sleep(); |
306 | 810 } |
318 | 811 |
306 | 812 return 0; /* never reached */ |
813 } |