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