forked from nimaltd/ds18b20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ds18b20.c
569 lines (487 loc) · 14 KB
/
ds18b20.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
#include "ds18b20.h"
//###################################################################################
Ds18b20Sensor_t ds18b20[_DS18B20_MAX_SENSORS];
OneWire_t OneWire;
uint8_t OneWireDevices;
uint8_t TempSensorCount=0;
uint8_t Ds18b20StartConvert=0;
uint16_t Ds18b20Timeout=0;
#if (_DS18B20_USE_FREERTOS==1)
osThreadId Ds18b20Handle;
void Task_Ds18b20(void const * argument);
#endif
//###########################################################################################
#if (_DS18B20_USE_FREERTOS==1)
void Ds18b20_Init(osPriority Priority)
{
const osThreadAttr_t Task_Ds18b20_attributes = {
.name = "Ds18b20_Task",
.stack_size = 128 * 1,
.priority = (osPriority_t) Priority,
};
Ds18b20Handle = osThreadNew(Task_Ds18b20, NULL, &Task_Ds18b20_attributes);
// osThreadDef(myTask_Ds18b20, Task_Ds18b20, Priority, 0, 128); // OLD
// Ds18b20Handle = osThreadCreate(osThread(Task_Ds18b20), NULL);
}
#else
bool Ds18b20_Init(void)
{
uint8_t Ds18b20TryToFind=5;
do
{
OneWire_Init(&OneWire,_DS18B20_GPIO ,_DS18B20_PIN);
TempSensorCount = 0;
while(HAL_GetTick() < 3000)
Ds18b20Delay(100);
OneWireDevices = OneWire_First(&OneWire);
while (OneWireDevices)
{
Ds18b20Delay(100);
TempSensorCount++;
OneWire_GetFullROM(&OneWire, ds18b20[TempSensorCount-1].Address);
OneWireDevices = OneWire_Next(&OneWire);
}
if(TempSensorCount>0)
break;
Ds18b20TryToFind--;
}while(Ds18b20TryToFind>0);
if(Ds18b20TryToFind==0)
return false;
for (uint8_t i = 0; i < TempSensorCount; i++)
{
Ds18b20Delay(50);
DS18B20_SetResolution(&OneWire, ds18b20[i].Address, DS18B20_Resolution_12bits);
Ds18b20Delay(50);
DS18B20_DisableAlarmTemperature(&OneWire, ds18b20[i].Address);
}
return true;
}
#endif
//###########################################################################################
bool Ds18b20_ManualConvert(void)
{
#if (_DS18B20_USE_FREERTOS==1)
Ds18b20StartConvert=1;
while(Ds18b20StartConvert==1)
Ds18b20Delay(10);
if(Ds18b20Timeout==0)
return false;
else
return true;
#else
Ds18b20Timeout=_DS18B20_CONVERT_TIMEOUT_MS/10;
DS18B20_StartAll(&OneWire);
Ds18b20Delay(100);
while (!DS18B20_AllDone(&OneWire))
{
Ds18b20Delay(10);
Ds18b20Timeout-=1;
if(Ds18b20Timeout==0)
break;
}
if(Ds18b20Timeout>0)
{
for (uint8_t i = 0; i < TempSensorCount; i++)
{
Ds18b20Delay(100);
ds18b20[i].DataIsValid = DS18B20_Read(&OneWire, ds18b20[i].Address, &ds18b20[i].Temperature);
}
}
else
{
for (uint8_t i = 0; i < TempSensorCount; i++)
ds18b20[i].DataIsValid = false;
}
if(Ds18b20Timeout==0)
return false;
else
return true;
#endif
}
//###########################################################################################
#if (_DS18B20_USE_FREERTOS==1)
void Task_Ds18b20(void const * argument)
{
uint8_t Ds18b20TryToFind=5;
do
{
OneWire_Init(&OneWire,_DS18B20_GPIO ,_DS18B20_PIN);
TempSensorCount = 0;
while(HAL_GetTick() < 3000)
Ds18b20Delay(100);
OneWireDevices = OneWire_First(&OneWire);
while (OneWireDevices)
{
Ds18b20Delay(100);
TempSensorCount++;
OneWire_GetFullROM(&OneWire, ds18b20[TempSensorCount-1].Address);
OneWireDevices = OneWire_Next(&OneWire);
}
if(TempSensorCount>0)
break;
Ds18b20TryToFind--;
}while(Ds18b20TryToFind>0);
if(Ds18b20TryToFind==0)
vTaskDelete(Ds18b20Handle);
for (uint8_t i = 0; i < TempSensorCount; i++)
{
Ds18b20Delay(50);
DS18B20_SetResolution(&OneWire, ds18b20[i].Address, DS18B20_Resolution_12bits);
Ds18b20Delay(50);
DS18B20_DisableAlarmTemperature(&OneWire, ds18b20[i].Address);
}
for(;;)
{
while(_DS18B20_UPDATE_INTERVAL_MS==0)
{
if(Ds18b20StartConvert==1)
break;
Ds18b20Delay(10);
}
Ds18b20Timeout=_DS18B20_CONVERT_TIMEOUT_MS/10;
DS18B20_StartAll(&OneWire);
osDelay(100);
while (!DS18B20_AllDone(&OneWire))
{
osDelay(10);
Ds18b20Timeout-=1;
if(Ds18b20Timeout==0)
break;
}
if(Ds18b20Timeout>0)
{
for (uint8_t i = 0; i < TempSensorCount; i++)
{
Ds18b20Delay(1000);
ds18b20[i].DataIsValid = DS18B20_Read(&OneWire, ds18b20[i].Address, &ds18b20[i].Temperature);
}
}
else
{
for (uint8_t i = 0; i < TempSensorCount; i++)
ds18b20[i].DataIsValid = false;
}
Ds18b20StartConvert=0;
osDelay(_DS18B20_UPDATE_INTERVAL_MS);
}
}
#endif
//###########################################################################################
uint8_t DS18B20_Start(OneWire_t* OneWire, uint8_t *ROM)
{
/* Check if device is DS18B20 */
if (!DS18B20_Is(ROM)) {
return 0;
}
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Start temperature conversion */
OneWire_WriteByte(OneWire, DS18B20_CMD_CONVERTTEMP);
return 1;
}
void DS18B20_StartAll(OneWire_t* OneWire)
{
/* Reset pulse */
OneWire_Reset(OneWire);
/* Skip rom */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_SKIPROM);
/* Start conversion on all connected devices */
OneWire_WriteByte(OneWire, DS18B20_CMD_CONVERTTEMP);
}
bool DS18B20_Read(OneWire_t* OneWire, uint8_t *ROM, float *destination)
{
uint16_t temperature;
uint8_t resolution;
int8_t digit, minus = 0;
float decimal;
uint8_t i = 0;
uint8_t data[9];
uint8_t crc;
/* Check if device is DS18B20 */
if (!DS18B20_Is(ROM)) {
return false;
}
/* Check if line is released, if it is, then conversion is complete */
if (!OneWire_ReadBit(OneWire))
{
/* Conversion is not finished yet */
return false;
}
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Read scratchpad command by onewire protocol */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_RSCRATCHPAD);
/* Get data */
for (i = 0; i < 9; i++)
{
/* Read byte by byte */
data[i] = OneWire_ReadByte(OneWire);
}
/* Calculate CRC */
crc = OneWire_CRC8(data, 8);
/* Check if CRC is ok */
if (crc != data[8])
/* CRC invalid */
return 0;
/* First two bytes of scratchpad are temperature values */
temperature = data[0] | (data[1] << 8);
/* Reset line */
OneWire_Reset(OneWire);
/* Check if temperature is negative */
if (temperature & 0x8000)
{
/* Two's complement, temperature is negative */
temperature = ~temperature + 1;
minus = 1;
}
/* Get sensor resolution */
resolution = ((data[4] & 0x60) >> 5) + 9;
/* Store temperature integer digits and decimal digits */
digit = temperature >> 4;
digit |= ((temperature >> 8) & 0x7) << 4;
/* Store decimal digits */
switch (resolution)
{
case 9:
decimal = (temperature >> 3) & 0x01;
decimal *= (float)DS18B20_DECIMAL_STEPS_9BIT;
break;
case 10:
decimal = (temperature >> 2) & 0x03;
decimal *= (float)DS18B20_DECIMAL_STEPS_10BIT;
break;
case 11:
decimal = (temperature >> 1) & 0x07;
decimal *= (float)DS18B20_DECIMAL_STEPS_11BIT;
break;
case 12:
decimal = temperature & 0x0F;
decimal *= (float)DS18B20_DECIMAL_STEPS_12BIT;
break;
default:
decimal = 0xFF;
digit = 0;
}
/* Check for negative part */
decimal = digit + decimal;
if (minus)
decimal = 0 - decimal;
/* Set to pointer */
*destination = decimal;
/* Return 1, temperature valid */
return true;
}
uint8_t DS18B20_GetResolution(OneWire_t* OneWire, uint8_t *ROM)
{
uint8_t conf;
if (!DS18B20_Is(ROM))
return 0;
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Read scratchpad command by onewire protocol */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_RSCRATCHPAD);
/* Ignore first 4 bytes */
OneWire_ReadByte(OneWire);
OneWire_ReadByte(OneWire);
OneWire_ReadByte(OneWire);
OneWire_ReadByte(OneWire);
/* 5th byte of scratchpad is configuration register */
conf = OneWire_ReadByte(OneWire);
/* Return 9 - 12 value according to number of bits */
return ((conf & 0x60) >> 5) + 9;
}
uint8_t DS18B20_SetResolution(OneWire_t* OneWire, uint8_t *ROM, DS18B20_Resolution_t resolution)
{
uint8_t th, tl, conf;
if (!DS18B20_Is(ROM))
return 0;
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Read scratchpad command by onewire protocol */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_RSCRATCHPAD);
/* Ignore first 2 bytes */
OneWire_ReadByte(OneWire);
OneWire_ReadByte(OneWire);
th = OneWire_ReadByte(OneWire);
tl = OneWire_ReadByte(OneWire);
conf = OneWire_ReadByte(OneWire);
if (resolution == DS18B20_Resolution_9bits)
{
conf &= ~(1 << DS18B20_RESOLUTION_R1);
conf &= ~(1 << DS18B20_RESOLUTION_R0);
}
else if (resolution == DS18B20_Resolution_10bits)
{
conf &= ~(1 << DS18B20_RESOLUTION_R1);
conf |= 1 << DS18B20_RESOLUTION_R0;
}
else if (resolution == DS18B20_Resolution_11bits)
{
conf |= 1 << DS18B20_RESOLUTION_R1;
conf &= ~(1 << DS18B20_RESOLUTION_R0);
}
else if (resolution == DS18B20_Resolution_12bits)
{
conf |= 1 << DS18B20_RESOLUTION_R1;
conf |= 1 << DS18B20_RESOLUTION_R0;
}
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Write scratchpad command by onewire protocol, only th, tl and conf register can be written */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_WSCRATCHPAD);
/* Write bytes */
OneWire_WriteByte(OneWire, th);
OneWire_WriteByte(OneWire, tl);
OneWire_WriteByte(OneWire, conf);
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Copy scratchpad to EEPROM of DS18B20 */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_CPYSCRATCHPAD);
return 1;
}
uint8_t DS18B20_Is(uint8_t *ROM)
{
/* Checks if first byte is equal to DS18B20's family code */
if (*ROM == DS18B20_FAMILY_CODE)
return 1;
return 0;
}
uint8_t DS18B20_SetAlarmLowTemperature(OneWire_t* OneWire, uint8_t *ROM, int8_t temp)
{
uint8_t tl, th, conf;
if (!DS18B20_Is(ROM))
return 0;
if (temp > 125)
temp = 125;
if (temp < -55)
temp = -55;
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Read scratchpad command by onewire protocol */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_RSCRATCHPAD);
/* Ignore first 2 bytes */
OneWire_ReadByte(OneWire);
OneWire_ReadByte(OneWire);
th = OneWire_ReadByte(OneWire);
tl = OneWire_ReadByte(OneWire);
conf = OneWire_ReadByte(OneWire);
tl = (uint8_t)temp;
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Write scratchpad command by onewire protocol, only th, tl and conf register can be written */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_WSCRATCHPAD);
/* Write bytes */
OneWire_WriteByte(OneWire, th);
OneWire_WriteByte(OneWire, tl);
OneWire_WriteByte(OneWire, conf);
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Copy scratchpad to EEPROM of DS18B20 */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_CPYSCRATCHPAD);
return 1;
}
uint8_t DS18B20_SetAlarmHighTemperature(OneWire_t* OneWire, uint8_t *ROM, int8_t temp)
{
uint8_t tl, th, conf;
if (!DS18B20_Is(ROM))
return 0;
if (temp > 125)
temp = 125;
if (temp < -55)
temp = -55;
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Read scratchpad command by onewire protocol */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_RSCRATCHPAD);
/* Ignore first 2 bytes */
OneWire_ReadByte(OneWire);
OneWire_ReadByte(OneWire);
th = OneWire_ReadByte(OneWire);
tl = OneWire_ReadByte(OneWire);
conf = OneWire_ReadByte(OneWire);
th = (uint8_t)temp;
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Write scratchpad command by onewire protocol, only th, tl and conf register can be written */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_WSCRATCHPAD);
/* Write bytes */
OneWire_WriteByte(OneWire, th);
OneWire_WriteByte(OneWire, tl);
OneWire_WriteByte(OneWire, conf);
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Copy scratchpad to EEPROM of DS18B20 */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_CPYSCRATCHPAD);
return 1;
}
uint8_t DS18B20_DisableAlarmTemperature(OneWire_t* OneWire, uint8_t *ROM)
{
uint8_t tl, th, conf;
if (!DS18B20_Is(ROM))
return 0;
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Read scratchpad command by onewire protocol */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_RSCRATCHPAD);
/* Ignore first 2 bytes */
OneWire_ReadByte(OneWire);
OneWire_ReadByte(OneWire);
th = OneWire_ReadByte(OneWire);
tl = OneWire_ReadByte(OneWire);
conf = OneWire_ReadByte(OneWire);
th = 125;
tl = (uint8_t)-55;
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Write scratchpad command by onewire protocol, only th, tl and conf register can be written */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_WSCRATCHPAD);
/* Write bytes */
OneWire_WriteByte(OneWire, th);
OneWire_WriteByte(OneWire, tl);
OneWire_WriteByte(OneWire, conf);
/* Reset line */
OneWire_Reset(OneWire);
/* Select ROM number */
OneWire_SelectWithPointer(OneWire, ROM);
/* Copy scratchpad to EEPROM of DS18B20 */
OneWire_WriteByte(OneWire, ONEWIRE_CMD_CPYSCRATCHPAD);
return 1;
}
uint8_t DS18B20_AlarmSearch(OneWire_t* OneWire)
{
/* Start alarm search */
return OneWire_Search(OneWire, DS18B20_CMD_ALARMSEARCH);
}
uint8_t DS18B20_AllDone(OneWire_t* OneWire)
{
/* If read bit is low, then device is not finished yet with calculation temperature */
return OneWire_ReadBit(OneWire);
}