You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
3.4 KiB
116 lines
3.4 KiB
#ifndef ONE_WIRE_BUS_H
|
|
#define ONE_WIRE_BUS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
// ROM commands
|
|
#define OWB_ROM_SEARCH 0xF0
|
|
#define OWB_ROM_READ 0x33
|
|
#define OWB_ROM_MATCH 0x55
|
|
#define OWB_ROM_SKIP 0xCC
|
|
#define OWB_ROM_SEARCH_ALARM 0xEC
|
|
|
|
|
|
typedef struct _OneWireBus OneWireBus;
|
|
typedef uint64_t OneWireBusROMCode;
|
|
|
|
/**
|
|
* @brief Construct a new 1-Wire bus instance.
|
|
* New instance should be initialised before calling other functions.
|
|
* @return Pointer to new bus instance, or NULL if it cannot be created.
|
|
*/
|
|
OneWireBus * owb_malloc(void);
|
|
|
|
/**
|
|
* @brief Delete an existing device info instance.
|
|
* @param[in] bus Pointer to bus instance.
|
|
* @param[in,out] ds18b20_info Pointer to device info instance that will be freed and set to NULL.
|
|
*/
|
|
void owb_free(OneWireBus ** bus);
|
|
|
|
/**
|
|
* @brief Initialise a 1-Wire bus instance with the specified GPIO.
|
|
* @param[in] bus Pointer to bus instance.
|
|
* @param[in] gpio GPIO number to associate with device.
|
|
*/
|
|
void owb_init(OneWireBus * bus, int gpio);
|
|
|
|
/**
|
|
* @brief Enable or disable use of CRC checks on device communications.
|
|
* @param[in] bus Pointer to initialised bus instance.
|
|
* @param[in] use_crc True to enable CRC checks, false to disable.
|
|
*/
|
|
void owb_use_crc(OneWireBus * bus, bool use_crc);
|
|
|
|
/**
|
|
* @brief Read 64-bit ROM code from device - only works when there is a single device on the bus.
|
|
* @param[in] bus Pointer to initialised bus instance.
|
|
* @return The 64-bit value read from the device's ROM.
|
|
*/
|
|
uint64_t owb_read_rom(const OneWireBus * bus);
|
|
|
|
/**
|
|
* @brief Reset the 1-Wire bus.
|
|
* @param[in] bus Pointer to initialised bus instance.
|
|
* @return True if at least one device is present on the bus.
|
|
*/
|
|
bool owb_reset(const OneWireBus * bus);
|
|
|
|
/**
|
|
* @brief Write a single byte to the 1-Wire bus.
|
|
* @param[in] bus Pointer to initialised bus instance.
|
|
* @param[in] data Byte value to write to bus.
|
|
*/
|
|
void owb_write_byte(const OneWireBus * bus, uint8_t data);
|
|
|
|
/**
|
|
* @brief Read a single byte from the 1-Wire bus.
|
|
* @param[in] bus Pointer to initialised bus instance.
|
|
* @return The byte value read from the bus.
|
|
*/
|
|
uint8_t owb_read_byte(const OneWireBus * bus);
|
|
|
|
/**
|
|
* @brief Read a number of bytes from the 1-Wire bus.
|
|
* @param[in] bus Pointer to initialised bus instance.
|
|
* @param[in, out] buffer Pointer to buffer to receive read data.
|
|
* @param[in] len Number of bytes to read, must not exceed length of receive buffer.
|
|
* @return Pointer to receive buffer.
|
|
*/
|
|
uint8_t * owb_read_bytes(const OneWireBus * bus, uint8_t * buffer, unsigned int len);
|
|
|
|
/**
|
|
* @brief Write a number of bytes to the 1-Wire bus.
|
|
* @param[in] bus Pointer to initialised bus instance.
|
|
* @param[in] buffer Pointer to buffer to write data from.
|
|
* @param[in] len Number of bytes to write.
|
|
* @return Pointer to write buffer.
|
|
*/
|
|
uint8_t * owb_write_bytes(const OneWireBus * bus, const uint8_t * buffer, unsigned int len);
|
|
|
|
/**
|
|
* @brief Write a ROM code to the 1-Wire bus ensuring LSB is sent first.
|
|
* @param[in] bus Pointer to initialised bus instance.
|
|
* @param[in] rom_code ROM code to write to bus.
|
|
*/
|
|
void owb_write_rom_code(const OneWireBus * bus, uint64_t rom_code);
|
|
|
|
/**
|
|
* @brief 1-Wire 8-bit CRC lookup.
|
|
* @param[in] crc Starting CRC value. Pass in prior CRC to accumulate.
|
|
* @param[in] data Byte to feed into CRC.
|
|
* @return Resultant CRC value.
|
|
*/
|
|
uint8_t owb_crc8(uint8_t crc, uint8_t data);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // DS18B20_H
|
|
|