Files
ETcontroller_ST/DS18B20/crc8.h

10 lines
175 B
C

#ifndef _CRC8_
#define _CRC8_
#include <mbed.h>
#ifdef __cplusplus
extern "C" {
#endif
uint8_t crc8 (uint8_t* data_in, uint16_t number_of_bytes_to_read);
#endif
}