1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/shtcx/shtcx.c
2022-07-20 17:37:33 +02:00

141 lines
4.0 KiB
C

/*
* Copyright (C) 2017 RWTH-Aachen
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup drivers_shtcx
* @{
*
* @file
* @brief Device driver implementation for the Sensirion SHTCX temperature
* and humidity sensor.
*
* @author Steffen Robertz <steffen.robertz@rwth-aachen.de>
* @author Josua Arndt <jarndt@ias.rwth-aachen.de>
* @}
*/
#include <string.h>
#include <math.h>
#include "log.h"
#include "assert.h"
#include "checksum/crc8.h"
#include "shtcx.h"
#include "shtcx_regs.h"
#define ENABLE_DEBUG 0
#include "debug.h"
int8_t shtcx_init(shtcx_t *const dev, const shtcx_params_t *params)
{
uint16_t id;
/* check for a valid device descriptor and parameters */
assert(dev && params);
/* copy settings into the device descriptor */
dev->params = *params;
/* Verify the connection by reading the SHTCX's ID and checking its value */
if (shtcx_id(dev, &id) != SHTCX_OK) {
return SHTCX_ERROR_BUS;
}
else if ((id & 0x3F) != SHTCX_ID) {
return SHTCX_ERROR_CRC;
}
else {
return SHTCX_OK;
}
}
int8_t shtcx_read(const shtcx_t *dev, uint16_t *rel_humidity,
int16_t *temperature)
{
uint8_t received[6];
/* Build and issue the measurement command */
uint8_t cmd[] =
{ SHTCX_MEASURE_CLOCK_STRETCHING_TEMP_HIGH,
SHTCX_MEASURE_CLOCK_STRETCHING_TEMP_LOW };
i2c_acquire(dev->params.i2c_dev);
if (i2c_write_bytes(dev->params.i2c_dev, dev->params.i2c_addr, cmd, 2, 0)) {
i2c_release(dev->params.i2c_dev);
return SHTCX_ERROR_BUS;
}
/* Receive the measurement */
/* 16 bit Temperature
* 8 bit CRC temp
* 16 Bit Absolute Humidity
* 8 bit CRC Hum
*/
if (i2c_read_bytes(dev->params.i2c_dev, dev->params.i2c_addr, received, 6,
0)) {
i2c_release(dev->params.i2c_dev);
return SHTCX_ERROR_BUS;
}
i2c_release(dev->params.i2c_dev);
if (rel_humidity != NULL) {
uint32_t abs_humidity = ((received[3] << 8) | received[4]);
/* 10000 * ( abs_humidity /65536) */
*rel_humidity = (10000 * abs_humidity) >> 16;
}
if (temperature != NULL) {
uint16_t temp_f = ((received[0] << 8) | received[1]);
/* calculate the relative humidity and convert the temperature to centi °C */
/* (175.0 * 100 * temp_f / 65536) - 45 ; */
*temperature = ((17500 * (uint32_t)temp_f) >> 16) - 4500;
}
if (!((crc8(&received[0], 2, SHTCX_CRC, 0xFF) == received[2]) &&
(crc8(&received[3], 2, SHTCX_CRC, 0xFF) == received[5]))) {
/* crc check failed */
DEBUG("CRC Error\n");
return SHTCX_ERROR_CRC;
}
DEBUG("CRC Passed! \n");
return SHTCX_OK;
}
int8_t shtcx_id(const shtcx_t *dev, uint16_t *id)
{
/* Build and send measurement command */
uint8_t data[] = { SHTCX_COMMAND_ID_HIGH, SHTCX_COMMAND_ID_LOW };
i2c_acquire(dev->params.i2c_dev);
if (i2c_write_bytes(dev->params.i2c_dev, dev->params.i2c_addr, data, 2,
0)) {
i2c_release(dev->params.i2c_dev);
return SHTCX_ERROR_BUS;
}
/* receive ID and check if the send and receive commands were successful */
if (i2c_read_bytes(dev->params.i2c_dev, dev->params.i2c_addr, data, 2, 0)) {
i2c_release(dev->params.i2c_dev);
return SHTCX_ERROR_BUS;
}
i2c_release(dev->params.i2c_dev);
/* Save ID in device descriptor */
*id = (data[0] << 8) | data[1];
return SHTCX_OK;
}
int8_t shtcx_reset(const shtcx_t *const dev)
{
/* Build and issue the reset command */
uint8_t data[] = { SHTCX_COMMAND_RESET_HIGH, SHTCX_COMMAND_RESET_LOW };
i2c_acquire(dev->params.i2c_dev);
if (i2c_write_bytes(dev->params.i2c_dev, dev->params.i2c_addr, data, 2,
0)) {
i2c_release(dev->params.i2c_dev);
return SHTCX_ERROR_BUS;
}
i2c_release(dev->params.i2c_dev);
return SHTCX_OK;
}