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