Mercurial > templog
comparison simple_ds18b20.h @ 20:878be5e353a0
Untested - calculate crc in uart_putchar
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 22 May 2012 23:23:38 +0800 |
parents | 3c27bfbd7f3a |
children | ca08442635ca |
comparison
equal
deleted
inserted
replaced
19:f1016b151689 | 20:878be5e353a0 |
---|---|
1 #ifndef SIMPLE_DS18B20_H_ | 1 #ifndef SIMPLE_DS18B20_H_ |
2 #define SIMPLE_DS18B20_H_ | 2 #define SIMPLE_DS18B20_H_ |
3 #include <stdint.h> | 3 #include <stdint.h> |
4 #include <stdio.h> | |
4 | 5 |
5 #include "ds18x20.h" | 6 #include "ds18x20.h" |
6 | 7 |
7 uint8_t simple_ds18b20_start_meas(uint8_t id[]); | 8 uint8_t simple_ds18b20_start_meas(uint8_t id[]); |
8 void printhex(uint8_t *id, uint8_t n); | 9 void printhex(uint8_t *id, uint8_t n, FILE *stream); |
9 void printhex_byte( const unsigned char b ); | 10 void printhex_byte( const unsigned char b, FILE *stream ); |
10 uint8_t simple_ds18b20_read_decicelsius( uint8_t id[], int16_t *decicelsius ); | 11 uint8_t simple_ds18b20_read_decicelsius( uint8_t id[], int16_t *decicelsius ); |
11 uint8_t simple_ds18b20_read_all(); | 12 uint8_t simple_ds18b20_read_all(); |
12 | 13 |
13 #endif // SIMPLE_DS18B20_H_ | 14 #endif // SIMPLE_DS18B20_H_ |