Mercurial > templog
annotate simple_ds18b20.c @ 482:9950ffa9a79b
set nearly working
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 04 Feb 2014 22:49:16 +0800 |
parents | a60a015732ea |
children |
rev | line source |
---|---|
318 | 1 // Matt Johnston 2012 |
2 // Based on ds18x20.c by Martin Thomas, in turn based on code by | |
3 // Peter // Dannegger and others. | |
4 // | |
5 #include <stdio.h> | |
6 #include <avr/pgmspace.h> | |
7 | |
8 #include "ds18x20.h" | |
9 #include "onewire.h" | |
10 #include "crc8.h" | |
11 | |
12 #include "simple_ds18b20.h" | |
13 | |
14 uint8_t | |
15 simple_ds18b20_start_meas(uint8_t id[]) | |
16 { | |
17 uint8_t ret; | |
18 | |
19 ow_reset(); | |
20 if( ow_input_pin_state() ) { // only send if bus is "idle" = high | |
21 ow_command_with_parasite_enable(DS18X20_CONVERT_T, id); | |
22 ret = DS18X20_OK; | |
23 } | |
24 else { | |
25 ret = DS18X20_START_FAIL; | |
26 } | |
27 | |
28 return ret; | |
29 } | |
30 | |
31 static uint8_t | |
32 read_scratchpad( uint8_t id[], uint8_t sp[], uint8_t n ) | |
33 { | |
34 uint8_t i; | |
35 uint8_t ret; | |
36 | |
37 ow_command( DS18X20_READ, id ); | |
38 for ( i = 0; i < n; i++ ) { | |
39 sp[i] = ow_byte_rd(); | |
40 } | |
41 if ( crc8( &sp[0], DS18X20_SP_SIZE ) ) { | |
42 ret = DS18X20_ERROR_CRC; | |
43 } else { | |
44 ret = DS18X20_OK; | |
45 } | |
46 | |
47 return ret; | |
48 } | |
49 | |
414 | 50 int16_t |
51 ds18b20_raw16_to_decicelsius(uint16_t measure) | |
318 | 52 { |
53 uint8_t negative; | |
54 int16_t decicelsius; | |
55 uint16_t fract; | |
56 | |
57 // check for negative | |
58 if ( measure & 0x8000 ) { | |
59 negative = 1; // mark negative | |
60 measure ^= 0xffff; // convert to positive => (twos complement)++ | |
61 measure++; | |
62 } | |
63 else { | |
64 negative = 0; | |
65 } | |
66 | |
67 decicelsius = (measure >> 4); | |
68 decicelsius *= 10; | |
69 | |
70 // decicelsius += ((measure & 0x000F) * 640 + 512) / 1024; | |
71 // 625/1000 = 640/1024 | |
72 fract = ( measure & 0x000F ) * 640; | |
73 if ( !negative ) { | |
74 fract += 512; | |
75 } | |
76 fract /= 1024; | |
77 decicelsius += fract; | |
78 | |
79 if ( negative ) { | |
80 decicelsius = -decicelsius; | |
81 } | |
82 | |
419 | 83 if ( decicelsius == 850 || decicelsius < -550 || decicelsius > 1250 ) { |
318 | 84 return DS18X20_INVALID_DECICELSIUS; |
85 } else { | |
86 return decicelsius; | |
87 } | |
88 } | |
89 | |
90 uint8_t | |
91 simple_ds18b20_read_decicelsius( uint8_t id[], int16_t *decicelsius ) | |
92 { | |
414 | 93 uint16_t reading; |
318 | 94 uint8_t ret; |
414 | 95 |
96 ret = simple_ds18b20_read_raw(id, &reading); | |
97 if (ret == DS18X20_OK) | |
98 { | |
99 *decicelsius = ds18b20_raw16_to_decicelsius(reading); | |
100 } | |
101 return ret; | |
318 | 102 } |
103 | |
381
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
104 uint8_t |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
105 simple_ds18b20_read_raw( uint8_t id[], uint16_t *reading ) |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
106 { |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
107 uint8_t sp[DS18X20_SP_SIZE]; |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
108 uint8_t ret; |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
109 |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
110 if (id) |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
111 { |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
112 ow_reset(); |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
113 } |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
114 ret = read_scratchpad( id, sp, DS18X20_SP_SIZE ); |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
115 if ( ret == DS18X20_OK ) { |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
116 *reading = sp[0] | (sp[1] << 8); |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
117 } |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
118 return ret; |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
119 } |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
120 |
318 | 121 static void |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
319
diff
changeset
|
122 printhex_nibble(const unsigned char b, FILE *stream) |
318 | 123 { |
124 unsigned char c = b & 0x0f; | |
125 if ( c > 9 ) { | |
126 c += 'A'-10; | |
127 } | |
128 else { | |
129 c += '0'; | |
130 } | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
319
diff
changeset
|
131 fputc(c, stream); |
318 | 132 } |
133 | |
134 void | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
319
diff
changeset
|
135 printhex_byte(const unsigned char b, FILE *stream) |
318 | 136 { |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
319
diff
changeset
|
137 printhex_nibble( b >> 4, stream); |
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
319
diff
changeset
|
138 printhex_nibble( b, stream); |
318 | 139 } |
140 | |
141 void | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
319
diff
changeset
|
142 printhex(uint8_t *id, uint8_t n, FILE *stream) |
318 | 143 { |
144 for (uint8_t i = 0; i < n; i++) | |
145 { | |
146 if (i > 0) | |
147 { | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
319
diff
changeset
|
148 fputc(' ', stream); |
318 | 149 } |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
319
diff
changeset
|
150 printhex_byte(id[i], stream); |
318 | 151 } |
152 } | |
153 | |
154 | |
155 uint8_t | |
156 simple_ds18b20_read_all() | |
157 { | |
158 uint8_t id[OW_ROMCODE_SIZE]; | |
159 for( uint8_t diff = OW_SEARCH_FIRST; diff != OW_LAST_DEVICE; ) | |
160 { | |
161 diff = ow_rom_search( diff, &id[0] ); | |
162 | |
163 if( diff == OW_PRESENCE_ERR ) { | |
164 printf_P( PSTR("No Sensor found\r") ); | |
165 return OW_PRESENCE_ERR; // <--- early exit! | |
166 } | |
167 | |
168 if( diff == OW_DATA_ERR ) { | |
169 printf_P( PSTR("Bus Error\r") ); | |
170 return OW_DATA_ERR; // <--- early exit! | |
171 } | |
172 | |
173 int16_t decicelsius; | |
174 uint8_t ret = simple_ds18b20_read_decicelsius(NULL, &decicelsius); | |
175 if (ret != DS18X20_OK) | |
176 { | |
177 printf_P(PSTR("Failed reading\r")); | |
178 return OW_DATA_ERR; | |
179 } | |
180 | |
181 printf_P(PSTR("DS18B20 %d: "), diff); | |
182 if (crc8(id, OW_ROMCODE_SIZE)) | |
183 { | |
184 printf_P(PSTR("CRC fail")); | |
185 } | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
319
diff
changeset
|
186 printhex(id, OW_ROMCODE_SIZE, stdout); |
318 | 187 printf_P(PSTR(" %d.%d ºC\n"), decicelsius/10, decicelsius % 10); |
188 } | |
189 printf_P(PSTR("Done sensors\n")); | |
190 return DS18X20_OK; | |
191 } | |
192 |