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