Mercurial > templog
comparison simple_ds18b20.h @ 326:f6b5941b4c34
Untested - calculate crc in uart_putchar
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 22 May 2012 23:23:38 +0800 |
parents | 31199b2941f6 |
children | ca08442635ca |
comparison
equal
deleted
inserted
replaced
325:b05c9fd7c098 | 326:f6b5941b4c34 |
---|---|
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_ |