Mercurial > templog
annotate main.c @ 121:45c051a7db82
try and take account of the fridge temperature too
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 10 Oct 2012 21:04:13 +0800 |
parents | bb0c946460f3 |
children | 30c2c3341a4a |
rev | line source |
---|---|
0 | 1 #include <stdio.h> |
2 #include <string.h> | |
13 | 3 #include <stddef.h> |
116
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
4 #include <stdbool.h> |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
5 #include <stdlib.h> |
1 | 6 #include <avr/io.h> |
7 #include <avr/interrupt.h> | |
8 #include <avr/sleep.h> | |
7 | 9 #include <util/delay.h> |
6 | 10 #include <avr/pgmspace.h> |
13 | 11 #include <avr/eeprom.h> |
54
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
12 #include <avr/wdt.h> |
59 | 13 #include <util/atomic.h> |
0 | 14 #include <util/crc16.h> |
15 | |
12 | 16 #include "simple_ds18b20.h" |
13 | 17 #include "onewire.h" |
3 | 18 |
0 | 19 // configuration params |
20 // - measurement interval | |
21 // - transmit interval | |
22 // - bluetooth params | |
23 // - number of sensors (and range?) | |
24 | |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
25 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y)) |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
26 #define MAX(X,Y) ((X) > (Y) ? (X) : (Y)) |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
27 |
80 | 28 // TICK should be 8 or less (8 untested). all timers need |
29 // to be a multiple. | |
30 | |
31 #define TICK 6 | |
32 // we have 1024 prescaler, 32768 crystal. | |
33 #define SLEEP_COMPARE (32*TICK-1) | |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
34 |
75
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
62
diff
changeset
|
35 #define VALUE_NOSENSOR 0x07D0 // 125 degrees |
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
62
diff
changeset
|
36 #define VALUE_BROKEN 0x07D1 // 125.0625 |
13 | 37 |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
38 #define FRIDGE_AIR_MIN_RANGE 3 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
39 #define FRIDGE_AIR_MAX_RANGE 3 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
40 #define OVERSHOOT_SCALE 1 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
41 |
10 | 42 #define BAUD 19200 |
7 | 43 #define UBRR ((F_CPU)/8/(BAUD)-1) |
44 | |
45 #define PORT_LED PORTC | |
46 #define DDR_LED DDRC | |
47 #define PIN_LED PC4 | |
1 | 48 |
15
54b0fda9cba7
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
14
diff
changeset
|
49 #define PORT_SHDN PORTD |
54b0fda9cba7
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
14
diff
changeset
|
50 #define DDR_SHDN DDRD |
54b0fda9cba7
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
14
diff
changeset
|
51 #define PIN_SHDN PD7 |
54b0fda9cba7
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
14
diff
changeset
|
52 |
115 | 53 #define PORT_FRIDGE PORTD |
54 #define DDR_FRIDGE DDRD | |
55 #define PIN_FRIDGE PD6 | |
56 | |
80 | 57 // total amount of 16bit values available for measurements. |
58 // adjust emperically, be sure to allow enough stack space too | |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
59 #define TOTAL_MEASUREMENTS 800 |
80 | 60 |
61 // each sensor slot uses 8 bytes | |
62 #define MAX_SENSORS 6 | |
6 | 63 |
15
54b0fda9cba7
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
14
diff
changeset
|
64 // 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
|
65 #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
|
66 |
33 | 67 // #define HAVE_UART_ECHO |
68 | |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
69 // stores a value of clock_epoch combined with the remainder of TCNT2, |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
70 // for 1/32 second accuracy |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
71 struct epoch_ticks |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
72 { |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
73 uint32_t ticks; |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
74 // remainder |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
75 uint8_t rem; |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
76 }; |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
77 |
80 | 78 // eeprom-settable parameters. all timeouts should |
79 // be a multiple of TICK (6 seconds probably) | |
115 | 80 static uint16_t measure_wake = 61; // not a divisor of comms_wake |
81 static uint16_t comms_wake = 600; | |
80 | 82 static uint8_t wake_secs = 30; |
115 | 83 // decidegrees |
84 static int16_t fridge_setpoint = 180; // 18.0ÂșC | |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
85 static int16_t fridge_difference = 3; // 0.3ÂșC |
115 | 86 static uint16_t fridge_delay = 600; // seconds |
114 | 87 |
59 | 88 // ---- Atomic guards required accessing these variables |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
89 // clock_epoch in seconds |
59 | 90 static uint32_t clock_epoch; |
91 static uint16_t comms_count; | |
92 static uint16_t measure_count; | |
93 // ---- End atomic guards required | |
94 | |
17 | 95 static uint16_t n_measurements; |
59 | 96 |
80 | 97 // calculated at startup as TOTAL_MEASUREMENTS/n_sensors |
98 static uint16_t max_measurements; | |
99 | |
100 static uint16_t measurements[TOTAL_MEASUREMENTS]; | |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
101 |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
102 static struct epoch_ticks first_measurement_clock; |
22
885532437100
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
20
diff
changeset
|
103 // 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
|
104 // samples |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
105 static struct epoch_ticks last_measurement_clock; |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
106 static struct epoch_ticks last_comms_clock; |
59 | 107 |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
108 // boolean flags |
17 | 109 static uint8_t need_measurement; |
110 static uint8_t need_comms; | |
40 | 111 static uint8_t uart_enabled; |
80 | 112 static uint8_t stay_awake; |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
113 static uint8_t button_pressed; |
1 | 114 |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
115 // counts down from WAKE_SECS to 0, goes to deep sleep when hits 0 |
17 | 116 static uint8_t comms_timeout; |
1 | 117 |
17 | 118 static uint8_t readpos; |
0 | 119 static char readbuf[30]; |
27
dbbd503119ba
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
26
diff
changeset
|
120 static uint8_t have_cmd; |
0 | 121 |
80 | 122 static uint8_t n_sensors; |
123 static uint8_t sensor_id[MAX_SENSORS][ID_LEN]; | |
124 | |
115 | 125 static int16_t last_fridge = DS18X20_INVALID_DECICELSIUS; |
126 static int16_t last_wort = DS18X20_INVALID_DECICELSIUS; | |
127 static struct epoch_ticks fridge_off_clock = {0}; | |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
128 static struct epoch_ticks fridge_on_clock = {0}; |
80 | 129 |
130 int uart_putchar(char c, FILE *stream); | |
131 static void long_delay(int ms); | |
132 static void blink(); | |
133 static uint16_t adc_vcc(); | |
134 | |
135 static FILE mystdout = FDEV_SETUP_STREAM(uart_putchar, NULL, | |
136 _FDEV_SETUP_WRITE); | |
137 | |
138 static uint16_t crc_out; | |
139 static FILE _crc_stdout = FDEV_SETUP_STREAM(uart_putchar, NULL, | |
140 _FDEV_SETUP_WRITE); | |
141 // convenience | |
142 static FILE *crc_stdout = &_crc_stdout; | |
143 | |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
144 |
13 | 145 // thanks to http://projectgus.com/2010/07/eeprom-access-with-arduino/ |
146 #define eeprom_read_to(dst_p, eeprom_field, dst_size) eeprom_read_block((dst_p), (void *)offsetof(struct __eeprom_data, eeprom_field), (dst_size)) | |
147 #define eeprom_read(dst, eeprom_field) eeprom_read_to((&dst), eeprom_field, sizeof(dst)) | |
148 #define eeprom_write_from(src_p, eeprom_field, src_size) eeprom_write_block((src_p), (void *)offsetof(struct __eeprom_data, eeprom_field), (src_size)) | |
149 #define eeprom_write(src, eeprom_field) { eeprom_write_from(&src, eeprom_field, sizeof(src)); } | |
150 | |
151 #define EXPECT_MAGIC 0x67c9 | |
152 | |
153 struct __attribute__ ((__packed__)) __eeprom_data { | |
154 uint16_t magic; | |
80 | 155 uint16_t measure_wake; |
156 uint16_t comms_wake; | |
157 uint8_t wake_secs; | |
114 | 158 |
115 | 159 int16_t fridge_setpoint; // decidegrees |
160 uint8_t fridge_difference; // decidegrees | |
161 uint16_t fridge_delay; | |
114 | 162 |
115 | 163 #if 0 |
164 static uint8_t wort_id[ID_LEN]; | |
165 static uint8_t fridge_id[ID_LEN]; | |
166 #endif | |
167 }; | |
114 | 168 |
115 | 169 static const uint8_t fridge_id[ID_LEN] = |
170 {0x28,0xCE,0xB2,0x1A,0x03,0x00,0x00,0x99}; | |
171 static const uint8_t wort_id[ID_LEN] = | |
172 {0x28,0x49,0xBC,0x1A,0x03,0x00,0x00,0x54}; | |
13 | 173 |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
174 static void deep_sleep(); |
1 | 175 |
117 | 176 // 0 or 1 |
177 static uint8_t | |
178 is_fridge_on() | |
179 { | |
180 if (PORT_FRIDGE & _BV(PIN_FRIDGE)) | |
181 { | |
182 return 1; | |
183 } | |
184 else | |
185 { | |
186 return 0; | |
187 } | |
188 } | |
189 | |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
190 // Very first setup |
18 | 191 static void |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
192 setup_chip() |
18 | 193 { |
54
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
194 cli(); |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
195 |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
196 // 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
|
197 wdt_reset(); |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
198 MCUSR &= ~_BV(WDRF); |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
199 WDTCSR |= _BV(WDCE) | _BV(WDE); |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
200 WDTCSR = 0; |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
201 |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
202 // Set clock to 2mhz |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
203 CLKPR = _BV(CLKPCE); |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
204 // divide by 4 |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
205 CLKPR = _BV(CLKPS1); |
52
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
206 |
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
207 // enable pullups |
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
208 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
|
209 PORTD = 0xff; |
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
210 PORTC = 0xff; |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
211 |
19 | 212 // 3.3v power for bluetooth and SD |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
213 DDR_LED |= _BV(PIN_LED); |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
214 DDR_SHDN |= _BV(PIN_SHDN); |
19 | 215 |
115 | 216 DDR_FRIDGE |= _BV(PIN_FRIDGE); |
118
bb0c946460f3
a bit more logging. make printf floats work
Matt Johnston <matt@ucc.asn.au>
parents:
117
diff
changeset
|
217 PORT_FRIDGE &= ~_BV(PIN_FRIDGE); |
115 | 218 |
46
9ccd965d938a
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
44
diff
changeset
|
219 // set pullup |
9ccd965d938a
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
44
diff
changeset
|
220 PORTD |= _BV(PD2); |
41 | 221 // INT0 setup |
52
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
222 EICRA = (1<<ISC01); // falling edge - data sheet says it won't work? |
41 | 223 EIMSK = _BV(INT0); |
52
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
224 |
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
225 // comparator disable |
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
226 ACSR = _BV(ACD); |
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
227 |
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
228 // disable adc pin input buffers |
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
229 DIDR0 = 0x3F; // acd0-adc5 |
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
230 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
|
231 |
c3f5e02c1c42
try a few more power saving measures, untested
Matt Johnston <matt@ucc.asn.au>
parents:
46
diff
changeset
|
232 sei(); |
18 | 233 } |
234 | |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
235 static void |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
236 set_aux_power(uint8_t on) |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
237 { |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
238 if (on) |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
239 { |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
240 PORT_SHDN &= ~_BV(PIN_SHDN); |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
241 } |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
242 else |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
243 { |
44 | 244 PORT_SHDN |= _BV(PIN_SHDN); |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
245 } |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
246 } |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
247 |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
248 static void |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
249 get_epoch_ticks(struct epoch_ticks *t) |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
250 { |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
251 ATOMIC_BLOCK(ATOMIC_RESTORESTATE) |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
252 { |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
253 t->ticks = clock_epoch; |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
254 t->rem = TCNT2; |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
255 } |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
256 } |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
257 |
80 | 258 static void |
259 set_measurement(uint8_t sensor, uint16_t measurement, uint16_t reading) | |
260 { | |
261 measurements[sensor*max_measurements + measurement] = reading; | |
262 } | |
263 | |
264 static uint16_t | |
265 get_measurement(uint8_t sensor, uint16_t measurement) | |
266 { | |
267 return measurements[sensor*max_measurements + measurement]; | |
268 } | |
269 | |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
270 static void |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
271 setup_tick_counter() |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
272 { |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
273 // set up counter2. |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
274 // COM21 COM20 Set OC2 on Compare Match (p116) |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
275 // WGM21 Clear counter on compare |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
276 //TCCR2A = _BV(COM2A1) | _BV(COM2A0) | _BV(WGM21); |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
277 // toggle on match |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
278 TCCR2A = _BV(COM2A0); |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
279 // CS22 CS21 CS20 clk/1024 |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
280 TCCR2B = _BV(CS22) | _BV(CS21) | _BV(CS20); |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
281 // set async mode |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
282 ASSR |= _BV(AS2); |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
283 TCNT2 = 0; |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
284 OCR2A = SLEEP_COMPARE; |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
285 // interrupt |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
286 TIMSK2 = _BV(OCIE2A); |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
287 } |
18 | 288 |
0 | 289 static void |
7 | 290 uart_on() |
0 | 291 { |
8 | 292 // Power reduction register |
46
9ccd965d938a
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
44
diff
changeset
|
293 PRR &= ~_BV(PRUSART0); |
8 | 294 |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
295 // All of this needs to be done each time after turning off the PRR |
0 | 296 // baud rate |
7 | 297 UBRR0H = (unsigned char)(UBRR >> 8); |
298 UBRR0L = (unsigned char)UBRR; | |
299 // set 2x clock, improves accuracy of UBRR | |
300 UCSR0A |= _BV(U2X0); | |
6 | 301 UCSR0B = _BV(RXCIE0) | _BV(RXEN0) | _BV(TXEN0); |
0 | 302 //8N1 |
7 | 303 UCSR0C = _BV(UCSZ01) | _BV(UCSZ00); |
41 | 304 uart_enabled = 1; |
6 | 305 } |
306 | |
307 static void | |
308 uart_off() | |
309 { | |
89
51d889ad39a3
main.c : add a delay before turning on uart
Matt Johnston <matt@ucc.asn.au>
parents:
87
diff
changeset
|
310 // Turn off interrupts and disable tx/rx |
6 | 311 UCSR0B = 0; |
41 | 312 uart_enabled = 0; |
6 | 313 |
314 // Power reduction register | |
46
9ccd965d938a
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
44
diff
changeset
|
315 PRR |= _BV(PRUSART0); |
0 | 316 } |
317 | |
10 | 318 int |
0 | 319 uart_putchar(char c, FILE *stream) |
320 { | |
41 | 321 if (!uart_enabled) |
322 { | |
323 return EOF; | |
324 } | |
20
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
19
diff
changeset
|
325 // XXX could perhaps sleep in the loop for power. |
8 | 326 if (c == '\n') |
327 { | |
10 | 328 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
|
329 UDR0 = '\r'; |
8 | 330 } |
2 | 331 loop_until_bit_is_set(UCSR0A, UDRE0); |
332 UDR0 = c; | |
20
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
19
diff
changeset
|
333 if (stream == crc_stdout) |
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
19
diff
changeset
|
334 { |
26
d3e5934fe55c
- Move crc16 to utils and fix it
Matt Johnston <matt@ucc.asn.au>
parents:
25
diff
changeset
|
335 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
|
336 } |
10 | 337 if (c == '\r') |
338 { | |
339 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
|
340 UDR0 = '\n'; |
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
19
diff
changeset
|
341 if (stream == crc_stdout) |
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
19
diff
changeset
|
342 { |
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
19
diff
changeset
|
343 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
|
344 } |
10 | 345 } |
40 | 346 return (unsigned char)c; |
0 | 347 } |
348 | |
349 static void | |
350 cmd_fetch() | |
351 { | |
20
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
19
diff
changeset
|
352 crc_out = 0; |
55
8e897a682208
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
54
diff
changeset
|
353 |
81
4a2a82d6302c
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
80
diff
changeset
|
354 fprintf_P(crc_stdout, PSTR("START\n")); |
59 | 355 { |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
356 struct epoch_ticks now; |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
357 get_epoch_ticks(&now); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
358 fprintf_P(crc_stdout, PSTR("now=%lu\n"), now.ticks); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
359 fprintf_P(crc_stdout, PSTR("now_rem=%hhu\n"), now.rem); |
59 | 360 } |
81
4a2a82d6302c
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
80
diff
changeset
|
361 fprintf_P(crc_stdout, PSTR("time_step=%hu\n"), measure_wake); |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
362 fprintf_P(crc_stdout, PSTR("first_time=%lu\n"), first_measurement_clock.ticks); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
363 fprintf_P(crc_stdout, PSTR("first_time_rem=%hhu\n"), first_measurement_clock.rem); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
364 fprintf_P(crc_stdout, PSTR("last_time=%lu\n"), last_measurement_clock.ticks); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
365 fprintf_P(crc_stdout, PSTR("last_time_rem=%hhu\n"), last_measurement_clock.rem); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
366 fprintf_P(crc_stdout, PSTR("comms_time=%lu\n"), last_comms_clock.ticks); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
367 fprintf_P(crc_stdout, PSTR("comms_time_rem=%hhu\n"), last_comms_clock.rem); |
81
4a2a82d6302c
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
80
diff
changeset
|
368 fprintf_P(crc_stdout, PSTR("voltage=%hu\n"), adc_vcc()); |
87 | 369 fprintf_P(crc_stdout, PSTR("measure=%hu\n"), measure_wake); |
370 fprintf_P(crc_stdout, PSTR("comms=%hu\n"), comms_wake); | |
371 fprintf_P(crc_stdout, PSTR("wake=%hhu\n"), wake_secs); | |
115 | 372 fprintf_P(crc_stdout, PSTR("fridge=%.1f\n"), fridge_setpoint/10.0); |
373 fprintf_P(crc_stdout, PSTR("fridge_diff=%.1f\n"), fridge_difference/10.0); | |
374 fprintf_P(crc_stdout, PSTR("fridge_delay=%hu\n"), fridge_delay); | |
117 | 375 fprintf_P(crc_stdout, PSTR("fridge_status=%hhu\n"), is_fridge_on()); |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
376 fprintf_P(crc_stdout, PSTR("tick_secs=%d\n"), TICK); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
377 fprintf_P(crc_stdout, PSTR("tick_wake=%d\n"), SLEEP_COMPARE); |
87 | 378 fprintf_P(crc_stdout, PSTR("maxsens=%hhu\n"), MAX_SENSORS); |
379 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
|
380 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
|
381 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
|
382 { |
81
4a2a82d6302c
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
80
diff
changeset
|
383 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
|
384 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
|
385 fputc('\n', crc_stdout); |
15
54b0fda9cba7
Add shutdown handling, print sensors in "fetch" output
Matt Johnston <matt@ucc.asn.au>
parents:
14
diff
changeset
|
386 } |
36
a670a67ba489
- decrease measurement interval, measure at start
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
387 fprintf_P(crc_stdout, PSTR("measurements=%hu\n"), n_measurements); |
14 | 388 for (uint16_t n = 0; n < n_measurements; n++) |
0 | 389 { |
46
9ccd965d938a
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
44
diff
changeset
|
390 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
|
391 for (uint8_t s = 0; s < n_sensors; s++) |
13 | 392 { |
80 | 393 fprintf_P(crc_stdout, PSTR(" %04hx"), get_measurement(s, n)); |
13 | 394 } |
20
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
19
diff
changeset
|
395 fputc('\n', crc_stdout); |
0 | 396 } |
20
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
19
diff
changeset
|
397 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
|
398 fprintf_P(stdout, PSTR("CRC=%hu\n"), crc_out); |
0 | 399 } |
400 | |
401 static void | |
402 cmd_clear() | |
403 { | |
7 | 404 n_measurements = 0; |
32 | 405 printf_P(PSTR("cleared\n")); |
0 | 406 } |
407 | |
408 static void | |
409 cmd_btoff() | |
410 { | |
93
f18fd4257296
don't reset the wake time when btoff happens
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
411 uint8_t rem; |
f18fd4257296
don't reset the wake time when btoff happens
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
412 uint16_t count_copy; |
59 | 413 ATOMIC_BLOCK(ATOMIC_RESTORESTATE) |
414 { | |
93
f18fd4257296
don't reset the wake time when btoff happens
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
415 count_copy = comms_count; |
f18fd4257296
don't reset the wake time when btoff happens
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
416 rem = TCNT2; |
59 | 417 } |
93
f18fd4257296
don't reset the wake time when btoff happens
Matt Johnston <matt@ucc.asn.au>
parents:
90
diff
changeset
|
418 printf_P(PSTR("next_wake=%hu,"), comms_wake-count_copy); |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
419 printf_P(PSTR("rem=%hhu,"), rem); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
420 printf_P(PSTR("tick_secs=%hhu,"), TICK); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
421 printf_P(PSTR("tick_wake=%hhu\n"), SLEEP_COMPARE); |
46
9ccd965d938a
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
44
diff
changeset
|
422 _delay_ms(100); |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
423 comms_timeout = 0; |
117 | 424 stay_awake = 0; |
0 | 425 } |
426 | |
427 static void | |
54
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
428 cmd_reset() |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
429 { |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
430 printf_P(PSTR("reset\n")); |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
431 _delay_ms(100); |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
432 cli(); // disable interrupts |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
433 wdt_enable(WDTO_15MS); // enable watchdog |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
434 while(1); // wait for watchdog to reset processor |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
435 } |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
436 |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
437 static void |
12 | 438 cmd_measure() |
439 { | |
33 | 440 printf_P(PSTR("measuring\n")); |
12 | 441 need_measurement = 1; |
442 } | |
443 | |
444 static void | |
445 cmd_sensors() | |
446 { | |
447 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
|
448 printf_P(PSTR("All sensors, ret %hhu, waiting...\n"), ret); |
14 | 449 long_delay(DS18B20_TCONV_12BIT); |
12 | 450 simple_ds18b20_read_all(); |
451 } | |
452 | |
13 | 453 static void |
76
6e47a61edc47
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
75
diff
changeset
|
454 init_sensors() |
13 | 455 { |
41 | 456 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
|
457 printf_P(PSTR("init sensors\n")); |
13 | 458 ow_reset(); |
41 | 459 for( uint8_t diff = OW_SEARCH_FIRST; diff != OW_LAST_DEVICE; ) |
460 { | |
461 diff = ow_rom_search( diff, &id[0] ); | |
462 if( diff == OW_PRESENCE_ERR ) { | |
463 printf_P( PSTR("No Sensor found\r") ); | |
464 return; | |
465 } | |
466 | |
467 if( diff == OW_DATA_ERR ) { | |
468 printf_P( PSTR("Bus Error\r") ); | |
469 return; | |
470 } | |
76
6e47a61edc47
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
75
diff
changeset
|
471 |
6e47a61edc47
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
75
diff
changeset
|
472 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
|
473 { |
6e47a61edc47
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
75
diff
changeset
|
474 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
|
475 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
|
476 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
|
477 putchar('\n'); |
6e47a61edc47
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
75
diff
changeset
|
478 n_sensors++; |
6e47a61edc47
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
75
diff
changeset
|
479 } |
6e47a61edc47
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
75
diff
changeset
|
480 else |
6e47a61edc47
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
75
diff
changeset
|
481 { |
6e47a61edc47
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
75
diff
changeset
|
482 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
|
483 } |
13 | 484 } |
80 | 485 |
486 max_measurements = TOTAL_MEASUREMENTS / n_sensors; | |
487 } | |
488 | |
489 static void | |
490 load_params() | |
491 { | |
492 uint16_t magic; | |
493 eeprom_read(magic, magic); | |
494 if (magic == EXPECT_MAGIC) | |
495 { | |
496 eeprom_read(measure_wake, measure_wake); | |
497 eeprom_read(comms_wake, comms_wake); | |
498 eeprom_read(wake_secs, wake_secs); | |
115 | 499 eeprom_read(fridge_setpoint, fridge_setpoint); |
500 eeprom_read(fridge_difference, fridge_difference); | |
501 eeprom_read(fridge_delay, fridge_delay); | |
80 | 502 } |
503 } | |
504 | |
505 static void | |
506 cmd_get_params() | |
507 { | |
81
4a2a82d6302c
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
80
diff
changeset
|
508 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
|
509 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
|
510 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
|
511 printf_P(PSTR("tick %d\n"), TICK); |
116
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
512 printf_P(PSTR("fridge %.1fÂș\n"), fridge_setpoint / 10.0f); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
513 printf_P(PSTR("fridge difference %.1fÂș\n"), fridge_difference / 10.0f); |
115 | 514 printf_P(PSTR("fridge_delay %hu\n"), fridge_delay); |
81
4a2a82d6302c
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
80
diff
changeset
|
515 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
|
516 n_sensors, MAX_SENSORS); |
4a2a82d6302c
try and be a bit more frugal with stack
Matt Johnston <matt@ucc.asn.au>
parents:
80
diff
changeset
|
517 printf_P(PSTR("meas %hu (%hu)\n"), |
80 | 518 max_measurements, TOTAL_MEASUREMENTS); |
13 | 519 } |
520 | |
521 static void | |
80 | 522 cmd_set_params(const char *params) |
13 | 523 { |
80 | 524 uint16_t new_measure_wake; |
525 uint16_t new_comms_wake; | |
526 uint8_t new_wake_secs; | |
116
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
527 int ret = sscanf_P(params, PSTR("%hu %hu %hhu"), |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
528 &new_measure_wake, &new_comms_wake, &new_wake_secs); |
80 | 529 |
116
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
530 if (ret != 3) |
13 | 531 { |
80 | 532 printf_P(PSTR("Bad values\n")); |
533 } | |
534 else | |
535 { | |
115 | 536 ATOMIC_BLOCK(ATOMIC_RESTORESTATE) |
537 { | |
538 eeprom_write(new_measure_wake, measure_wake); | |
539 eeprom_write(new_comms_wake, comms_wake); | |
540 eeprom_write(new_wake_secs, wake_secs); | |
541 uint16_t magic = EXPECT_MAGIC; | |
542 eeprom_write(magic, magic); | |
543 } | |
80 | 544 printf_P(PSTR("set_params for next boot\n")); |
116
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
545 printf_P(PSTR("measure %hu comms %hu wake %hhu\n"), |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
546 new_measure_wake, new_comms_wake, new_wake_secs); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
547 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
548 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
549 |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
550 // returns true if eeprom was written |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
551 static bool |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
552 set_initial_eeprom() |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
553 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
554 uint16_t magic; |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
555 eeprom_read(magic, magic); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
556 if (magic == EXPECT_MAGIC) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
557 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
558 return false; |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
559 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
560 |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
561 ATOMIC_BLOCK(ATOMIC_RESTORESTATE) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
562 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
563 eeprom_write(measure_wake, measure_wake); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
564 eeprom_write(comms_wake, comms_wake); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
565 eeprom_write(wake_secs, wake_secs); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
566 eeprom_write(fridge_setpoint, fridge_setpoint); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
567 eeprom_write(fridge_difference, fridge_difference); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
568 eeprom_write(fridge_delay, fridge_delay); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
569 magic = EXPECT_MAGIC; |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
570 eeprom_write(magic, magic); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
571 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
572 |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
573 return true; |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
574 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
575 |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
576 static void |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
577 cmd_set_fridge_setpoint(char *params) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
578 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
579 float new_f = atof(params); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
580 if (new_f < 2 || new_f > 30) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
581 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
582 printf_P(PSTR("Bad fridge value %f\n"), new_f); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
583 return; |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
584 } |
114 | 585 |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
586 int16_t old_setpoint = fridge_setpoint; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
587 |
116
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
588 fridge_setpoint = new_f * 10; |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
589 bool written = set_initial_eeprom(); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
590 if (!written) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
591 { |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
592 if (old_setpoint != fridge_setpoint) |
116
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
593 { |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
594 ATOMIC_BLOCK(ATOMIC_RESTORESTATE) |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
595 { |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
596 eeprom_write(fridge_setpoint, fridge_setpoint); |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
597 } |
116
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
598 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
599 } |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
600 printf_P(PSTR("old fridge %.1fÂș new fridge %.1fÂș\n"), |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
601 old_setpoint / 10.0f, fridge_setpoint / 10.0f); |
116
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
602 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
603 |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
604 static void |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
605 cmd_set_fridge_difference(char *params) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
606 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
607 float new_f = atof(params); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
608 if (new_f < 0 || new_f > 30) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
609 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
610 printf_P(PSTR("Bad fridge value %f\n"), new_f); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
611 return; |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
612 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
613 |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
614 fridge_difference = new_f * 10; |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
615 bool written = set_initial_eeprom(); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
616 if (!written) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
617 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
618 ATOMIC_BLOCK(ATOMIC_RESTORESTATE) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
619 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
620 eeprom_write(fridge_difference, fridge_difference); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
621 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
622 } |
118
bb0c946460f3
a bit more logging. make printf floats work
Matt Johnston <matt@ucc.asn.au>
parents:
117
diff
changeset
|
623 printf_P(PSTR("new fridge difference %.1fÂș\n"), fridge_difference / 10.0f); |
116
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
624 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
625 |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
626 static void |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
627 cmd_set_fridge_delay(char *params) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
628 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
629 uint16_t new_delay = atoi(params); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
630 if (new_delay < 5) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
631 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
632 printf_P(PSTR("Bad fridge delay %d\n"), new_delay); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
633 return; |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
634 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
635 |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
636 fridge_delay = new_delay; |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
637 bool written = set_initial_eeprom(); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
638 if (!written) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
639 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
640 ATOMIC_BLOCK(ATOMIC_RESTORESTATE) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
641 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
642 eeprom_write(fridge_delay, fridge_delay); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
643 } |
114 | 644 } |
118
bb0c946460f3
a bit more logging. make printf floats work
Matt Johnston <matt@ucc.asn.au>
parents:
117
diff
changeset
|
645 printf_P(PSTR("new fridge delay %hu\n"), fridge_delay); |
80 | 646 } |
115 | 647 |
80 | 648 static void |
649 cmd_awake() | |
650 { | |
651 stay_awake = 1; | |
652 printf_P(PSTR("awake\n")); | |
13 | 653 } |
654 | |
12 | 655 static void |
0 | 656 read_handler() |
657 { | |
6 | 658 if (strcmp_P(readbuf, PSTR("fetch")) == 0) |
0 | 659 { |
660 cmd_fetch(); | |
661 } | |
6 | 662 else if (strcmp_P(readbuf, PSTR("clear")) == 0) |
0 | 663 { |
664 cmd_clear(); | |
665 } | |
6 | 666 else if (strcmp_P(readbuf, PSTR("btoff")) == 0) |
0 | 667 { |
668 cmd_btoff(); | |
669 } | |
12 | 670 else if (strcmp_P(readbuf, PSTR("measure")) == 0) |
671 { | |
672 cmd_measure(); | |
673 } | |
674 else if (strcmp_P(readbuf, PSTR("sensors")) == 0) | |
675 { | |
676 cmd_sensors(); | |
677 } | |
80 | 678 else if (strcmp_P(readbuf, PSTR("get_params")) == 0) |
679 { | |
680 cmd_get_params(); | |
681 } | |
83 | 682 else if (strncmp_P(readbuf, PSTR("set_params "), 11) == 0) |
80 | 683 { |
83 | 684 cmd_set_params(&readbuf[11]); |
80 | 685 } |
686 else if (strcmp_P(readbuf, PSTR("awake")) == 0) | |
687 { | |
688 cmd_awake(); | |
689 } | |
116
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
690 else if (strncmp_P(readbuf, PSTR("fridge_setpoint "), 16) == 0) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
691 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
692 cmd_set_fridge_setpoint(&readbuf[16]); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
693 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
694 else if (strncmp_P(readbuf, PSTR("fridge_diff "), 12) == 0) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
695 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
696 cmd_set_fridge_difference(&readbuf[12]); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
697 } |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
698 else if (strncmp_P(readbuf, PSTR("fridge_delay "), 13) == 0) |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
699 { |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
700 cmd_set_fridge_delay(&readbuf[13]); |
9afff8f29844
set fridge params separatelly
Matt Johnston <matt@ucc.asn.au>
parents:
115
diff
changeset
|
701 } |
54
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
702 else if (strcmp_P(readbuf, PSTR("reset")) == 0) |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
703 { |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
704 cmd_reset(); |
0d3d14af55c2
add "awake" and "reset" functions
Matt Johnston <matt@ucc.asn.au>
parents:
52
diff
changeset
|
705 } |
0 | 706 else |
707 { | |
83 | 708 printf_P(PSTR("Bad command '%s'\n"), readbuf); |
0 | 709 } |
710 } | |
711 | |
20
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
19
diff
changeset
|
712 ISR(INT0_vect) |
18 | 713 { |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
714 button_pressed = 1; |
24
44c5ab5ea879
- some fixes for server code
Matt Johnston <matt@ucc.asn.au>
parents:
22
diff
changeset
|
715 blink(); |
44c5ab5ea879
- some fixes for server code
Matt Johnston <matt@ucc.asn.au>
parents:
22
diff
changeset
|
716 _delay_ms(100); |
44c5ab5ea879
- some fixes for server code
Matt Johnston <matt@ucc.asn.au>
parents:
22
diff
changeset
|
717 blink(); |
18 | 718 } |
719 | |
720 | |
2 | 721 ISR(USART_RX_vect) |
0 | 722 { |
2 | 723 char c = UDR0; |
33 | 724 #ifdef HAVE_UART_ECHO |
12 | 725 uart_putchar(c, NULL); |
33 | 726 #endif |
22
885532437100
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
20
diff
changeset
|
727 if (c == '\r' || c == '\n') |
0 | 728 { |
22
885532437100
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
20
diff
changeset
|
729 if (readpos > 0) |
885532437100
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
20
diff
changeset
|
730 { |
885532437100
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
20
diff
changeset
|
731 readbuf[readpos] = '\0'; |
27
dbbd503119ba
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
26
diff
changeset
|
732 have_cmd = 1; |
22
885532437100
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
20
diff
changeset
|
733 readpos = 0; |
885532437100
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
20
diff
changeset
|
734 } |
0 | 735 } |
736 else | |
737 { | |
738 readbuf[readpos] = c; | |
739 readpos++; | |
740 if (readpos >= sizeof(readbuf)) | |
741 { | |
742 readpos = 0; | |
743 } | |
744 } | |
745 } | |
746 | |
2 | 747 ISR(TIMER2_COMPA_vect) |
1 | 748 { |
14 | 749 TCNT2 = 0; |
80 | 750 measure_count += TICK; |
751 comms_count += TICK; | |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
752 |
80 | 753 clock_epoch += TICK; |
17 | 754 |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
755 if (comms_timeout != 0) |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
756 { |
80 | 757 comms_timeout -= TICK; |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
758 } |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
759 |
80 | 760 if (measure_count >= measure_wake) |
1 | 761 { |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
762 measure_count = 0; |
1 | 763 need_measurement = 1; |
764 } | |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
765 |
80 | 766 if (comms_count >= comms_wake) |
41 | 767 { |
768 comms_count = 0; | |
769 need_comms = 1; | |
770 } | |
1 | 771 } |
772 | |
773 static void | |
774 deep_sleep() | |
775 { | |
776 // p119 of manual | |
2 | 777 OCR2A = SLEEP_COMPARE; |
778 loop_until_bit_is_clear(ASSR, OCR2AUB); | |
1 | 779 |
780 set_sleep_mode(SLEEP_MODE_PWR_SAVE); | |
781 sleep_mode(); | |
782 } | |
783 | |
784 static void | |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
785 idle_sleep() |
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
786 { |
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
787 set_sleep_mode(SLEEP_MODE_IDLE); |
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
788 sleep_mode(); |
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
789 } |
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
790 |
59 | 791 static uint16_t |
792 adc_vcc() | |
55
8e897a682208
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
54
diff
changeset
|
793 { |
8e897a682208
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
54
diff
changeset
|
794 PRR &= ~_BV(PRADC); |
8e897a682208
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
54
diff
changeset
|
795 |
62 | 796 // /16 prescaler |
55
8e897a682208
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
54
diff
changeset
|
797 ADCSRA = _BV(ADEN) | _BV(ADPS2); |
8e897a682208
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
54
diff
changeset
|
798 |
8e897a682208
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
54
diff
changeset
|
799 // set to measure 1.1 reference |
58 | 800 ADMUX = _BV(REFS0) | _BV(MUX3) | _BV(MUX2) | _BV(MUX1); |
60 | 801 // average a number of samples |
802 uint16_t sum = 0; | |
803 uint8_t num = 0; | |
804 for (uint8_t n = 0; n < 20; n++) | |
59 | 805 { |
806 ADCSRA |= _BV(ADSC); | |
807 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
|
808 |
60 | 809 uint8_t low_11 = ADCL; |
810 uint8_t high_11 = ADCH; | |
811 uint16_t val = low_11 + (high_11 << 8); | |
6 | 812 |
60 | 813 if (n >= 4) |
814 { | |
815 sum += val; | |
816 num++; | |
817 } | |
818 } | |
819 ADCSRA = 0; | |
820 PRR |= _BV(PRADC); | |
6 | 821 |
80 | 822 //float res_volts = 1.1 * 1024 * num / sum; |
823 //return 1000 * res_volts; | |
824 return ((uint32_t)1100*1024*num) / sum; | |
6 | 825 } |
826 | |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
827 static void |
115 | 828 do_fridge() |
829 { | |
830 struct epoch_ticks now; | |
831 get_epoch_ticks(&now); | |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
832 uint16_t off_time = now.ticks - fridge_off_clock.ticks; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
833 bool wort_valid = last_wort != DS18X20_INVALID_DECICELSIUS; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
834 bool fridge_valid = last_fridge != DS18X20_INVALID_DECICELSIUS; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
835 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
836 int16_t wort_max = fridge_setpoint + fridge_difference; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
837 int16_t wort_min = fridge_setpoint; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
838 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
839 // the fridge min only applies when the wort is in the desired range. |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
840 int16_t fridge_min = fridge_setpoint - FRIDGE_AIR_MIN_RANGE; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
841 int16_t fridge_max = fridge_setpoint + FRIDGE_AIR_MAX_RANGE; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
842 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
843 uint8_t fridge_on = PORT_FRIDGE & _BV(PIN_FRIDGE); |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
844 printf_P(PSTR("last_wort %hd (%hd, %hd), last_fridge %hd (%hd, %hd), setpoint %hd, diff %hd, fridge_on %d\n"), |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
845 last_wort, wort_min, wort_max, |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
846 fridge_setpoint, fridge_min, fridge_max, |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
847 fridge_difference, fridge_on); |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
848 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
849 if (off_time < fridge_delay) |
115 | 850 { |
118
bb0c946460f3
a bit more logging. make printf floats work
Matt Johnston <matt@ucc.asn.au>
parents:
117
diff
changeset
|
851 printf_P(PSTR("waiting for fridge delay current %hu, wait %hu\n"), |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
852 off_time, fridge_delay); |
115 | 853 return; |
854 } | |
855 | |
856 | |
857 if (fridge_on) | |
858 { | |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
859 bool turn_off = false; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
860 uint16_t on_time = now.ticks - fridge_on_clock.ticks; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
861 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
862 // *10 for decicelcius |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
863 uint16_t overshoot = OVERSHOOT_SCALE * 10.0f * MAX(3600, on_time) / 3600.0; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
864 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
865 // wort has cooled enough. will probably cool a bit more by itself |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
866 if (wort_valid && (last_wort-overshoot) <= fridge_setpoint) |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
867 { |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
868 printf_P("wort has cooled enough, overshoot %hu\n", overshoot); |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
869 turn_off = true; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
870 } |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
871 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
872 // fridge is much cooler than wort |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
873 if ((last_wort < wort_max || !wort_valid) && |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
874 fridge_valid && last_fridge < fridge_min) |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
875 { |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
876 printf_P("fridge is too cold\n"); |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
877 turn_off = true; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
878 } |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
879 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
880 if (turn_off) |
115 | 881 { |
882 // too cold, turn off | |
118
bb0c946460f3
a bit more logging. make printf floats work
Matt Johnston <matt@ucc.asn.au>
parents:
117
diff
changeset
|
883 printf_P(PSTR("Turning fridge off\n")); |
115 | 884 PORT_FRIDGE &= ~_BV(PIN_FRIDGE); |
885 fridge_off_clock = now; | |
886 } | |
887 } | |
888 else | |
889 { | |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
890 bool turn_on = false; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
891 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
892 if (wort_valid && last_wort >= wort_max) |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
893 { |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
894 printf_P("wort is too hot\n"); |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
895 turn_on = true; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
896 } |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
897 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
898 if ((last_wort > wort_min || !wort_valid) && |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
899 (fridge_valid && last_fridge > fridge_setpoint)) |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
900 { |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
901 printf_P("fridge is too hot\n"); |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
902 turn_on = true; |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
903 } |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
904 |
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
905 if (turn_on) |
115 | 906 { |
907 // too hot, turn on | |
118
bb0c946460f3
a bit more logging. make printf floats work
Matt Johnston <matt@ucc.asn.au>
parents:
117
diff
changeset
|
908 printf_P(PSTR("Turning fridge on\n")); |
115 | 909 PORT_FRIDGE |= _BV(PIN_FRIDGE); |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
910 fridge_on_clock = now; |
115 | 911 } |
912 } | |
913 } | |
914 | |
915 static void | |
1 | 916 do_measurement() |
917 { | |
75
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
62
diff
changeset
|
918 blink(); |
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
62
diff
changeset
|
919 |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
920 /* Take the timer here since deep_sleep() below could take 6 seconds */ |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
921 get_epoch_ticks(&last_measurement_clock); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
922 if (n_measurements == 0) |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
923 { |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
924 first_measurement_clock = last_measurement_clock; |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
925 } |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
926 |
55
8e897a682208
untested code to log voltage and internal temperature
Matt Johnston <matt@ucc.asn.au>
parents:
54
diff
changeset
|
927 simple_ds18b20_start_meas(NULL); |
59 | 928 // sleep rather than using a long delay |
117 | 929 idle_sleep(); |
59 | 930 //_delay_ms(DS18B20_TCONV_12BIT); |
13 | 931 |
80 | 932 if (n_measurements == max_measurements) |
13 | 933 { |
934 n_measurements = 0; | |
935 } | |
6 | 936 |
80 | 937 for (uint8_t s = 0; s < n_sensors; s++) |
13 | 938 { |
75
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
62
diff
changeset
|
939 uint16_t reading; |
80 | 940 uint8_t ret = simple_ds18b20_read_raw(sensor_id[s], &reading); |
941 if (ret != DS18X20_OK) | |
13 | 942 { |
80 | 943 reading = VALUE_BROKEN; |
13 | 944 } |
80 | 945 set_measurement(s, n_measurements, reading); |
115 | 946 |
947 if (memcmp(sensor_id[s], fridge_id, sizeof(fridge_id)) == 0) | |
948 { | |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
949 last_fridge = ds18b20_raw16_to_decicelsius(reading); |
115 | 950 } |
951 if (memcmp(sensor_id[s], wort_id, sizeof(wort_id)) == 0) | |
952 { | |
121
45c051a7db82
try and take account of the fridge temperature too
Matt Johnston <matt@ucc.asn.au>
parents:
118
diff
changeset
|
953 last_wort = ds18b20_raw16_to_decicelsius(reading); |
115 | 954 } |
13 | 955 } |
22
885532437100
A bit of work on the server python
Matt Johnston <matt@ucc.asn.au>
parents:
20
diff
changeset
|
956 |
14 | 957 n_measurements++; |
1 | 958 } |
959 | |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
960 static void |
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
961 do_comms() |
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
962 { |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
963 get_epoch_ticks(&last_comms_clock); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
964 |
41 | 965 // turn on bluetooth |
24
44c5ab5ea879
- some fixes for server code
Matt Johnston <matt@ucc.asn.au>
parents:
22
diff
changeset
|
966 set_aux_power(1); |
89
51d889ad39a3
main.c : add a delay before turning on uart
Matt Johnston <matt@ucc.asn.au>
parents:
87
diff
changeset
|
967 // avoid receiving rubbish, perhaps |
51d889ad39a3
main.c : add a delay before turning on uart
Matt Johnston <matt@ucc.asn.au>
parents:
87
diff
changeset
|
968 _delay_ms(50); |
7 | 969 uart_on(); |
41 | 970 |
971 // write sd card here? same 3.3v regulator... | |
972 | |
80 | 973 for (comms_timeout = wake_secs; |
974 comms_timeout > 0 || stay_awake; | |
975 ) | |
41 | 976 { |
6 | 977 if (need_measurement) |
978 { | |
14 | 979 need_measurement = 0; |
6 | 980 do_measurement(); |
115 | 981 do_fridge(); |
44 | 982 continue; |
6 | 983 } |
984 | |
27
dbbd503119ba
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
26
diff
changeset
|
985 if (have_cmd) |
dbbd503119ba
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
26
diff
changeset
|
986 { |
dbbd503119ba
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
26
diff
changeset
|
987 have_cmd = 0; |
dbbd503119ba
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
26
diff
changeset
|
988 read_handler(); |
44 | 989 continue; |
27
dbbd503119ba
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
26
diff
changeset
|
990 } |
dbbd503119ba
Add some web server handling
Matt Johnston <matt@ucc.asn.au>
parents:
26
diff
changeset
|
991 |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
992 // wait for commands from the master |
41 | 993 idle_sleep(); |
994 } | |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
995 |
6 | 996 uart_off(); |
46
9ccd965d938a
Use the PRR etc, set value to proper ones
Matt Johnston <matt@ucc.asn.au>
parents:
44
diff
changeset
|
997 // 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
|
998 _delay_ms(100); |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
999 set_aux_power(0); |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
1000 } |
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
1001 |
7 | 1002 static void |
1003 blink() | |
1004 { | |
1005 PORT_LED &= ~_BV(PIN_LED); | |
9 | 1006 _delay_ms(1); |
7 | 1007 PORT_LED |= _BV(PIN_LED); |
1008 } | |
1009 | |
1010 static void | |
1011 long_delay(int ms) | |
1012 { | |
1013 int iter = ms / 100; | |
1014 | |
1015 for (int i = 0; i < iter; i++) | |
1016 { | |
1017 _delay_ms(100); | |
1018 } | |
1019 } | |
1020 | |
8 | 1021 ISR(BADISR_vect) |
1022 { | |
14 | 1023 //uart_on(); |
8 | 1024 printf_P(PSTR("Bad interrupt\n")); |
1025 } | |
1026 | |
0 | 1027 int main(void) |
1028 { | |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
1029 setup_chip(); |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
1030 blink(); |
9 | 1031 |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
1032 set_aux_power(0); |
7 | 1033 |
6 | 1034 stdout = &mystdout; |
7 | 1035 uart_on(); |
1036 | |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
1037 printf(PSTR("Started.\n")); |
13 | 1038 |
80 | 1039 load_params(); |
13 | 1040 |
76
6e47a61edc47
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
75
diff
changeset
|
1041 init_sensors(); |
6e47a61edc47
don't store sensors in eeprom, scan at startup instead
Matt Johnston <matt@ucc.asn.au>
parents:
75
diff
changeset
|
1042 |
8 | 1043 uart_off(); |
0 | 1044 |
6 | 1045 // 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
|
1046 PRR = _BV(PRTWI) | _BV(PRTIM0) | _BV(PRTIM1) | _BV(PRSPI) | _BV(PRUSART0) | _BV(PRADC); |
8 | 1047 |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
1048 setup_tick_counter(); |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
1049 |
12 | 1050 sei(); |
8 | 1051 |
25
2943f62c8e62
- Make the python work on openwrt
Matt Johnston <matt@ucc.asn.au>
parents:
24
diff
changeset
|
1052 need_comms = 1; |
36
a670a67ba489
- decrease measurement interval, measure at start
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
1053 need_measurement = 1; |
25
2943f62c8e62
- Make the python work on openwrt
Matt Johnston <matt@ucc.asn.au>
parents:
24
diff
changeset
|
1054 |
117 | 1055 stay_awake = 1; |
1056 | |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
1057 for(;;) |
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
1058 { |
90
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
1059 if (button_pressed) |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
1060 { |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
1061 // debounce |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
1062 _delay_ms(200); |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
1063 need_comms = 1; |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
1064 comms_timeout = wake_secs; |
a1c1c2d475b0
print the remainder of timers as well
Matt Johnston <matt@ucc.asn.au>
parents:
89
diff
changeset
|
1065 button_pressed = 0; |
41 | 1066 continue; |
1 | 1067 } |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
1068 |
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
1069 if (need_comms) |
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
1070 { |
16
5075d8c428bd
untested, add comms timeout code
Matt Johnston <matt@ucc.asn.au>
parents:
15
diff
changeset
|
1071 need_comms = 0; |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
1072 do_comms(); |
41 | 1073 continue; |
4
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
1074 } |
54d369e3d689
Fill out more main.c structure
Matt Johnston <matt@ucc.asn.au>
parents:
3
diff
changeset
|
1075 |
97 | 1076 if (need_measurement) |
1077 { | |
1078 need_measurement = 0; | |
1079 do_measurement(); | |
115 | 1080 do_fridge(); |
97 | 1081 continue; |
1082 } | |
1083 | |
41 | 1084 deep_sleep(); |
0 | 1085 } |
12 | 1086 |
0 | 1087 return 0; /* never reached */ |
1088 } |