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