mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-24 11:16:34 +00:00
Add support for BME688
Add support for BME688 with latest Bosch-Sensor-API library (#14513)
This commit is contained in:
parent
abf5aa2f79
commit
7aacdf4fbe
@ -101,7 +101,7 @@ Note: `minimal` variant is not listed as it shouldn't be used outside of the [up
|
||||
| USE_SHT | - | - / x | - | x | - | - |
|
||||
| USE_HTU | - | - / x | - | x | - | - |
|
||||
| USE_BMP | - | - / x | - | x | - | - |
|
||||
| USE_BME680 | - | - / x | - | x | - | - |
|
||||
| USE_BME68X | - | - / x | - | x | - | - |
|
||||
| USE_BH1750 | - | - / x | - | x | - | - |
|
||||
| USE_VEML6070 | - | - / x | - | x | - | - |
|
||||
| USE_ADS1115 | - | - / x | - | x | - | - |
|
||||
|
@ -7,8 +7,10 @@ All notable changes to this project will be documented in this file.
|
||||
### Added
|
||||
- Command ``WebTime <start_pos>,<end_pos>`` to show part of date and/or time in web gui based on "2017-03-07T11:08:02-07:00"
|
||||
- ESP32 disable serial console when 3 (ESP32) or 2 (Other models) serial interfaces are requested (#14487)
|
||||
- Support for BME688 with latest Bosch-Sensor-API library (#14513)
|
||||
|
||||
### Changed
|
||||
- BME68x-Sensor-API library from v3.5.9 to v4.4.7
|
||||
|
||||
### Fixed
|
||||
- OneWire-Stickbreaker (DS18x20) library support for ESP32S2 (#14338)
|
||||
|
@ -116,6 +116,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
|
||||
- Solax X1 negative temperature support [#14278](https://github.com/arendst/Tasmota/issues/14278)
|
||||
- Solax X1 modbus RTS support and offline status [#14305](https://github.com/arendst/Tasmota/issues/14305)
|
||||
- Tasmota favicon to webbrowser tab [#14322](https://github.com/arendst/Tasmota/issues/14322)
|
||||
- Support for BME688 with latest Bosch-Sensor-API library [#14513](https://github.com/arendst/Tasmota/issues/14513)
|
||||
- ESP32 single binary firmware [#14239](https://github.com/arendst/Tasmota/issues/14239)
|
||||
- ESP32 disable serial console when 3 (ESP32) or 2 (Other models) serial interfaces are requested [#14487](https://github.com/arendst/Tasmota/issues/14487)
|
||||
- ESP32 support for TuyaMcu
|
||||
@ -130,6 +131,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
|
||||
- TasmotaModbus library from v1.2.0 to v3.4.0
|
||||
- ESP8266Audio library from v1.9.2 to v1.9.5
|
||||
- ESP8266SAM library from v1.0 to v1.0.1
|
||||
- BME68x-Sensor-API library from v3.5.9 to v4.4.7
|
||||
- From Semantic Versioning (SemVer) to Calendar Versioning (CalVer)
|
||||
- Mitsubishi HVAC temperature resolution [#13936](https://github.com/arendst/Tasmota/issues/13936)
|
||||
- Remove restriction of topic must differ from mqttclient [#14019](https://github.com/arendst/Tasmota/issues/14019)
|
||||
|
@ -1,39 +0,0 @@
|
||||
Copyright (C) 2017 - 2018 Bosch Sensortec GmbH
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
Neither the name of the copyright holder nor the names of the
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER
|
||||
OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
||||
OR CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
|
||||
|
||||
The information provided is believed to be accurate and reliable.
|
||||
The copyright holder assumes no responsibility
|
||||
for the consequences of use
|
||||
of such information nor for any infringement of patents or
|
||||
other rights of third parties which may result from its use.
|
||||
No license is granted by implication or otherwise under any patent or
|
||||
patent rights of the copyright holder.
|
@ -1,282 +0,0 @@
|
||||
# BME680 sensor API
|
||||
|
||||
## Introduction
|
||||
|
||||
This package contains the Bosch Sensortec's BME680 gas sensor API
|
||||
|
||||
The sensor driver package includes bme680.h, bme680.c and bme680_defs.h files
|
||||
|
||||
## Version
|
||||
|
||||
File | Version | Date
|
||||
--------------|---------|-------------
|
||||
bme680.c | 3.5.9 | 19 Jun 2018
|
||||
bme680.h | 3.5.9 | 19 Jun 2018
|
||||
bme680_defs.h | 3.5.9 | 19 Jun 2018
|
||||
|
||||
## Integration details
|
||||
|
||||
* Integrate bme680.h, bme680_defs.h and bme680.c file in to your project.
|
||||
* Include the bme680.h file in your code like below.
|
||||
|
||||
``` c
|
||||
#include "bme680.h"
|
||||
```
|
||||
|
||||
## File information
|
||||
|
||||
* bme680_defs.h : This header file has the constants, macros and datatype declarations.
|
||||
* bme680.h : This header file contains the declarations of the sensor driver APIs.
|
||||
* bme680.c : This source file contains the definitions of the sensor driver APIs.
|
||||
|
||||
## Supported sensor interfaces
|
||||
|
||||
* SPI 4-wire
|
||||
* I2C
|
||||
|
||||
## Usage guide
|
||||
|
||||
### Initializing the sensor
|
||||
|
||||
To initialize the sensor, you will first need to create a device structure. You
|
||||
can do this by creating an instance of the structure bme680_dev. Then go on to
|
||||
fill in the various parameters as shown below
|
||||
|
||||
#### Example for SPI 4-Wire
|
||||
|
||||
``` c
|
||||
struct bme680_dev gas_sensor;
|
||||
|
||||
/* You may assign a chip select identifier to be handled later */
|
||||
gas_sensor.dev_id = 0;
|
||||
gas_sensor.intf = BME680_SPI_INTF;
|
||||
gas_sensor.read = user_spi_read;
|
||||
gas_sensor.write = user_spi_write;
|
||||
gas_sensor.delay_ms = user_delay_ms;
|
||||
/* amb_temp can be set to 25 prior to configuring the gas sensor
|
||||
* or by performing a few temperature readings without operating the gas sensor.
|
||||
*/
|
||||
gas_sensor.amb_temp = 25;
|
||||
|
||||
int8_t rslt = BME680_OK;
|
||||
rslt = bme680_init(&gas_sensor);
|
||||
```
|
||||
|
||||
#### Example for I2C
|
||||
|
||||
``` c
|
||||
struct bme680_dev gas_sensor;
|
||||
|
||||
gas_sensor.dev_id = BME680_I2C_ADDR_PRIMARY;
|
||||
gas_sensor.intf = BME680_I2C_INTF;
|
||||
gas_sensor.read = user_i2c_read;
|
||||
gas_sensor.write = user_i2c_write;
|
||||
gas_sensor.delay_ms = user_delay_ms;
|
||||
/* amb_temp can be set to 25 prior to configuring the gas sensor
|
||||
* or by performing a few temperature readings without operating the gas sensor.
|
||||
*/
|
||||
gas_sensor.amb_temp = 25;
|
||||
|
||||
|
||||
int8_t rslt = BME680_OK;
|
||||
rslt = bme680_init(&gas_sensor);
|
||||
```
|
||||
|
||||
Regarding compensation functions for temperature, pressure, humidity and gas we have two implementations.
|
||||
|
||||
- Integer version
|
||||
- floating point version
|
||||
|
||||
By default, Integer version is used in the API
|
||||
|
||||
If the user needs the floating point version, the user has to un-comment BME680_FLOAT_POINT_COMPENSATION macro
|
||||
in bme680_defs.h file or to add it in the compiler flags.
|
||||
|
||||
### Configuring the sensor
|
||||
|
||||
#### Example for configuring the sensor in forced mode
|
||||
|
||||
``` c
|
||||
uint8_t set_required_settings;
|
||||
|
||||
/* Set the temperature, pressure and humidity settings */
|
||||
gas_sensor.tph_sett.os_hum = BME680_OS_2X;
|
||||
gas_sensor.tph_sett.os_pres = BME680_OS_4X;
|
||||
gas_sensor.tph_sett.os_temp = BME680_OS_8X;
|
||||
gas_sensor.tph_sett.filter = BME680_FILTER_SIZE_3;
|
||||
|
||||
/* Set the remaining gas sensor settings and link the heating profile */
|
||||
gas_sensor.gas_sett.run_gas = BME680_ENABLE_GAS_MEAS;
|
||||
/* Create a ramp heat waveform in 3 steps */
|
||||
gas_sensor.gas_sett.heatr_temp = 320; /* degree Celsius */
|
||||
gas_sensor.gas_sett.heatr_dur = 150; /* milliseconds */
|
||||
|
||||
/* Select the power mode */
|
||||
/* Must be set before writing the sensor configuration */
|
||||
gas_sensor.power_mode = BME680_FORCED_MODE;
|
||||
|
||||
/* Set the required sensor settings needed */
|
||||
set_required_settings = BME680_OST_SEL | BME680_OSP_SEL | BME680_OSH_SEL | BME680_FILTER_SEL
|
||||
| BME680_GAS_SENSOR_SEL;
|
||||
|
||||
/* Set the desired sensor configuration */
|
||||
rslt = bme680_set_sensor_settings(set_required_settings,&gas_sensor);
|
||||
|
||||
/* Set the power mode */
|
||||
rslt = bme680_set_sensor_mode(&gas_sensor);
|
||||
|
||||
|
||||
```
|
||||
|
||||
### Reading sensor data
|
||||
|
||||
#### Example for reading all sensor data
|
||||
|
||||
``` c
|
||||
/* Get the total measurement duration so as to sleep or wait till the
|
||||
* measurement is complete */
|
||||
uint16_t meas_period;
|
||||
bme680_get_profile_dur(&meas_period, &gas_sensor);
|
||||
|
||||
struct bme680_field_data data;
|
||||
|
||||
while(1)
|
||||
{
|
||||
user_delay_ms(meas_period); /* Delay till the measurement is ready */
|
||||
|
||||
rslt = bme680_get_sensor_data(&data, &gas_sensor);
|
||||
|
||||
printf("T: %.2f degC, P: %.2f hPa, H %.2f %%rH ", data.temperature / 100.0f,
|
||||
data.pressure / 100.0f, data.humidity / 1000.0f );
|
||||
/* Avoid using measurements from an unstable heating setup */
|
||||
if(data.status & BME680_GASM_VALID_MSK)
|
||||
printf(", G: %d ohms", data.gas_resistance);
|
||||
|
||||
printf("\r\n");
|
||||
|
||||
/* Trigger the next measurement if you would like to read data out continuously */
|
||||
if (gas_sensor.power_mode == BME680_FORCED_MODE) {
|
||||
rslt = bme680_set_sensor_mode(&gas_sensor);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Templates for function pointers
|
||||
|
||||
``` c
|
||||
|
||||
void user_delay_ms(uint32_t period)
|
||||
{
|
||||
/*
|
||||
* Return control or wait,
|
||||
* for a period amount of milliseconds
|
||||
*/
|
||||
}
|
||||
|
||||
int8_t user_spi_read(uint8_t dev_id, uint8_t reg_addr, uint8_t *reg_data, uint16_t len)
|
||||
{
|
||||
int8_t rslt = 0; /* Return 0 for Success, non-zero for failure */
|
||||
|
||||
/*
|
||||
* The parameter dev_id can be used as a variable to select which Chip Select pin has
|
||||
* to be set low to activate the relevant device on the SPI bus
|
||||
*/
|
||||
|
||||
/*
|
||||
* Data on the bus should be like
|
||||
* |----------------+---------------------+-------------|
|
||||
* | MOSI | MISO | Chip Select |
|
||||
* |----------------+---------------------|-------------|
|
||||
* | (don't care) | (don't care) | HIGH |
|
||||
* | (reg_addr) | (don't care) | LOW |
|
||||
* | (don't care) | (reg_data[0]) | LOW |
|
||||
* | (....) | (....) | LOW |
|
||||
* | (don't care) | (reg_data[len - 1]) | LOW |
|
||||
* | (don't care) | (don't care) | HIGH |
|
||||
* |----------------+---------------------|-------------|
|
||||
*/
|
||||
|
||||
return rslt;
|
||||
}
|
||||
|
||||
int8_t user_spi_write(uint8_t dev_id, uint8_t reg_addr, uint8_t *reg_data, uint16_t len)
|
||||
{
|
||||
int8_t rslt = 0; /* Return 0 for Success, non-zero for failure */
|
||||
|
||||
/*
|
||||
* The parameter dev_id can be used as a variable to select which Chip Select pin has
|
||||
* to be set low to activate the relevant device on the SPI bus
|
||||
*/
|
||||
|
||||
/*
|
||||
* Data on the bus should be like
|
||||
* |---------------------+--------------+-------------|
|
||||
* | MOSI | MISO | Chip Select |
|
||||
* |---------------------+--------------|-------------|
|
||||
* | (don't care) | (don't care) | HIGH |
|
||||
* | (reg_addr) | (don't care) | LOW |
|
||||
* | (reg_data[0]) | (don't care) | LOW |
|
||||
* | (....) | (....) | LOW |
|
||||
* | (reg_data[len - 1]) | (don't care) | LOW |
|
||||
* | (don't care) | (don't care) | HIGH |
|
||||
* |---------------------+--------------|-------------|
|
||||
*/
|
||||
|
||||
return rslt;
|
||||
}
|
||||
|
||||
int8_t user_i2c_read(uint8_t dev_id, uint8_t reg_addr, uint8_t *reg_data, uint16_t len)
|
||||
{
|
||||
int8_t rslt = 0; /* Return 0 for Success, non-zero for failure */
|
||||
|
||||
/*
|
||||
* The parameter dev_id can be used as a variable to store the I2C address of the device
|
||||
*/
|
||||
|
||||
/*
|
||||
* Data on the bus should be like
|
||||
* |------------+---------------------|
|
||||
* | I2C action | Data |
|
||||
* |------------+---------------------|
|
||||
* | Start | - |
|
||||
* | Write | (reg_addr) |
|
||||
* | Stop | - |
|
||||
* | Start | - |
|
||||
* | Read | (reg_data[0]) |
|
||||
* | Read | (....) |
|
||||
* | Read | (reg_data[len - 1]) |
|
||||
* | Stop | - |
|
||||
* |------------+---------------------|
|
||||
*/
|
||||
|
||||
return rslt;
|
||||
}
|
||||
|
||||
int8_t user_i2c_write(uint8_t dev_id, uint8_t reg_addr, uint8_t *reg_data, uint16_t len)
|
||||
{
|
||||
int8_t rslt = 0; /* Return 0 for Success, non-zero for failure */
|
||||
|
||||
/*
|
||||
* The parameter dev_id can be used as a variable to store the I2C address of the device
|
||||
*/
|
||||
|
||||
/*
|
||||
* Data on the bus should be like
|
||||
* |------------+---------------------|
|
||||
* | I2C action | Data |
|
||||
* |------------+---------------------|
|
||||
* | Start | - |
|
||||
* | Write | (reg_addr) |
|
||||
* | Write | (reg_data[0]) |
|
||||
* | Write | (....) |
|
||||
* | Write | (reg_data[len - 1]) |
|
||||
* | Stop | - |
|
||||
* |------------+---------------------|
|
||||
*/
|
||||
|
||||
return rslt;
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
## Copyright (C) 2017 - 2018 Bosch Sensortec GmbH
|
@ -1,187 +0,0 @@
|
||||
/**\mainpage
|
||||
* Copyright (C) 2017 - 2018 Bosch Sensortec GmbH
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* Neither the name of the copyright holder nor the names of the
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER
|
||||
* OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
||||
* OR CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO,
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
|
||||
*
|
||||
* The information provided is believed to be accurate and reliable.
|
||||
* The copyright holder assumes no responsibility
|
||||
* for the consequences of use
|
||||
* of such information nor for any infringement of patents or
|
||||
* other rights of third parties which may result from its use.
|
||||
* No license is granted by implication or otherwise under any patent or
|
||||
* patent rights of the copyright holder.
|
||||
*
|
||||
* File bme680_selftest.c
|
||||
* @date 16 May 2018
|
||||
* @version 3.5.3
|
||||
*
|
||||
*/
|
||||
|
||||
/*!
|
||||
* @addtogroup bme680_selftest
|
||||
* @brief
|
||||
* @{*/
|
||||
|
||||
#include "bme680_selftest.h"
|
||||
|
||||
#define MIN_TEMPERATURE INT16_C(0) /* 0 degree Celsius */
|
||||
#define MAX_TEMPERATURE INT16_C(6000) /* 60 degree Celsius */
|
||||
|
||||
#define MIN_PRESSURE UINT32_C(90000) /* 900 hecto Pascals */
|
||||
#define MAX_PRESSURE UINT32_C(110000) /* 1100 hecto Pascals */
|
||||
|
||||
#define MIN_HUMIDITY UINT32_C(20000) /* 20% relative humidity */
|
||||
#define MAX_HUMIDITY UINT32_C(80000) /* 80% relative humidity*/
|
||||
|
||||
#define HEATR_DUR 2000
|
||||
#define N_MEAS 6
|
||||
#define LOW_TEMP 150
|
||||
#define HIGH_TEMP 350
|
||||
|
||||
/*!
|
||||
* @brief Function to analyze the sensor data
|
||||
*
|
||||
* @param[in] data Array of measurement data
|
||||
* @param[in] n_meas Number of measurements
|
||||
*
|
||||
* @return Error code
|
||||
* @retval 0 Success
|
||||
* @retval > 0 Warning
|
||||
*/
|
||||
static int8_t analyze_sensor_data(struct bme680_field_data *data, uint8_t n_meas);
|
||||
|
||||
/*!
|
||||
* @brief Self-test API for the BME680
|
||||
*/
|
||||
int8_t bme680_self_test(struct bme680_dev *dev)
|
||||
{
|
||||
int8_t rslt = BME680_OK;
|
||||
struct bme680_field_data data[N_MEAS];
|
||||
|
||||
struct bme680_dev t_dev;
|
||||
|
||||
/* Copy required parameters from reference bme680_dev struct */
|
||||
t_dev.dev_id = dev->dev_id;
|
||||
t_dev.amb_temp = 25;
|
||||
t_dev.read = dev->read;
|
||||
t_dev.write = dev->write;
|
||||
t_dev.intf = dev->intf;
|
||||
t_dev.delay_ms = dev->delay_ms;
|
||||
|
||||
rslt = bme680_init(&t_dev);
|
||||
|
||||
if (rslt == BME680_OK) {
|
||||
/* Select the power mode */
|
||||
/* Must be set before writing the sensor configuration */
|
||||
t_dev.power_mode = BME680_FORCED_MODE;
|
||||
|
||||
uint16_t settings_sel;
|
||||
|
||||
/* Set the temperature, pressure and humidity & filter settings */
|
||||
t_dev.tph_sett.os_hum = BME680_OS_1X;
|
||||
t_dev.tph_sett.os_pres = BME680_OS_16X;
|
||||
t_dev.tph_sett.os_temp = BME680_OS_2X;
|
||||
|
||||
/* Set the remaining gas sensor settings and link the heating profile */
|
||||
t_dev.gas_sett.run_gas = BME680_ENABLE_GAS_MEAS;
|
||||
t_dev.gas_sett.heatr_dur = HEATR_DUR;
|
||||
|
||||
settings_sel = BME680_OST_SEL | BME680_OSP_SEL | BME680_OSH_SEL | BME680_GAS_SENSOR_SEL;
|
||||
|
||||
uint16_t profile_dur = 0;
|
||||
bme680_get_profile_dur(&profile_dur, &t_dev);
|
||||
|
||||
uint8_t i = 0;
|
||||
while ((rslt == BME680_OK) && (i < N_MEAS)) {
|
||||
if (rslt == BME680_OK) {
|
||||
|
||||
if (i % 2 == 0)
|
||||
t_dev.gas_sett.heatr_temp = HIGH_TEMP; /* Higher temperature */
|
||||
else
|
||||
t_dev.gas_sett.heatr_temp = LOW_TEMP; /* Lower temperature */
|
||||
|
||||
rslt = bme680_set_sensor_settings(settings_sel, &t_dev);
|
||||
|
||||
if (rslt == BME680_OK) {
|
||||
|
||||
rslt = bme680_set_sensor_mode(&t_dev); /* Trigger a measurement */
|
||||
|
||||
t_dev.delay_ms(profile_dur); /* Wait for the measurement to complete */
|
||||
|
||||
rslt = bme680_get_sensor_data(&data[i], &t_dev);
|
||||
}
|
||||
}
|
||||
|
||||
i++;
|
||||
}
|
||||
|
||||
if (rslt == BME680_OK)
|
||||
rslt = analyze_sensor_data(data, N_MEAS);
|
||||
}
|
||||
|
||||
return rslt;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Function to analyze the sensor data
|
||||
*/
|
||||
static int8_t analyze_sensor_data(struct bme680_field_data *data, uint8_t n_meas)
|
||||
{
|
||||
int8_t rslt = BME680_OK;
|
||||
uint8_t self_test_failed = 0, i;
|
||||
uint32_t cent_res = 0;
|
||||
|
||||
if ((data[0].temperature < MIN_TEMPERATURE) || (data[0].temperature > MAX_TEMPERATURE))
|
||||
self_test_failed++;
|
||||
|
||||
if ((data[0].pressure < MIN_PRESSURE) || (data[0].pressure > MAX_PRESSURE))
|
||||
self_test_failed++;
|
||||
|
||||
if ((data[0].humidity < MIN_HUMIDITY) || (data[0].humidity > MAX_HUMIDITY))
|
||||
self_test_failed++;
|
||||
|
||||
for (i = 0; i < n_meas; i++) /* Every gas measurement should be valid */
|
||||
if (!(data[i].status & BME680_GASM_VALID_MSK))
|
||||
self_test_failed++;
|
||||
|
||||
if (n_meas >= 6)
|
||||
cent_res = (data[3].gas_resistance + data[5].gas_resistance) / (2 * data[4].gas_resistance);
|
||||
|
||||
if ((cent_res * 5) < 6)
|
||||
self_test_failed++;
|
||||
|
||||
if (self_test_failed)
|
||||
rslt = BME680_W_SELF_TEST_FAILED;
|
||||
|
||||
return rslt;
|
||||
}
|
||||
|
||||
/** @}*/
|
@ -1,88 +0,0 @@
|
||||
/**
|
||||
* Copyright (C) 2017 - 2018 Bosch Sensortec GmbH
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* Neither the name of the copyright holder nor the names of the
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER
|
||||
* OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
||||
* OR CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO,
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
|
||||
*
|
||||
* The information provided is believed to be accurate and reliable.
|
||||
* The copyright holder assumes no responsibility
|
||||
* for the consequences of use
|
||||
* of such information nor for any infringement of patents or
|
||||
* other rights of third parties which may result from its use.
|
||||
* No license is granted by implication or otherwise under any patent or
|
||||
* patent rights of the copyright holder.
|
||||
*
|
||||
* @file bme680_selftest.h
|
||||
* @date 16 May 2018
|
||||
* @version 3.5.3
|
||||
* @brief
|
||||
*
|
||||
*/
|
||||
|
||||
/*!
|
||||
* @addtogroup bme680_selftest
|
||||
* @brief
|
||||
* @{*/
|
||||
|
||||
|
||||
#ifndef BME680_SELFTEST_H_
|
||||
#define BME680_SELFTEST_H_
|
||||
|
||||
#include "bme680.h"
|
||||
|
||||
/*! CPP guard */
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
#define BME680_W_SELF_TEST_FAILED 3
|
||||
|
||||
/*!
|
||||
* @brief Self-test API for the BME680
|
||||
*
|
||||
* @param[in] Device structure containing relevant information on how
|
||||
* to communicate with the sensor
|
||||
*
|
||||
* @return Error code
|
||||
* @retval 0 Success
|
||||
* @retval < 0 Error
|
||||
* @retval > 0 Warning
|
||||
*/
|
||||
int8_t bme680_self_test(struct bme680_dev *dev);
|
||||
|
||||
/*! CPP guard */
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* BME680_SELFTEST_H_ */
|
||||
|
||||
/** @}*/
|
File diff suppressed because it is too large
Load Diff
@ -1,225 +0,0 @@
|
||||
/**
|
||||
* Copyright (C) 2017 - 2018 Bosch Sensortec GmbH
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* Neither the name of the copyright holder nor the names of the
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER
|
||||
* OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
||||
* OR CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO,
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
|
||||
*
|
||||
* The information provided is believed to be accurate and reliable.
|
||||
* The copyright holder assumes no responsibility
|
||||
* for the consequences of use
|
||||
* of such information nor for any infringement of patents or
|
||||
* other rights of third parties which may result from its use.
|
||||
* No license is granted by implication or otherwise under any patent or
|
||||
* patent rights of the copyright holder.
|
||||
*
|
||||
* @file bme680.h
|
||||
* @date 19 Jun 2018
|
||||
* @version 3.5.9
|
||||
* @brief
|
||||
*
|
||||
*/
|
||||
/*! @file bme680.h
|
||||
@brief Sensor driver for BME680 sensor */
|
||||
/*!
|
||||
* @defgroup BME680 SENSOR API
|
||||
* @{*/
|
||||
#ifndef BME680_H_
|
||||
#define BME680_H_
|
||||
|
||||
/*! CPP guard */
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
/* Header includes */
|
||||
#include "bme680_defs.h"
|
||||
|
||||
/* function prototype declarations */
|
||||
/*!
|
||||
* @brief This API is the entry point.
|
||||
* It reads the chip-id and calibration data from the sensor.
|
||||
*
|
||||
* @param[in,out] dev : Structure instance of bme680_dev
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval zero -> Success / +ve value -> Warning / -ve value -> Error
|
||||
*/
|
||||
int8_t bme680_init(struct bme680_dev *dev);
|
||||
|
||||
/*!
|
||||
* @brief This API writes the given data to the register address
|
||||
* of the sensor.
|
||||
*
|
||||
* @param[in] reg_addr : Register address from where the data to be written.
|
||||
* @param[in] reg_data : Pointer to data buffer which is to be written
|
||||
* in the sensor.
|
||||
* @param[in] len : No of bytes of data to write..
|
||||
* @param[in] dev : Structure instance of bme680_dev.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval zero -> Success / +ve value -> Warning / -ve value -> Error
|
||||
*/
|
||||
int8_t bme680_set_regs(const uint8_t *reg_addr, const uint8_t *reg_data, uint8_t len, struct bme680_dev *dev);
|
||||
|
||||
/*!
|
||||
* @brief This API reads the data from the given register address of the sensor.
|
||||
*
|
||||
* @param[in] reg_addr : Register address from where the data to be read
|
||||
* @param[out] reg_data : Pointer to data buffer to store the read data.
|
||||
* @param[in] len : No of bytes of data to be read.
|
||||
* @param[in] dev : Structure instance of bme680_dev.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval zero -> Success / +ve value -> Warning / -ve value -> Error
|
||||
*/
|
||||
int8_t bme680_get_regs(uint8_t reg_addr, uint8_t *reg_data, uint16_t len, struct bme680_dev *dev);
|
||||
|
||||
/*!
|
||||
* @brief This API performs the soft reset of the sensor.
|
||||
*
|
||||
* @param[in] dev : Structure instance of bme680_dev.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval zero -> Success / +ve value -> Warning / -ve value -> Error.
|
||||
*/
|
||||
int8_t bme680_soft_reset(struct bme680_dev *dev);
|
||||
|
||||
/*!
|
||||
* @brief This API is used to set the power mode of the sensor.
|
||||
*
|
||||
* @param[in] dev : Structure instance of bme680_dev
|
||||
* @note : Pass the value to bme680_dev.power_mode structure variable.
|
||||
*
|
||||
* value | mode
|
||||
* -------------|------------------
|
||||
* 0x00 | BME680_SLEEP_MODE
|
||||
* 0x01 | BME680_FORCED_MODE
|
||||
*
|
||||
* * @return Result of API execution status
|
||||
* @retval zero -> Success / +ve value -> Warning / -ve value -> Error
|
||||
*/
|
||||
int8_t bme680_set_sensor_mode(struct bme680_dev *dev);
|
||||
|
||||
/*!
|
||||
* @brief This API is used to get the power mode of the sensor.
|
||||
*
|
||||
* @param[in] dev : Structure instance of bme680_dev
|
||||
* @note : bme680_dev.power_mode structure variable hold the power mode.
|
||||
*
|
||||
* value | mode
|
||||
* ---------|------------------
|
||||
* 0x00 | BME680_SLEEP_MODE
|
||||
* 0x01 | BME680_FORCED_MODE
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval zero -> Success / +ve value -> Warning / -ve value -> Error
|
||||
*/
|
||||
int8_t bme680_get_sensor_mode(struct bme680_dev *dev);
|
||||
|
||||
/*!
|
||||
* @brief This API is used to set the profile duration of the sensor.
|
||||
*
|
||||
* @param[in] dev : Structure instance of bme680_dev.
|
||||
* @param[in] duration : Duration of the measurement in ms.
|
||||
*
|
||||
* @return Nothing
|
||||
*/
|
||||
void bme680_set_profile_dur(uint16_t duration, struct bme680_dev *dev);
|
||||
|
||||
/*!
|
||||
* @brief This API is used to get the profile duration of the sensor.
|
||||
*
|
||||
* @param[in] dev : Structure instance of bme680_dev.
|
||||
* @param[in] duration : Duration of the measurement in ms.
|
||||
*
|
||||
* @return Nothing
|
||||
*/
|
||||
void bme680_get_profile_dur(uint16_t *duration, const struct bme680_dev *dev);
|
||||
|
||||
/*!
|
||||
* @brief This API reads the pressure, temperature and humidity and gas data
|
||||
* from the sensor, compensates the data and store it in the bme680_data
|
||||
* structure instance passed by the user.
|
||||
*
|
||||
* @param[out] data: Structure instance to hold the data.
|
||||
* @param[in] dev : Structure instance of bme680_dev.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval zero -> Success / +ve value -> Warning / -ve value -> Error
|
||||
*/
|
||||
int8_t bme680_get_sensor_data(struct bme680_field_data *data, struct bme680_dev *dev);
|
||||
|
||||
/*!
|
||||
* @brief This API is used to set the oversampling, filter and T,P,H, gas selection
|
||||
* settings in the sensor.
|
||||
*
|
||||
* @param[in] dev : Structure instance of bme680_dev.
|
||||
* @param[in] desired_settings : Variable used to select the settings which
|
||||
* are to be set in the sensor.
|
||||
*
|
||||
* Macros | Functionality
|
||||
*---------------------------------|----------------------------------------------
|
||||
* BME680_OST_SEL | To set temperature oversampling.
|
||||
* BME680_OSP_SEL | To set pressure oversampling.
|
||||
* BME680_OSH_SEL | To set humidity oversampling.
|
||||
* BME680_GAS_MEAS_SEL | To set gas measurement setting.
|
||||
* BME680_FILTER_SEL | To set filter setting.
|
||||
* BME680_HCNTRL_SEL | To set humidity control setting.
|
||||
* BME680_RUN_GAS_SEL | To set run gas setting.
|
||||
* BME680_NBCONV_SEL | To set NB conversion setting.
|
||||
* BME680_GAS_SENSOR_SEL | To set all gas sensor related settings
|
||||
*
|
||||
* @note : Below are the macros to be used by the user for selecting the
|
||||
* desired settings. User can do OR operation of these macros for configuring
|
||||
* multiple settings.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval zero -> Success / +ve value -> Warning / -ve value -> Error.
|
||||
*/
|
||||
int8_t bme680_set_sensor_settings(uint16_t desired_settings, struct bme680_dev *dev);
|
||||
|
||||
/*!
|
||||
* @brief This API is used to get the oversampling, filter and T,P,H, gas selection
|
||||
* settings in the sensor.
|
||||
*
|
||||
* @param[in] dev : Structure instance of bme680_dev.
|
||||
* @param[in] desired_settings : Variable used to select the settings which
|
||||
* are to be get from the sensor.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval zero -> Success / +ve value -> Warning / -ve value -> Error.
|
||||
*/
|
||||
int8_t bme680_get_sensor_settings(uint16_t desired_settings, struct bme680_dev *dev);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* End of CPP guard */
|
||||
#endif /* BME680_H_ */
|
||||
/** @}*/
|
@ -1,545 +0,0 @@
|
||||
/**
|
||||
* Copyright (C) 2017 - 2018 Bosch Sensortec GmbH
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* Neither the name of the copyright holder nor the names of the
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER
|
||||
* OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
||||
* OR CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO,
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
|
||||
*
|
||||
* The information provided is believed to be accurate and reliable.
|
||||
* The copyright holder assumes no responsibility
|
||||
* for the consequences of use
|
||||
* of such information nor for any infringement of patents or
|
||||
* other rights of third parties which may result from its use.
|
||||
* No license is granted by implication or otherwise under any patent or
|
||||
* patent rights of the copyright holder.
|
||||
*
|
||||
* @file bme680_defs.h
|
||||
* @date 19 Jun 2018
|
||||
* @version 3.5.9
|
||||
* @brief
|
||||
*
|
||||
*/
|
||||
|
||||
/*! @file bme680_defs.h
|
||||
@brief Sensor driver for BME680 sensor */
|
||||
/*!
|
||||
* @defgroup BME680 SENSOR API
|
||||
* @brief
|
||||
* @{*/
|
||||
#ifndef BME680_DEFS_H_
|
||||
#define BME680_DEFS_H_
|
||||
|
||||
/********************************************************/
|
||||
/* header includes */
|
||||
#ifdef __KERNEL__
|
||||
#include <linux/types.h>
|
||||
#include <linux/kernel.h>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
#endif
|
||||
|
||||
/******************************************************************************/
|
||||
/*! @name Common macros */
|
||||
/******************************************************************************/
|
||||
|
||||
#if !defined(UINT8_C) && !defined(INT8_C)
|
||||
#define INT8_C(x) S8_C(x)
|
||||
#define UINT8_C(x) U8_C(x)
|
||||
#endif
|
||||
|
||||
#if !defined(UINT16_C) && !defined(INT16_C)
|
||||
#define INT16_C(x) S16_C(x)
|
||||
#define UINT16_C(x) U16_C(x)
|
||||
#endif
|
||||
|
||||
#if !defined(INT32_C) && !defined(UINT32_C)
|
||||
#define INT32_C(x) S32_C(x)
|
||||
#define UINT32_C(x) U32_C(x)
|
||||
#endif
|
||||
|
||||
#if !defined(INT64_C) && !defined(UINT64_C)
|
||||
#define INT64_C(x) S64_C(x)
|
||||
#define UINT64_C(x) U64_C(x)
|
||||
#endif
|
||||
|
||||
/**@}*/
|
||||
|
||||
/**\name C standard macros */
|
||||
#ifndef NULL
|
||||
#ifdef __cplusplus
|
||||
#define NULL 0
|
||||
#else
|
||||
#define NULL ((void *) 0)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/** BME680 configuration macros */
|
||||
/** Enable or un-comment the macro to provide floating point data output */
|
||||
#ifndef BME680_FLOAT_POINT_COMPENSATION
|
||||
/* #define BME680_FLOAT_POINT_COMPENSATION */
|
||||
#endif
|
||||
|
||||
/** BME680 General config */
|
||||
#define BME680_POLL_PERIOD_MS UINT8_C(10)
|
||||
|
||||
/** BME680 I2C addresses */
|
||||
#define BME680_I2C_ADDR_PRIMARY UINT8_C(0x76)
|
||||
#define BME680_I2C_ADDR_SECONDARY UINT8_C(0x77)
|
||||
|
||||
/** BME680 unique chip identifier */
|
||||
#define BME680_CHIP_ID UINT8_C(0x61)
|
||||
|
||||
/** BME680 coefficients related defines */
|
||||
#define BME680_COEFF_SIZE UINT8_C(41)
|
||||
#define BME680_COEFF_ADDR1_LEN UINT8_C(25)
|
||||
#define BME680_COEFF_ADDR2_LEN UINT8_C(16)
|
||||
|
||||
/** BME680 field_x related defines */
|
||||
#define BME680_FIELD_LENGTH UINT8_C(15)
|
||||
#define BME680_FIELD_ADDR_OFFSET UINT8_C(17)
|
||||
|
||||
/** Soft reset command */
|
||||
#define BME680_SOFT_RESET_CMD UINT8_C(0xb6)
|
||||
|
||||
/** Error code definitions */
|
||||
#define BME680_OK INT8_C(0)
|
||||
/* Errors */
|
||||
#define BME680_E_NULL_PTR INT8_C(-1)
|
||||
#define BME680_E_COM_FAIL INT8_C(-2)
|
||||
#define BME680_E_DEV_NOT_FOUND INT8_C(-3)
|
||||
#define BME680_E_INVALID_LENGTH INT8_C(-4)
|
||||
|
||||
/* Warnings */
|
||||
#define BME680_W_DEFINE_PWR_MODE INT8_C(1)
|
||||
#define BME680_W_NO_NEW_DATA INT8_C(2)
|
||||
|
||||
/* Info's */
|
||||
#define BME680_I_MIN_CORRECTION UINT8_C(1)
|
||||
#define BME680_I_MAX_CORRECTION UINT8_C(2)
|
||||
|
||||
/** Register map */
|
||||
/** Other coefficient's address */
|
||||
#define BME680_ADDR_RES_HEAT_VAL_ADDR UINT8_C(0x00)
|
||||
#define BME680_ADDR_RES_HEAT_RANGE_ADDR UINT8_C(0x02)
|
||||
#define BME680_ADDR_RANGE_SW_ERR_ADDR UINT8_C(0x04)
|
||||
#define BME680_ADDR_SENS_CONF_START UINT8_C(0x5A)
|
||||
#define BME680_ADDR_GAS_CONF_START UINT8_C(0x64)
|
||||
|
||||
/** Field settings */
|
||||
#define BME680_FIELD0_ADDR UINT8_C(0x1d)
|
||||
|
||||
/** Heater settings */
|
||||
#define BME680_RES_HEAT0_ADDR UINT8_C(0x5a)
|
||||
#define BME680_GAS_WAIT0_ADDR UINT8_C(0x64)
|
||||
|
||||
/** Sensor configuration registers */
|
||||
#define BME680_CONF_HEAT_CTRL_ADDR UINT8_C(0x70)
|
||||
#define BME680_CONF_ODR_RUN_GAS_NBC_ADDR UINT8_C(0x71)
|
||||
#define BME680_CONF_OS_H_ADDR UINT8_C(0x72)
|
||||
#define BME680_MEM_PAGE_ADDR UINT8_C(0xf3)
|
||||
#define BME680_CONF_T_P_MODE_ADDR UINT8_C(0x74)
|
||||
#define BME680_CONF_ODR_FILT_ADDR UINT8_C(0x75)
|
||||
|
||||
/** Coefficient's address */
|
||||
#define BME680_COEFF_ADDR1 UINT8_C(0x89)
|
||||
#define BME680_COEFF_ADDR2 UINT8_C(0xe1)
|
||||
|
||||
/** Chip identifier */
|
||||
#define BME680_CHIP_ID_ADDR UINT8_C(0xd0)
|
||||
|
||||
/** Soft reset register */
|
||||
#define BME680_SOFT_RESET_ADDR UINT8_C(0xe0)
|
||||
|
||||
/** Heater control settings */
|
||||
#define BME680_ENABLE_HEATER UINT8_C(0x00)
|
||||
#define BME680_DISABLE_HEATER UINT8_C(0x08)
|
||||
|
||||
/** Gas measurement settings */
|
||||
#define BME680_DISABLE_GAS_MEAS UINT8_C(0x00)
|
||||
#define BME680_ENABLE_GAS_MEAS UINT8_C(0x01)
|
||||
|
||||
/** Over-sampling settings */
|
||||
#define BME680_OS_NONE UINT8_C(0)
|
||||
#define BME680_OS_1X UINT8_C(1)
|
||||
#define BME680_OS_2X UINT8_C(2)
|
||||
#define BME680_OS_4X UINT8_C(3)
|
||||
#define BME680_OS_8X UINT8_C(4)
|
||||
#define BME680_OS_16X UINT8_C(5)
|
||||
|
||||
/** IIR filter settings */
|
||||
#define BME680_FILTER_SIZE_0 UINT8_C(0)
|
||||
#define BME680_FILTER_SIZE_1 UINT8_C(1)
|
||||
#define BME680_FILTER_SIZE_3 UINT8_C(2)
|
||||
#define BME680_FILTER_SIZE_7 UINT8_C(3)
|
||||
#define BME680_FILTER_SIZE_15 UINT8_C(4)
|
||||
#define BME680_FILTER_SIZE_31 UINT8_C(5)
|
||||
#define BME680_FILTER_SIZE_63 UINT8_C(6)
|
||||
#define BME680_FILTER_SIZE_127 UINT8_C(7)
|
||||
|
||||
/** Power mode settings */
|
||||
#define BME680_SLEEP_MODE UINT8_C(0)
|
||||
#define BME680_FORCED_MODE UINT8_C(1)
|
||||
|
||||
/** Delay related macro declaration */
|
||||
#define BME680_RESET_PERIOD UINT32_C(10)
|
||||
|
||||
/** SPI memory page settings */
|
||||
#define BME680_MEM_PAGE0 UINT8_C(0x10)
|
||||
#define BME680_MEM_PAGE1 UINT8_C(0x00)
|
||||
|
||||
/** Ambient humidity shift value for compensation */
|
||||
#define BME680_HUM_REG_SHIFT_VAL UINT8_C(4)
|
||||
|
||||
/** Run gas enable and disable settings */
|
||||
#define BME680_RUN_GAS_DISABLE UINT8_C(0)
|
||||
#define BME680_RUN_GAS_ENABLE UINT8_C(1)
|
||||
|
||||
/** Buffer length macro declaration */
|
||||
#define BME680_TMP_BUFFER_LENGTH UINT8_C(40)
|
||||
#define BME680_REG_BUFFER_LENGTH UINT8_C(6)
|
||||
#define BME680_FIELD_DATA_LENGTH UINT8_C(3)
|
||||
#define BME680_GAS_REG_BUF_LENGTH UINT8_C(20)
|
||||
|
||||
/** Settings selector */
|
||||
#define BME680_OST_SEL UINT16_C(1)
|
||||
#define BME680_OSP_SEL UINT16_C(2)
|
||||
#define BME680_OSH_SEL UINT16_C(4)
|
||||
#define BME680_GAS_MEAS_SEL UINT16_C(8)
|
||||
#define BME680_FILTER_SEL UINT16_C(16)
|
||||
#define BME680_HCNTRL_SEL UINT16_C(32)
|
||||
#define BME680_RUN_GAS_SEL UINT16_C(64)
|
||||
#define BME680_NBCONV_SEL UINT16_C(128)
|
||||
#define BME680_GAS_SENSOR_SEL (BME680_GAS_MEAS_SEL | BME680_RUN_GAS_SEL | BME680_NBCONV_SEL)
|
||||
|
||||
/** Number of conversion settings*/
|
||||
#define BME680_NBCONV_MIN UINT8_C(0)
|
||||
#define BME680_NBCONV_MAX UINT8_C(10)
|
||||
|
||||
/** Mask definitions */
|
||||
#define BME680_GAS_MEAS_MSK UINT8_C(0x30)
|
||||
#define BME680_NBCONV_MSK UINT8_C(0X0F)
|
||||
#define BME680_FILTER_MSK UINT8_C(0X1C)
|
||||
#define BME680_OST_MSK UINT8_C(0XE0)
|
||||
#define BME680_OSP_MSK UINT8_C(0X1C)
|
||||
#define BME680_OSH_MSK UINT8_C(0X07)
|
||||
#define BME680_HCTRL_MSK UINT8_C(0x08)
|
||||
#define BME680_RUN_GAS_MSK UINT8_C(0x10)
|
||||
#define BME680_MODE_MSK UINT8_C(0x03)
|
||||
#define BME680_RHRANGE_MSK UINT8_C(0x30)
|
||||
#define BME680_RSERROR_MSK UINT8_C(0xf0)
|
||||
#define BME680_NEW_DATA_MSK UINT8_C(0x80)
|
||||
#define BME680_GAS_INDEX_MSK UINT8_C(0x0f)
|
||||
#define BME680_GAS_RANGE_MSK UINT8_C(0x0f)
|
||||
#define BME680_GASM_VALID_MSK UINT8_C(0x20)
|
||||
#define BME680_HEAT_STAB_MSK UINT8_C(0x10)
|
||||
#define BME680_MEM_PAGE_MSK UINT8_C(0x10)
|
||||
#define BME680_SPI_RD_MSK UINT8_C(0x80)
|
||||
#define BME680_SPI_WR_MSK UINT8_C(0x7f)
|
||||
#define BME680_BIT_H1_DATA_MSK UINT8_C(0x0F)
|
||||
|
||||
/** Bit position definitions for sensor settings */
|
||||
#define BME680_GAS_MEAS_POS UINT8_C(4)
|
||||
#define BME680_FILTER_POS UINT8_C(2)
|
||||
#define BME680_OST_POS UINT8_C(5)
|
||||
#define BME680_OSP_POS UINT8_C(2)
|
||||
#define BME680_RUN_GAS_POS UINT8_C(4)
|
||||
|
||||
/** Array Index to Field data mapping for Calibration Data*/
|
||||
#define BME680_T2_LSB_REG (1)
|
||||
#define BME680_T2_MSB_REG (2)
|
||||
#define BME680_T3_REG (3)
|
||||
#define BME680_P1_LSB_REG (5)
|
||||
#define BME680_P1_MSB_REG (6)
|
||||
#define BME680_P2_LSB_REG (7)
|
||||
#define BME680_P2_MSB_REG (8)
|
||||
#define BME680_P3_REG (9)
|
||||
#define BME680_P4_LSB_REG (11)
|
||||
#define BME680_P4_MSB_REG (12)
|
||||
#define BME680_P5_LSB_REG (13)
|
||||
#define BME680_P5_MSB_REG (14)
|
||||
#define BME680_P7_REG (15)
|
||||
#define BME680_P6_REG (16)
|
||||
#define BME680_P8_LSB_REG (19)
|
||||
#define BME680_P8_MSB_REG (20)
|
||||
#define BME680_P9_LSB_REG (21)
|
||||
#define BME680_P9_MSB_REG (22)
|
||||
#define BME680_P10_REG (23)
|
||||
#define BME680_H2_MSB_REG (25)
|
||||
#define BME680_H2_LSB_REG (26)
|
||||
#define BME680_H1_LSB_REG (26)
|
||||
#define BME680_H1_MSB_REG (27)
|
||||
#define BME680_H3_REG (28)
|
||||
#define BME680_H4_REG (29)
|
||||
#define BME680_H5_REG (30)
|
||||
#define BME680_H6_REG (31)
|
||||
#define BME680_H7_REG (32)
|
||||
#define BME680_T1_LSB_REG (33)
|
||||
#define BME680_T1_MSB_REG (34)
|
||||
#define BME680_GH2_LSB_REG (35)
|
||||
#define BME680_GH2_MSB_REG (36)
|
||||
#define BME680_GH1_REG (37)
|
||||
#define BME680_GH3_REG (38)
|
||||
|
||||
/** BME680 register buffer index settings*/
|
||||
#define BME680_REG_FILTER_INDEX UINT8_C(5)
|
||||
#define BME680_REG_TEMP_INDEX UINT8_C(4)
|
||||
#define BME680_REG_PRES_INDEX UINT8_C(4)
|
||||
#define BME680_REG_HUM_INDEX UINT8_C(2)
|
||||
#define BME680_REG_NBCONV_INDEX UINT8_C(1)
|
||||
#define BME680_REG_RUN_GAS_INDEX UINT8_C(1)
|
||||
#define BME680_REG_HCTRL_INDEX UINT8_C(0)
|
||||
|
||||
/** BME680 pressure calculation macros */
|
||||
/*! This max value is used to provide precedence to multiplication or division
|
||||
* in pressure compensation equation to achieve least loss of precision and
|
||||
* avoiding overflows.
|
||||
* i.e Comparing value, BME680_MAX_OVERFLOW_VAL = INT32_C(1 << 30)
|
||||
*/
|
||||
#define BME680_MAX_OVERFLOW_VAL INT32_C(0x40000000)
|
||||
|
||||
/** Macro to combine two 8 bit data's to form a 16 bit data */
|
||||
#define BME680_CONCAT_BYTES(msb, lsb) (((uint16_t)msb << 8) | (uint16_t)lsb)
|
||||
|
||||
/** Macro to SET and GET BITS of a register */
|
||||
#define BME680_SET_BITS(reg_data, bitname, data) \
|
||||
((reg_data & ~(bitname##_MSK)) | \
|
||||
((data << bitname##_POS) & bitname##_MSK))
|
||||
#define BME680_GET_BITS(reg_data, bitname) ((reg_data & (bitname##_MSK)) >> \
|
||||
(bitname##_POS))
|
||||
|
||||
/** Macro variant to handle the bitname position if it is zero */
|
||||
#define BME680_SET_BITS_POS_0(reg_data, bitname, data) \
|
||||
((reg_data & ~(bitname##_MSK)) | \
|
||||
(data & bitname##_MSK))
|
||||
#define BME680_GET_BITS_POS_0(reg_data, bitname) (reg_data & (bitname##_MSK))
|
||||
|
||||
/** Type definitions */
|
||||
/*!
|
||||
* Generic communication function pointer
|
||||
* @param[in] dev_id: Place holder to store the id of the device structure
|
||||
* Can be used to store the index of the Chip select or
|
||||
* I2C address of the device.
|
||||
* @param[in] reg_addr: Used to select the register the where data needs to
|
||||
* be read from or written to.
|
||||
* @param[in/out] reg_data: Data array to read/write
|
||||
* @param[in] len: Length of the data array
|
||||
*/
|
||||
typedef int8_t (*bme680_com_fptr_t)(uint8_t dev_id, uint8_t reg_addr, uint8_t *data, uint16_t len);
|
||||
|
||||
/*!
|
||||
* Delay function pointer
|
||||
* @param[in] period: Time period in milliseconds
|
||||
*/
|
||||
typedef void (*bme680_delay_fptr_t)(uint32_t period);
|
||||
|
||||
/*!
|
||||
* @brief Interface selection Enumerations
|
||||
*/
|
||||
enum bme680_intf {
|
||||
/*! SPI interface */
|
||||
BME680_SPI_INTF,
|
||||
/*! I2C interface */
|
||||
BME680_I2C_INTF
|
||||
};
|
||||
|
||||
/* structure definitions */
|
||||
/*!
|
||||
* @brief Sensor field data structure
|
||||
*/
|
||||
struct bme680_field_data {
|
||||
/*! Contains new_data, gasm_valid & heat_stab */
|
||||
uint8_t status;
|
||||
/*! The index of the heater profile used */
|
||||
uint8_t gas_index;
|
||||
/*! Measurement index to track order */
|
||||
uint8_t meas_index;
|
||||
|
||||
#ifndef BME680_FLOAT_POINT_COMPENSATION
|
||||
/*! Temperature in degree celsius x100 */
|
||||
int16_t temperature;
|
||||
/*! Pressure in Pascal */
|
||||
uint32_t pressure;
|
||||
/*! Humidity in % relative humidity x1000 */
|
||||
uint32_t humidity;
|
||||
/*! Gas resistance in Ohms */
|
||||
uint32_t gas_resistance;
|
||||
#else
|
||||
/*! Temperature in degree celsius */
|
||||
float temperature;
|
||||
/*! Pressure in Pascal */
|
||||
float pressure;
|
||||
/*! Humidity in % relative humidity x1000 */
|
||||
float humidity;
|
||||
/*! Gas resistance in Ohms */
|
||||
float gas_resistance;
|
||||
|
||||
#endif
|
||||
|
||||
};
|
||||
|
||||
/*!
|
||||
* @brief Structure to hold the Calibration data
|
||||
*/
|
||||
struct bme680_calib_data {
|
||||
/*! Variable to store calibrated humidity data */
|
||||
uint16_t par_h1;
|
||||
/*! Variable to store calibrated humidity data */
|
||||
uint16_t par_h2;
|
||||
/*! Variable to store calibrated humidity data */
|
||||
int8_t par_h3;
|
||||
/*! Variable to store calibrated humidity data */
|
||||
int8_t par_h4;
|
||||
/*! Variable to store calibrated humidity data */
|
||||
int8_t par_h5;
|
||||
/*! Variable to store calibrated humidity data */
|
||||
uint8_t par_h6;
|
||||
/*! Variable to store calibrated humidity data */
|
||||
int8_t par_h7;
|
||||
/*! Variable to store calibrated gas data */
|
||||
int8_t par_gh1;
|
||||
/*! Variable to store calibrated gas data */
|
||||
int16_t par_gh2;
|
||||
/*! Variable to store calibrated gas data */
|
||||
int8_t par_gh3;
|
||||
/*! Variable to store calibrated temperature data */
|
||||
uint16_t par_t1;
|
||||
/*! Variable to store calibrated temperature data */
|
||||
int16_t par_t2;
|
||||
/*! Variable to store calibrated temperature data */
|
||||
int8_t par_t3;
|
||||
/*! Variable to store calibrated pressure data */
|
||||
uint16_t par_p1;
|
||||
/*! Variable to store calibrated pressure data */
|
||||
int16_t par_p2;
|
||||
/*! Variable to store calibrated pressure data */
|
||||
int8_t par_p3;
|
||||
/*! Variable to store calibrated pressure data */
|
||||
int16_t par_p4;
|
||||
/*! Variable to store calibrated pressure data */
|
||||
int16_t par_p5;
|
||||
/*! Variable to store calibrated pressure data */
|
||||
int8_t par_p6;
|
||||
/*! Variable to store calibrated pressure data */
|
||||
int8_t par_p7;
|
||||
/*! Variable to store calibrated pressure data */
|
||||
int16_t par_p8;
|
||||
/*! Variable to store calibrated pressure data */
|
||||
int16_t par_p9;
|
||||
/*! Variable to store calibrated pressure data */
|
||||
uint8_t par_p10;
|
||||
|
||||
#ifndef BME680_FLOAT_POINT_COMPENSATION
|
||||
/*! Variable to store t_fine size */
|
||||
int32_t t_fine;
|
||||
#else
|
||||
/*! Variable to store t_fine size */
|
||||
float t_fine;
|
||||
#endif
|
||||
/*! Variable to store heater resistance range */
|
||||
uint8_t res_heat_range;
|
||||
/*! Variable to store heater resistance value */
|
||||
int8_t res_heat_val;
|
||||
/*! Variable to store error range */
|
||||
int8_t range_sw_err;
|
||||
};
|
||||
|
||||
/*!
|
||||
* @brief BME680 sensor settings structure which comprises of ODR,
|
||||
* over-sampling and filter settings.
|
||||
*/
|
||||
struct bme680_tph_sett {
|
||||
/*! Humidity oversampling */
|
||||
uint8_t os_hum;
|
||||
/*! Temperature oversampling */
|
||||
uint8_t os_temp;
|
||||
/*! Pressure oversampling */
|
||||
uint8_t os_pres;
|
||||
/*! Filter coefficient */
|
||||
uint8_t filter;
|
||||
};
|
||||
|
||||
/*!
|
||||
* @brief BME680 gas sensor which comprises of gas settings
|
||||
* and status parameters
|
||||
*/
|
||||
struct bme680_gas_sett {
|
||||
/*! Variable to store nb conversion */
|
||||
uint8_t nb_conv;
|
||||
/*! Variable to store heater control */
|
||||
uint8_t heatr_ctrl;
|
||||
/*! Run gas enable value */
|
||||
uint8_t run_gas;
|
||||
/*! Heater temperature value */
|
||||
uint16_t heatr_temp;
|
||||
/*! Duration profile value */
|
||||
uint16_t heatr_dur;
|
||||
};
|
||||
|
||||
/*!
|
||||
* @brief BME680 device structure
|
||||
*/
|
||||
struct bme680_dev {
|
||||
/*! Chip Id */
|
||||
uint8_t chip_id;
|
||||
/*! Device Id */
|
||||
uint8_t dev_id;
|
||||
/*! SPI/I2C interface */
|
||||
enum bme680_intf intf;
|
||||
/*! Memory page used */
|
||||
uint8_t mem_page;
|
||||
/*! Ambient temperature in Degree C */
|
||||
int8_t amb_temp;
|
||||
/*! Sensor calibration data */
|
||||
struct bme680_calib_data calib;
|
||||
/*! Sensor settings */
|
||||
struct bme680_tph_sett tph_sett;
|
||||
/*! Gas Sensor settings */
|
||||
struct bme680_gas_sett gas_sett;
|
||||
/*! Sensor power modes */
|
||||
uint8_t power_mode;
|
||||
/*! New sensor fields */
|
||||
uint8_t new_fields;
|
||||
/*! Store the info messages */
|
||||
uint8_t info_msg;
|
||||
/*! Bus read function pointer */
|
||||
bme680_com_fptr_t read;
|
||||
/*! Bus write function pointer */
|
||||
bme680_com_fptr_t write;
|
||||
/*! delay function pointer */
|
||||
bme680_delay_fptr_t delay_ms;
|
||||
/*! Communication function result */
|
||||
int8_t com_rslt;
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif /* BME680_DEFS_H_ */
|
||||
/** @}*/
|
||||
/** @}*/
|
30
lib/lib_i2c/BME68x-Sensor-API/LICENSE
Normal file
30
lib/lib_i2c/BME68x-Sensor-API/LICENSE
Normal file
@ -0,0 +1,30 @@
|
||||
Copyright (c) 2021 Bosch Sensortec GmbH. All rights reserved.
|
||||
|
||||
BSD-3-Clause
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the copyright holder nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
||||
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
30
lib/lib_i2c/BME68x-Sensor-API/README.md
Normal file
30
lib/lib_i2c/BME68x-Sensor-API/README.md
Normal file
@ -0,0 +1,30 @@
|
||||
# BME68X Sensor API
|
||||
|
||||
> Bosch Sensortec's BME680 and BME688 sensor API
|
||||
|
||||
## Sensor Overview
|
||||
BME680 is an integrated environmental sensor developed specifically for mobile applications and wearables where size and low power consumption are key requirements. Expanding Bosch Sensortec’s existing family of environmental sensors, the BME680 integrates for the first time high-linearity and high-accuracy gas, pressure, humidity and temperature sensors. It consists of an 8-pin metal-lid 3.0 x 3.0 x 0.93 mm³ LGA package which is designed for optimized consumption depending on the specific operating mode, long term stability and high EMC robustness. The gas sensor within the BME680 can detect a broad range of gases to measure air quality for personal well being. Gases that can be detected by the BME680 include Volatile Organic Compounds (VOC) from paints (such as formaldehyde), lacquers, paint strippers, cleaning supplies, furnishings, office equipment, glues, adhesives and alcohol.
|
||||
|
||||
### Features
|
||||
|
||||
- Air quality measurement
|
||||
- Personalized weather station
|
||||
- Context awareness, e.g. skin moisture detection, room change detection
|
||||
- Fitness monitoring / well-being
|
||||
- Warning regarding dryness or high temperatures
|
||||
- Measurement of volume and air flow
|
||||
- Home automation control (e.g. HVAC)
|
||||
- GPS enhancement (e.g. time-to-first-fix improvement, dead reckoning, slope detection)
|
||||
- Indoor navigation (change of floor detection, elevator detection)
|
||||
- Altitude tracking and calories expenditure for sports activities
|
||||
|
||||
#### Important links:
|
||||
For more information, please refer to:
|
||||
|
||||
- [BME680 Product page](https://www.bosch-sensortec.com/bst/products/all_products/bme680)
|
||||
- [BME680 & BME688 Github page](https://github.com/BoschSensortec/BME68x-Sensor-API)
|
||||
- [BME680 gas sensor design guide](https://community.bosch-sensortec.com/t5/Knowledge-base/BME680-gas-sensor-series-design-guide/ta-p/5952)
|
||||
- [Knowledge base page](https://community.bosch-sensortec.com/t5/Knowledge-base/tkb-p/bst_community-mems-tkb)
|
||||
- [Community support page](https://community.bosch-sensortec.com)
|
||||
|
||||
---
|
1848
lib/lib_i2c/BME68x-Sensor-API/bme68x.c
Normal file
1848
lib/lib_i2c/BME68x-Sensor-API/bme68x.c
Normal file
File diff suppressed because it is too large
Load Diff
323
lib/lib_i2c/BME68x-Sensor-API/bme68x.h
Normal file
323
lib/lib_i2c/BME68x-Sensor-API/bme68x.h
Normal file
@ -0,0 +1,323 @@
|
||||
/**
|
||||
* Copyright (c) 2021 Bosch Sensortec GmbH. All rights reserved.
|
||||
*
|
||||
* BSD-3-Clause
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* 3. Neither the name of the copyright holder nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
||||
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* @file bme68x.h
|
||||
* @date 2021-11-09
|
||||
* @version v4.4.7
|
||||
*
|
||||
*/
|
||||
|
||||
/*!
|
||||
* @defgroup bme68x BME68X
|
||||
* @brief <a href="https://www.bosch-sensortec.com/bst/products/all_products/bme680">Product Overview</a>
|
||||
* and <a href="https://github.com/BoschSensortec/BME68x-Sensor-API">Sensor API Source Code</a>
|
||||
*/
|
||||
|
||||
#ifndef BME68X_H_
|
||||
#define BME68X_H_
|
||||
|
||||
#include "bme68x_defs.h"
|
||||
|
||||
/* CPP guard */
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* \ingroup bme68x
|
||||
* \defgroup bme68xApiInit Initialization
|
||||
* @brief Initialize the sensor and device structure
|
||||
*/
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiInit
|
||||
* \page bme68x_api_bme68x_init bme68x_init
|
||||
* \code
|
||||
* int8_t bme68x_init(struct bme68x_dev *dev);
|
||||
* \endcode
|
||||
* @details This API reads the chip-id of the sensor which is the first step to
|
||||
* verify the sensor and also calibrates the sensor
|
||||
* As this API is the entry point, call this API before using other APIs.
|
||||
*
|
||||
* @param[in,out] dev : Structure instance of bme68x_dev
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_init(struct bme68x_dev *dev);
|
||||
|
||||
/**
|
||||
* \ingroup bme68x
|
||||
* \defgroup bme68xApiRegister Registers
|
||||
* @brief Generic API for accessing sensor registers
|
||||
*/
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiRegister
|
||||
* \page bme68x_api_bme68x_set_regs bme68x_set_regs
|
||||
* \code
|
||||
* int8_t bme68x_set_regs(const uint8_t reg_addr, const uint8_t *reg_data, uint32_t len, struct bme68x_dev *dev)
|
||||
* \endcode
|
||||
* @details This API writes the given data to the register address of the sensor
|
||||
*
|
||||
* @param[in] reg_addr : Register addresses to where the data is to be written
|
||||
* @param[in] reg_data : Pointer to data buffer which is to be written
|
||||
* in the reg_addr of sensor.
|
||||
* @param[in] len : No of bytes of data to write
|
||||
* @param[in,out] dev : Structure instance of bme68x_dev
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_set_regs(const uint8_t *reg_addr, const uint8_t *reg_data, uint32_t len, struct bme68x_dev *dev);
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiRegister
|
||||
* \page bme68x_api_bme68x_get_regs bme68x_get_regs
|
||||
* \code
|
||||
* int8_t bme68x_get_regs(uint8_t reg_addr, uint8_t *reg_data, uint32_t len, struct bme68x_dev *dev)
|
||||
* \endcode
|
||||
* @details This API reads the data from the given register address of sensor.
|
||||
*
|
||||
* @param[in] reg_addr : Register address from where the data to be read
|
||||
* @param[out] reg_data : Pointer to data buffer to store the read data.
|
||||
* @param[in] len : No of bytes of data to be read.
|
||||
* @param[in,out] dev : Structure instance of bme68x_dev.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_get_regs(uint8_t reg_addr, uint8_t *reg_data, uint32_t len, struct bme68x_dev *dev);
|
||||
|
||||
/**
|
||||
* \ingroup bme68x
|
||||
* \defgroup bme68xApiSystem System
|
||||
* @brief API that performs system-level operations
|
||||
*/
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiSystem
|
||||
* \page bme68x_api_bme68x_soft_reset bme68x_soft_reset
|
||||
* \code
|
||||
* int8_t bme68x_soft_reset(struct bme68x_dev *dev);
|
||||
* \endcode
|
||||
* @details This API soft-resets the sensor.
|
||||
*
|
||||
* @param[in,out] dev : Structure instance of bme68x_dev.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_soft_reset(struct bme68x_dev *dev);
|
||||
|
||||
/**
|
||||
* \ingroup bme68x
|
||||
* \defgroup bme68xApiOm Operation mode
|
||||
* @brief API to configure operation mode
|
||||
*/
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiOm
|
||||
* \page bme68x_api_bme68x_set_op_mode bme68x_set_op_mode
|
||||
* \code
|
||||
* int8_t bme68x_set_op_mode(const uint8_t op_mode, struct bme68x_dev *dev);
|
||||
* \endcode
|
||||
* @details This API is used to set the operation mode of the sensor
|
||||
* @param[in] op_mode : Desired operation mode.
|
||||
* @param[in] dev : Structure instance of bme68x_dev
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_set_op_mode(const uint8_t op_mode, struct bme68x_dev *dev);
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiOm
|
||||
* \page bme68x_api_bme68x_get_op_mode bme68x_get_op_mode
|
||||
* \code
|
||||
* int8_t bme68x_get_op_mode(uint8_t *op_mode, struct bme68x_dev *dev);
|
||||
* \endcode
|
||||
* @details This API is used to get the operation mode of the sensor.
|
||||
*
|
||||
* @param[out] op_mode : Desired operation mode.
|
||||
* @param[in,out] dev : Structure instance of bme68x_dev
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_get_op_mode(uint8_t *op_mode, struct bme68x_dev *dev);
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiConfig
|
||||
* \page bme68x_api_bme68x_get_meas_dur bme68x_get_meas_dur
|
||||
* \code
|
||||
* uint32_t bme68x_get_meas_dur(const uint8_t op_mode, struct bme68x_conf *conf, struct bme68x_dev *dev);
|
||||
* \endcode
|
||||
* @details This API is used to get the remaining duration that can be used for heating.
|
||||
*
|
||||
* @param[in] op_mode : Desired operation mode.
|
||||
* @param[in] conf : Desired sensor configuration.
|
||||
* @param[in] dev : Structure instance of bme68x_dev
|
||||
*
|
||||
* @return Measurement duration calculated in microseconds
|
||||
*/
|
||||
uint32_t bme68x_get_meas_dur(const uint8_t op_mode, struct bme68x_conf *conf, struct bme68x_dev *dev);
|
||||
|
||||
/**
|
||||
* \ingroup bme68x
|
||||
* \defgroup bme68xApiData Data Read out
|
||||
* @brief Read our data from the sensor
|
||||
*/
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiData
|
||||
* \page bme68x_api_bme68x_get_data bme68x_get_data
|
||||
* \code
|
||||
* int8_t bme68x_get_data(uint8_t op_mode, struct bme68x_data *data, uint8_t *n_data, struct bme68x_dev *dev);
|
||||
* \endcode
|
||||
* @details This API reads the pressure, temperature and humidity and gas data
|
||||
* from the sensor, compensates the data and store it in the bme68x_data
|
||||
* structure instance passed by the user.
|
||||
*
|
||||
* @param[in] op_mode : Expected operation mode.
|
||||
* @param[out] data : Structure instance to hold the data.
|
||||
* @param[out] n_data : Number of data instances available.
|
||||
* @param[in,out] dev : Structure instance of bme68x_dev
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_get_data(uint8_t op_mode, struct bme68x_data *data, uint8_t *n_data, struct bme68x_dev *dev);
|
||||
|
||||
/**
|
||||
* \ingroup bme68x
|
||||
* \defgroup bme68xApiConfig Configuration
|
||||
* @brief Configuration API of sensor
|
||||
*/
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiConfig
|
||||
* \page bme68x_api_bme68x_set_conf bme68x_set_conf
|
||||
* \code
|
||||
* int8_t bme68x_set_conf(struct bme68x_conf *conf, struct bme68x_dev *dev);
|
||||
* \endcode
|
||||
* @details This API is used to set the oversampling, filter and odr configuration
|
||||
*
|
||||
* @param[in] conf : Desired sensor configuration.
|
||||
* @param[in,out] dev : Structure instance of bme68x_dev.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_set_conf(struct bme68x_conf *conf, struct bme68x_dev *dev);
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiConfig
|
||||
* \page bme68x_api_bme68x_get_conf bme68x_get_conf
|
||||
* \code
|
||||
* int8_t bme68x_get_conf(struct bme68x_conf *conf, struct bme68x_dev *dev);
|
||||
* \endcode
|
||||
* @details This API is used to get the oversampling, filter and odr
|
||||
* configuration
|
||||
*
|
||||
* @param[out] conf : Present sensor configuration.
|
||||
* @param[in,out] dev : Structure instance of bme68x_dev.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_get_conf(struct bme68x_conf *conf, struct bme68x_dev *dev);
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiConfig
|
||||
* \page bme68x_api_bme68x_set_heatr_conf bme68x_set_heatr_conf
|
||||
* \code
|
||||
* int8_t bme68x_set_heatr_conf(uint8_t op_mode, const struct bme68x_heatr_conf *conf, struct bme68x_dev *dev);
|
||||
* \endcode
|
||||
* @details This API is used to set the gas configuration of the sensor.
|
||||
*
|
||||
* @param[in] op_mode : Expected operation mode of the sensor.
|
||||
* @param[in] conf : Desired heating configuration.
|
||||
* @param[in,out] dev : Structure instance of bme68x_dev.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_set_heatr_conf(uint8_t op_mode, const struct bme68x_heatr_conf *conf, struct bme68x_dev *dev);
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiConfig
|
||||
* \page bme68x_api_bme68x_get_heatr_conf bme68x_get_heatr_conf
|
||||
* \code
|
||||
* int8_t bme68x_get_heatr_conf(const struct bme68x_heatr_conf *conf, struct bme68x_dev *dev);
|
||||
* \endcode
|
||||
* @details This API is used to get the gas configuration of the sensor.
|
||||
*
|
||||
* @param[out] conf : Current configurations of the gas sensor.
|
||||
* @param[in,out] dev : Structure instance of bme68x_dev.
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_get_heatr_conf(const struct bme68x_heatr_conf *conf, struct bme68x_dev *dev);
|
||||
|
||||
/*!
|
||||
* \ingroup bme68xApiSystem
|
||||
* \page bme68x_api_bme68x_selftest_check bme68x_selftest_check
|
||||
* \code
|
||||
* int8_t bme68x_selftest_check(const struct bme68x_dev *dev);
|
||||
* \endcode
|
||||
* @details This API performs Self-test of low gas variant of BME68X
|
||||
*
|
||||
* @param[in, out] dev : Structure instance of bme68x_dev
|
||||
*
|
||||
* @return Result of API execution status
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Fail
|
||||
*/
|
||||
int8_t bme68x_selftest_check(const struct bme68x_dev *dev);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* End of CPP guard */
|
||||
#endif /* BME68X_H_ */
|
972
lib/lib_i2c/BME68x-Sensor-API/bme68x_defs.h
Normal file
972
lib/lib_i2c/BME68x-Sensor-API/bme68x_defs.h
Normal file
@ -0,0 +1,972 @@
|
||||
/**
|
||||
* Copyright (c) 2021 Bosch Sensortec GmbH. All rights reserved.
|
||||
*
|
||||
* BSD-3-Clause
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* 3. Neither the name of the copyright holder nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
||||
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* @file bme68x_defs.h
|
||||
* @date 2021-11-09
|
||||
* @version v4.4.7
|
||||
*
|
||||
*/
|
||||
|
||||
/*! @cond DOXYGEN_SUPRESS */
|
||||
|
||||
#ifndef BME68X_DEFS_H_
|
||||
#define BME68X_DEFS_H_
|
||||
|
||||
/********************************************************* */
|
||||
/*! Header includes */
|
||||
/********************************************************* */
|
||||
#ifdef __KERNEL__
|
||||
#include <linux/types.h>
|
||||
#include <linux/kernel.h>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
#endif
|
||||
|
||||
/********************************************************* */
|
||||
/*! Common Macros */
|
||||
/********************************************************* */
|
||||
#ifdef __KERNEL__
|
||||
#if !defined(UINT8_C) && !defined(INT8_C)
|
||||
#define INT8_C(x) S8_C(x)
|
||||
#define UINT8_C(x) U8_C(x)
|
||||
#endif
|
||||
|
||||
#if !defined(UINT16_C) && !defined(INT16_C)
|
||||
#define INT16_C(x) S16_C(x)
|
||||
#define UINT16_C(x) U16_C(x)
|
||||
#endif
|
||||
|
||||
#if !defined(INT32_C) && !defined(UINT32_C)
|
||||
#define INT32_C(x) S32_C(x)
|
||||
#define UINT32_C(x) U32_C(x)
|
||||
#endif
|
||||
|
||||
#if !defined(INT64_C) && !defined(UINT64_C)
|
||||
#define INT64_C(x) S64_C(x)
|
||||
#define UINT64_C(x) U64_C(x)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*! C standard macros */
|
||||
#ifndef NULL
|
||||
#ifdef __cplusplus
|
||||
#define NULL 0
|
||||
#else
|
||||
#define NULL ((void *) 0)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef BME68X_DO_NOT_USE_FPU
|
||||
|
||||
/* Comment or un-comment the macro to provide floating point data output */
|
||||
#define BME68X_USE_FPU
|
||||
#endif
|
||||
|
||||
/* Period between two polls (value can be given by user) */
|
||||
#ifndef BME68X_PERIOD_POLL
|
||||
#define BME68X_PERIOD_POLL UINT32_C(10000)
|
||||
#endif
|
||||
|
||||
/* BME68X unique chip identifier */
|
||||
#define BME68X_CHIP_ID UINT8_C(0x61)
|
||||
|
||||
/* Period for a soft reset */
|
||||
#define BME68X_PERIOD_RESET UINT32_C(10000)
|
||||
|
||||
/* BME68X lower I2C address */
|
||||
#define BME68X_I2C_ADDR_LOW UINT8_C(0x76)
|
||||
|
||||
/* BME68X higher I2C address */
|
||||
#define BME68X_I2C_ADDR_HIGH UINT8_C(0x77)
|
||||
|
||||
/* Soft reset command */
|
||||
#define BME68X_SOFT_RESET_CMD UINT8_C(0xb6)
|
||||
|
||||
/* Return code definitions */
|
||||
/* Success */
|
||||
#define BME68X_OK INT8_C(0)
|
||||
|
||||
/* Errors */
|
||||
/* Null pointer passed */
|
||||
#define BME68X_E_NULL_PTR INT8_C(-1)
|
||||
|
||||
/* Communication failure */
|
||||
#define BME68X_E_COM_FAIL INT8_C(-2)
|
||||
|
||||
/* Sensor not found */
|
||||
#define BME68X_E_DEV_NOT_FOUND INT8_C(-3)
|
||||
|
||||
/* Incorrect length parameter */
|
||||
#define BME68X_E_INVALID_LENGTH INT8_C(-4)
|
||||
|
||||
/* Self test fail error */
|
||||
#define BME68X_E_SELF_TEST INT8_C(-5)
|
||||
|
||||
/* Warnings */
|
||||
/* Define a valid operation mode */
|
||||
#define BME68X_W_DEFINE_OP_MODE INT8_C(1)
|
||||
|
||||
/* No new data was found */
|
||||
#define BME68X_W_NO_NEW_DATA INT8_C(2)
|
||||
|
||||
/* Define the shared heating duration */
|
||||
#define BME68X_W_DEFINE_SHD_HEATR_DUR INT8_C(3)
|
||||
|
||||
/* Information - only available via bme68x_dev.info_msg */
|
||||
#define BME68X_I_PARAM_CORR UINT8_C(1)
|
||||
|
||||
/* Register map addresses in I2C */
|
||||
/* Register for 3rd group of coefficients */
|
||||
#define BME68X_REG_COEFF3 UINT8_C(0x00)
|
||||
|
||||
/* 0th Field address*/
|
||||
#define BME68X_REG_FIELD0 UINT8_C(0x1d)
|
||||
|
||||
/* 0th Current DAC address*/
|
||||
#define BME68X_REG_IDAC_HEAT0 UINT8_C(0x50)
|
||||
|
||||
/* 0th Res heat address */
|
||||
#define BME68X_REG_RES_HEAT0 UINT8_C(0x5a)
|
||||
|
||||
/* 0th Gas wait address */
|
||||
#define BME68X_REG_GAS_WAIT0 UINT8_C(0x64)
|
||||
|
||||
/* Shared heating duration address */
|
||||
#define BME68X_REG_SHD_HEATR_DUR UINT8_C(0x6E)
|
||||
|
||||
/* CTRL_GAS_0 address */
|
||||
#define BME68X_REG_CTRL_GAS_0 UINT8_C(0x70)
|
||||
|
||||
/* CTRL_GAS_1 address */
|
||||
#define BME68X_REG_CTRL_GAS_1 UINT8_C(0x71)
|
||||
|
||||
/* CTRL_HUM address */
|
||||
#define BME68X_REG_CTRL_HUM UINT8_C(0x72)
|
||||
|
||||
/* CTRL_MEAS address */
|
||||
#define BME68X_REG_CTRL_MEAS UINT8_C(0x74)
|
||||
|
||||
/* CONFIG address */
|
||||
#define BME68X_REG_CONFIG UINT8_C(0x75)
|
||||
|
||||
/* MEM_PAGE address */
|
||||
#define BME68X_REG_MEM_PAGE UINT8_C(0xf3)
|
||||
|
||||
/* Unique ID address */
|
||||
#define BME68X_REG_UNIQUE_ID UINT8_C(0x83)
|
||||
|
||||
/* Register for 1st group of coefficients */
|
||||
#define BME68X_REG_COEFF1 UINT8_C(0x8a)
|
||||
|
||||
/* Chip ID address */
|
||||
#define BME68X_REG_CHIP_ID UINT8_C(0xd0)
|
||||
|
||||
/* Soft reset address */
|
||||
#define BME68X_REG_SOFT_RESET UINT8_C(0xe0)
|
||||
|
||||
/* Register for 2nd group of coefficients */
|
||||
#define BME68X_REG_COEFF2 UINT8_C(0xe1)
|
||||
|
||||
/* Variant ID Register */
|
||||
#define BME68X_REG_VARIANT_ID UINT8_C(0xF0)
|
||||
|
||||
/* Enable/Disable macros */
|
||||
|
||||
/* Enable */
|
||||
#define BME68X_ENABLE UINT8_C(0x01)
|
||||
|
||||
/* Disable */
|
||||
#define BME68X_DISABLE UINT8_C(0x00)
|
||||
|
||||
/* Variant ID macros */
|
||||
|
||||
/* Low Gas variant */
|
||||
#define BME68X_VARIANT_GAS_LOW UINT8_C(0x00)
|
||||
|
||||
/* High Gas variant */
|
||||
#define BME68X_VARIANT_GAS_HIGH UINT8_C(0x01)
|
||||
|
||||
/* Oversampling setting macros */
|
||||
|
||||
/* Switch off measurement */
|
||||
#define BME68X_OS_NONE UINT8_C(0)
|
||||
|
||||
/* Perform 1 measurement */
|
||||
#define BME68X_OS_1X UINT8_C(1)
|
||||
|
||||
/* Perform 2 measurements */
|
||||
#define BME68X_OS_2X UINT8_C(2)
|
||||
|
||||
/* Perform 4 measurements */
|
||||
#define BME68X_OS_4X UINT8_C(3)
|
||||
|
||||
/* Perform 8 measurements */
|
||||
#define BME68X_OS_8X UINT8_C(4)
|
||||
|
||||
/* Perform 16 measurements */
|
||||
#define BME68X_OS_16X UINT8_C(5)
|
||||
|
||||
/* IIR Filter settings */
|
||||
|
||||
/* Switch off the filter */
|
||||
#define BME68X_FILTER_OFF UINT8_C(0)
|
||||
|
||||
/* Filter coefficient of 2 */
|
||||
#define BME68X_FILTER_SIZE_1 UINT8_C(1)
|
||||
|
||||
/* Filter coefficient of 4 */
|
||||
#define BME68X_FILTER_SIZE_3 UINT8_C(2)
|
||||
|
||||
/* Filter coefficient of 8 */
|
||||
#define BME68X_FILTER_SIZE_7 UINT8_C(3)
|
||||
|
||||
/* Filter coefficient of 16 */
|
||||
#define BME68X_FILTER_SIZE_15 UINT8_C(4)
|
||||
|
||||
/* Filter coefficient of 32 */
|
||||
#define BME68X_FILTER_SIZE_31 UINT8_C(5)
|
||||
|
||||
/* Filter coefficient of 64 */
|
||||
#define BME68X_FILTER_SIZE_63 UINT8_C(6)
|
||||
|
||||
/* Filter coefficient of 128 */
|
||||
#define BME68X_FILTER_SIZE_127 UINT8_C(7)
|
||||
|
||||
/* ODR/Standby time macros */
|
||||
|
||||
/* Standby time of 0.59ms */
|
||||
#define BME68X_ODR_0_59_MS UINT8_C(0)
|
||||
|
||||
/* Standby time of 62.5ms */
|
||||
#define BME68X_ODR_62_5_MS UINT8_C(1)
|
||||
|
||||
/* Standby time of 125ms */
|
||||
#define BME68X_ODR_125_MS UINT8_C(2)
|
||||
|
||||
/* Standby time of 250ms */
|
||||
#define BME68X_ODR_250_MS UINT8_C(3)
|
||||
|
||||
/* Standby time of 500ms */
|
||||
#define BME68X_ODR_500_MS UINT8_C(4)
|
||||
|
||||
/* Standby time of 1s */
|
||||
#define BME68X_ODR_1000_MS UINT8_C(5)
|
||||
|
||||
/* Standby time of 10ms */
|
||||
#define BME68X_ODR_10_MS UINT8_C(6)
|
||||
|
||||
/* Standby time of 20ms */
|
||||
#define BME68X_ODR_20_MS UINT8_C(7)
|
||||
|
||||
/* No standby time */
|
||||
#define BME68X_ODR_NONE UINT8_C(8)
|
||||
|
||||
/* Operating mode macros */
|
||||
|
||||
/* Sleep operation mode */
|
||||
#define BME68X_SLEEP_MODE UINT8_C(0)
|
||||
|
||||
/* Forced operation mode */
|
||||
#define BME68X_FORCED_MODE UINT8_C(1)
|
||||
|
||||
/* Parallel operation mode */
|
||||
#define BME68X_PARALLEL_MODE UINT8_C(2)
|
||||
|
||||
/* Sequential operation mode */
|
||||
#define BME68X_SEQUENTIAL_MODE UINT8_C(3)
|
||||
|
||||
/* SPI page macros */
|
||||
|
||||
/* SPI memory page 0 */
|
||||
#define BME68X_MEM_PAGE0 UINT8_C(0x10)
|
||||
|
||||
/* SPI memory page 1 */
|
||||
#define BME68X_MEM_PAGE1 UINT8_C(0x00)
|
||||
|
||||
/* Coefficient index macros */
|
||||
|
||||
/* Length for all coefficients */
|
||||
#define BME68X_LEN_COEFF_ALL UINT8_C(42)
|
||||
|
||||
/* Length for 1st group of coefficients */
|
||||
#define BME68X_LEN_COEFF1 UINT8_C(23)
|
||||
|
||||
/* Length for 2nd group of coefficients */
|
||||
#define BME68X_LEN_COEFF2 UINT8_C(14)
|
||||
|
||||
/* Length for 3rd group of coefficients */
|
||||
#define BME68X_LEN_COEFF3 UINT8_C(5)
|
||||
|
||||
/* Length of the field */
|
||||
#define BME68X_LEN_FIELD UINT8_C(17)
|
||||
|
||||
/* Length between two fields */
|
||||
#define BME68X_LEN_FIELD_OFFSET UINT8_C(17)
|
||||
|
||||
/* Length of the configuration register */
|
||||
#define BME68X_LEN_CONFIG UINT8_C(5)
|
||||
|
||||
/* Length of the interleaved buffer */
|
||||
#define BME68X_LEN_INTERLEAVE_BUFF UINT8_C(20)
|
||||
|
||||
/* Coefficient index macros */
|
||||
|
||||
/* Coefficient T2 LSB position */
|
||||
#define BME68X_IDX_T2_LSB (0)
|
||||
|
||||
/* Coefficient T2 MSB position */
|
||||
#define BME68X_IDX_T2_MSB (1)
|
||||
|
||||
/* Coefficient T3 position */
|
||||
#define BME68X_IDX_T3 (2)
|
||||
|
||||
/* Coefficient P1 LSB position */
|
||||
#define BME68X_IDX_P1_LSB (4)
|
||||
|
||||
/* Coefficient P1 MSB position */
|
||||
#define BME68X_IDX_P1_MSB (5)
|
||||
|
||||
/* Coefficient P2 LSB position */
|
||||
#define BME68X_IDX_P2_LSB (6)
|
||||
|
||||
/* Coefficient P2 MSB position */
|
||||
#define BME68X_IDX_P2_MSB (7)
|
||||
|
||||
/* Coefficient P3 position */
|
||||
#define BME68X_IDX_P3 (8)
|
||||
|
||||
/* Coefficient P4 LSB position */
|
||||
#define BME68X_IDX_P4_LSB (10)
|
||||
|
||||
/* Coefficient P4 MSB position */
|
||||
#define BME68X_IDX_P4_MSB (11)
|
||||
|
||||
/* Coefficient P5 LSB position */
|
||||
#define BME68X_IDX_P5_LSB (12)
|
||||
|
||||
/* Coefficient P5 MSB position */
|
||||
#define BME68X_IDX_P5_MSB (13)
|
||||
|
||||
/* Coefficient P7 position */
|
||||
#define BME68X_IDX_P7 (14)
|
||||
|
||||
/* Coefficient P6 position */
|
||||
#define BME68X_IDX_P6 (15)
|
||||
|
||||
/* Coefficient P8 LSB position */
|
||||
#define BME68X_IDX_P8_LSB (18)
|
||||
|
||||
/* Coefficient P8 MSB position */
|
||||
#define BME68X_IDX_P8_MSB (19)
|
||||
|
||||
/* Coefficient P9 LSB position */
|
||||
#define BME68X_IDX_P9_LSB (20)
|
||||
|
||||
/* Coefficient P9 MSB position */
|
||||
#define BME68X_IDX_P9_MSB (21)
|
||||
|
||||
/* Coefficient P10 position */
|
||||
#define BME68X_IDX_P10 (22)
|
||||
|
||||
/* Coefficient H2 MSB position */
|
||||
#define BME68X_IDX_H2_MSB (23)
|
||||
|
||||
/* Coefficient H2 LSB position */
|
||||
#define BME68X_IDX_H2_LSB (24)
|
||||
|
||||
/* Coefficient H1 LSB position */
|
||||
#define BME68X_IDX_H1_LSB (24)
|
||||
|
||||
/* Coefficient H1 MSB position */
|
||||
#define BME68X_IDX_H1_MSB (25)
|
||||
|
||||
/* Coefficient H3 position */
|
||||
#define BME68X_IDX_H3 (26)
|
||||
|
||||
/* Coefficient H4 position */
|
||||
#define BME68X_IDX_H4 (27)
|
||||
|
||||
/* Coefficient H5 position */
|
||||
#define BME68X_IDX_H5 (28)
|
||||
|
||||
/* Coefficient H6 position */
|
||||
#define BME68X_IDX_H6 (29)
|
||||
|
||||
/* Coefficient H7 position */
|
||||
#define BME68X_IDX_H7 (30)
|
||||
|
||||
/* Coefficient T1 LSB position */
|
||||
#define BME68X_IDX_T1_LSB (31)
|
||||
|
||||
/* Coefficient T1 MSB position */
|
||||
#define BME68X_IDX_T1_MSB (32)
|
||||
|
||||
/* Coefficient GH2 LSB position */
|
||||
#define BME68X_IDX_GH2_LSB (33)
|
||||
|
||||
/* Coefficient GH2 MSB position */
|
||||
#define BME68X_IDX_GH2_MSB (34)
|
||||
|
||||
/* Coefficient GH1 position */
|
||||
#define BME68X_IDX_GH1 (35)
|
||||
|
||||
/* Coefficient GH3 position */
|
||||
#define BME68X_IDX_GH3 (36)
|
||||
|
||||
/* Coefficient res heat value position */
|
||||
#define BME68X_IDX_RES_HEAT_VAL (37)
|
||||
|
||||
/* Coefficient res heat range position */
|
||||
#define BME68X_IDX_RES_HEAT_RANGE (39)
|
||||
|
||||
/* Coefficient range switching error position */
|
||||
#define BME68X_IDX_RANGE_SW_ERR (41)
|
||||
|
||||
/* Gas measurement macros */
|
||||
|
||||
/* Disable gas measurement */
|
||||
#define BME68X_DISABLE_GAS_MEAS UINT8_C(0x00)
|
||||
|
||||
/* Enable gas measurement low */
|
||||
#define BME68X_ENABLE_GAS_MEAS_L UINT8_C(0x01)
|
||||
|
||||
/* Enable gas measurement high */
|
||||
#define BME68X_ENABLE_GAS_MEAS_H UINT8_C(0x02)
|
||||
|
||||
/* Heater control macros */
|
||||
|
||||
/* Enable heater */
|
||||
#define BME68X_ENABLE_HEATER UINT8_C(0x00)
|
||||
|
||||
/* Disable heater */
|
||||
#define BME68X_DISABLE_HEATER UINT8_C(0x01)
|
||||
|
||||
#ifdef BME68X_USE_FPU
|
||||
|
||||
/* 0 degree Celsius */
|
||||
#define BME68X_MIN_TEMPERATURE INT16_C(0)
|
||||
|
||||
/* 60 degree Celsius */
|
||||
#define BME68X_MAX_TEMPERATURE INT16_C(60)
|
||||
|
||||
/* 900 hecto Pascals */
|
||||
#define BME68X_MIN_PRESSURE UINT32_C(90000)
|
||||
|
||||
/* 1100 hecto Pascals */
|
||||
#define BME68X_MAX_PRESSURE UINT32_C(110000)
|
||||
|
||||
/* 20% relative humidity */
|
||||
#define BME68X_MIN_HUMIDITY UINT32_C(20)
|
||||
|
||||
/* 80% relative humidity*/
|
||||
#define BME68X_MAX_HUMIDITY UINT32_C(80)
|
||||
#else
|
||||
|
||||
/* 0 degree Celsius */
|
||||
#define BME68X_MIN_TEMPERATURE INT16_C(0)
|
||||
|
||||
/* 60 degree Celsius */
|
||||
#define BME68X_MAX_TEMPERATURE INT16_C(6000)
|
||||
|
||||
/* 900 hecto Pascals */
|
||||
#define BME68X_MIN_PRESSURE UINT32_C(90000)
|
||||
|
||||
/* 1100 hecto Pascals */
|
||||
#define BME68X_MAX_PRESSURE UINT32_C(110000)
|
||||
|
||||
/* 20% relative humidity */
|
||||
#define BME68X_MIN_HUMIDITY UINT32_C(20000)
|
||||
|
||||
/* 80% relative humidity*/
|
||||
#define BME68X_MAX_HUMIDITY UINT32_C(80000)
|
||||
|
||||
#endif
|
||||
|
||||
#define BME68X_HEATR_DUR1 UINT16_C(1000)
|
||||
#define BME68X_HEATR_DUR2 UINT16_C(2000)
|
||||
#define BME68X_HEATR_DUR1_DELAY UINT32_C(1000000)
|
||||
#define BME68X_HEATR_DUR2_DELAY UINT32_C(2000000)
|
||||
#define BME68X_N_MEAS UINT8_C(6)
|
||||
#define BME68X_LOW_TEMP UINT8_C(150)
|
||||
#define BME68X_HIGH_TEMP UINT16_C(350)
|
||||
|
||||
/* Mask macros */
|
||||
/* Mask for number of conversions */
|
||||
#define BME68X_NBCONV_MSK UINT8_C(0X0f)
|
||||
|
||||
/* Mask for IIR filter */
|
||||
#define BME68X_FILTER_MSK UINT8_C(0X1c)
|
||||
|
||||
/* Mask for ODR[3] */
|
||||
#define BME68X_ODR3_MSK UINT8_C(0x80)
|
||||
|
||||
/* Mask for ODR[2:0] */
|
||||
#define BME68X_ODR20_MSK UINT8_C(0xe0)
|
||||
|
||||
/* Mask for temperature oversampling */
|
||||
#define BME68X_OST_MSK UINT8_C(0Xe0)
|
||||
|
||||
/* Mask for pressure oversampling */
|
||||
#define BME68X_OSP_MSK UINT8_C(0X1c)
|
||||
|
||||
/* Mask for humidity oversampling */
|
||||
#define BME68X_OSH_MSK UINT8_C(0X07)
|
||||
|
||||
/* Mask for heater control */
|
||||
#define BME68X_HCTRL_MSK UINT8_C(0x08)
|
||||
|
||||
/* Mask for run gas */
|
||||
#define BME68X_RUN_GAS_MSK UINT8_C(0x30)
|
||||
|
||||
/* Mask for operation mode */
|
||||
#define BME68X_MODE_MSK UINT8_C(0x03)
|
||||
|
||||
/* Mask for res heat range */
|
||||
#define BME68X_RHRANGE_MSK UINT8_C(0x30)
|
||||
|
||||
/* Mask for range switching error */
|
||||
#define BME68X_RSERROR_MSK UINT8_C(0xf0)
|
||||
|
||||
/* Mask for new data */
|
||||
#define BME68X_NEW_DATA_MSK UINT8_C(0x80)
|
||||
|
||||
/* Mask for gas index */
|
||||
#define BME68X_GAS_INDEX_MSK UINT8_C(0x0f)
|
||||
|
||||
/* Mask for gas range */
|
||||
#define BME68X_GAS_RANGE_MSK UINT8_C(0x0f)
|
||||
|
||||
/* Mask for gas measurement valid */
|
||||
#define BME68X_GASM_VALID_MSK UINT8_C(0x20)
|
||||
|
||||
/* Mask for heater stability */
|
||||
#define BME68X_HEAT_STAB_MSK UINT8_C(0x10)
|
||||
|
||||
/* Mask for SPI memory page */
|
||||
#define BME68X_MEM_PAGE_MSK UINT8_C(0x10)
|
||||
|
||||
/* Mask for reading a register in SPI */
|
||||
#define BME68X_SPI_RD_MSK UINT8_C(0x80)
|
||||
|
||||
/* Mask for writing a register in SPI */
|
||||
#define BME68X_SPI_WR_MSK UINT8_C(0x7f)
|
||||
|
||||
/* Mask for the H1 calibration coefficient */
|
||||
#define BME68X_BIT_H1_DATA_MSK UINT8_C(0x0f)
|
||||
|
||||
/* Position macros */
|
||||
|
||||
/* Filter bit position */
|
||||
#define BME68X_FILTER_POS UINT8_C(2)
|
||||
|
||||
/* Temperature oversampling bit position */
|
||||
#define BME68X_OST_POS UINT8_C(5)
|
||||
|
||||
/* Pressure oversampling bit position */
|
||||
#define BME68X_OSP_POS UINT8_C(2)
|
||||
|
||||
/* ODR[3] bit position */
|
||||
#define BME68X_ODR3_POS UINT8_C(7)
|
||||
|
||||
/* ODR[2:0] bit position */
|
||||
#define BME68X_ODR20_POS UINT8_C(5)
|
||||
|
||||
/* Run gas bit position */
|
||||
#define BME68X_RUN_GAS_POS UINT8_C(4)
|
||||
|
||||
/* Heater control bit position */
|
||||
#define BME68X_HCTRL_POS UINT8_C(3)
|
||||
|
||||
/* Macro to combine two 8 bit data's to form a 16 bit data */
|
||||
#define BME68X_CONCAT_BYTES(msb, lsb) (((uint16_t)msb << 8) | (uint16_t)lsb)
|
||||
|
||||
/* Macro to set bits */
|
||||
#define BME68X_SET_BITS(reg_data, bitname, data) \
|
||||
((reg_data & ~(bitname##_MSK)) | \
|
||||
((data << bitname##_POS) & bitname##_MSK))
|
||||
|
||||
/* Macro to get bits */
|
||||
#define BME68X_GET_BITS(reg_data, bitname) ((reg_data & (bitname##_MSK)) >> \
|
||||
(bitname##_POS))
|
||||
|
||||
/* Macro to set bits starting from position 0 */
|
||||
#define BME68X_SET_BITS_POS_0(reg_data, bitname, data) \
|
||||
((reg_data & ~(bitname##_MSK)) | \
|
||||
(data & bitname##_MSK))
|
||||
|
||||
/* Macro to get bits starting from position 0 */
|
||||
#define BME68X_GET_BITS_POS_0(reg_data, bitname) (reg_data & (bitname##_MSK))
|
||||
|
||||
/**
|
||||
* BME68X_INTF_RET_TYPE is the read/write interface return type which can be overwritten by the build system.
|
||||
* The default is set to int8_t.
|
||||
*/
|
||||
#ifndef BME68X_INTF_RET_TYPE
|
||||
#define BME68X_INTF_RET_TYPE int8_t
|
||||
#endif
|
||||
|
||||
/**
|
||||
* BME68X_INTF_RET_SUCCESS is the success return value read/write interface return type which can be
|
||||
* overwritten by the build system. The default is set to 0. It is used to check for a successful
|
||||
* execution of the read/write functions
|
||||
*/
|
||||
#ifndef BME68X_INTF_RET_SUCCESS
|
||||
#define BME68X_INTF_RET_SUCCESS INT8_C(0)
|
||||
#endif
|
||||
|
||||
/********************************************************* */
|
||||
/*! Function Pointers */
|
||||
/********************************************************* */
|
||||
|
||||
/*!
|
||||
* @brief Bus communication function pointer which should be mapped to
|
||||
* the platform specific read functions of the user
|
||||
*
|
||||
* @param[in] reg_addr : 8bit register address of the sensor
|
||||
* @param[out] reg_data : Data from the specified address
|
||||
* @param[in] length : Length of the reg_data array
|
||||
* @param[in,out] intf_ptr : Void pointer that can enable the linking of descriptors
|
||||
* for interface related callbacks
|
||||
* @retval 0 for Success
|
||||
* @retval Non-zero for Failure
|
||||
*/
|
||||
typedef BME68X_INTF_RET_TYPE (*bme68x_read_fptr_t)(uint8_t reg_addr, uint8_t *reg_data, uint32_t length,
|
||||
void *intf_ptr);
|
||||
|
||||
/*!
|
||||
* @brief Bus communication function pointer which should be mapped to
|
||||
* the platform specific write functions of the user
|
||||
*
|
||||
* @param[in] reg_addr : 8bit register address of the sensor
|
||||
* @param[out] reg_data : Data to the specified address
|
||||
* @param[in] length : Length of the reg_data array
|
||||
* @param[in,out] intf_ptr : Void pointer that can enable the linking of descriptors
|
||||
* for interface related callbacks
|
||||
* @retval 0 for Success
|
||||
* @retval Non-zero for Failure
|
||||
*
|
||||
*/
|
||||
typedef BME68X_INTF_RET_TYPE (*bme68x_write_fptr_t)(uint8_t reg_addr, const uint8_t *reg_data, uint32_t length,
|
||||
void *intf_ptr);
|
||||
|
||||
/*!
|
||||
* @brief Delay function pointer which should be mapped to
|
||||
* delay function of the user
|
||||
*
|
||||
* @param period - The time period in microseconds
|
||||
* @param[in,out] intf_ptr : Void pointer that can enable the linking of descriptors
|
||||
* for interface related callbacks
|
||||
*/
|
||||
typedef void (*bme68x_delay_us_fptr_t)(uint32_t period, void *intf_ptr);
|
||||
|
||||
/*
|
||||
* @brief Generic communication function pointer
|
||||
* @param[in] dev_id: Place holder to store the id of the device structure
|
||||
* Can be used to store the index of the Chip select or
|
||||
* I2C address of the device.
|
||||
* @param[in] reg_addr: Used to select the register the where data needs to
|
||||
* be read from or written to.
|
||||
* @param[in,out] reg_data: Data array to read/write
|
||||
* @param[in] len: Length of the data array
|
||||
*/
|
||||
|
||||
/*
|
||||
* @brief Interface selection Enumerations
|
||||
*/
|
||||
enum bme68x_intf {
|
||||
/*! SPI interface */
|
||||
BME68X_SPI_INTF,
|
||||
/*! I2C interface */
|
||||
BME68X_I2C_INTF
|
||||
};
|
||||
|
||||
/* Structure definitions */
|
||||
|
||||
/*
|
||||
* @brief Sensor field data structure
|
||||
*/
|
||||
struct bme68x_data
|
||||
{
|
||||
/*! Contains new_data, gasm_valid & heat_stab */
|
||||
uint8_t status;
|
||||
|
||||
/*! The index of the heater profile used */
|
||||
uint8_t gas_index;
|
||||
|
||||
/*! Measurement index to track order */
|
||||
uint8_t meas_index;
|
||||
|
||||
/*! Heater resistance */
|
||||
uint8_t res_heat;
|
||||
|
||||
/*! Current DAC */
|
||||
uint8_t idac;
|
||||
|
||||
/*! Gas wait period */
|
||||
uint8_t gas_wait;
|
||||
#ifndef BME68X_USE_FPU
|
||||
|
||||
/*! Temperature in degree celsius x100 */
|
||||
int16_t temperature;
|
||||
|
||||
/*! Pressure in Pascal */
|
||||
uint32_t pressure;
|
||||
|
||||
/*! Humidity in % relative humidity x1000 */
|
||||
uint32_t humidity;
|
||||
|
||||
/*! Gas resistance in Ohms */
|
||||
uint32_t gas_resistance;
|
||||
#else
|
||||
|
||||
/*! Temperature in degree celsius */
|
||||
float temperature;
|
||||
|
||||
/*! Pressure in Pascal */
|
||||
float pressure;
|
||||
|
||||
/*! Humidity in % relative humidity x1000 */
|
||||
float humidity;
|
||||
|
||||
/*! Gas resistance in Ohms */
|
||||
float gas_resistance;
|
||||
|
||||
#endif
|
||||
|
||||
};
|
||||
|
||||
/*
|
||||
* @brief Structure to hold the calibration coefficients
|
||||
*/
|
||||
struct bme68x_calib_data
|
||||
{
|
||||
/*! Calibration coefficient for the humidity sensor */
|
||||
uint16_t par_h1;
|
||||
|
||||
/*! Calibration coefficient for the humidity sensor */
|
||||
uint16_t par_h2;
|
||||
|
||||
/*! Calibration coefficient for the humidity sensor */
|
||||
int8_t par_h3;
|
||||
|
||||
/*! Calibration coefficient for the humidity sensor */
|
||||
int8_t par_h4;
|
||||
|
||||
/*! Calibration coefficient for the humidity sensor */
|
||||
int8_t par_h5;
|
||||
|
||||
/*! Calibration coefficient for the humidity sensor */
|
||||
uint8_t par_h6;
|
||||
|
||||
/*! Calibration coefficient for the humidity sensor */
|
||||
int8_t par_h7;
|
||||
|
||||
/*! Calibration coefficient for the gas sensor */
|
||||
int8_t par_gh1;
|
||||
|
||||
/*! Calibration coefficient for the gas sensor */
|
||||
int16_t par_gh2;
|
||||
|
||||
/*! Calibration coefficient for the gas sensor */
|
||||
int8_t par_gh3;
|
||||
|
||||
/*! Calibration coefficient for the temperature sensor */
|
||||
uint16_t par_t1;
|
||||
|
||||
/*! Calibration coefficient for the temperature sensor */
|
||||
int16_t par_t2;
|
||||
|
||||
/*! Calibration coefficient for the temperature sensor */
|
||||
int8_t par_t3;
|
||||
|
||||
/*! Calibration coefficient for the pressure sensor */
|
||||
uint16_t par_p1;
|
||||
|
||||
/*! Calibration coefficient for the pressure sensor */
|
||||
int16_t par_p2;
|
||||
|
||||
/*! Calibration coefficient for the pressure sensor */
|
||||
int8_t par_p3;
|
||||
|
||||
/*! Calibration coefficient for the pressure sensor */
|
||||
int16_t par_p4;
|
||||
|
||||
/*! Calibration coefficient for the pressure sensor */
|
||||
int16_t par_p5;
|
||||
|
||||
/*! Calibration coefficient for the pressure sensor */
|
||||
int8_t par_p6;
|
||||
|
||||
/*! Calibration coefficient for the pressure sensor */
|
||||
int8_t par_p7;
|
||||
|
||||
/*! Calibration coefficient for the pressure sensor */
|
||||
int16_t par_p8;
|
||||
|
||||
/*! Calibration coefficient for the pressure sensor */
|
||||
int16_t par_p9;
|
||||
|
||||
/*! Calibration coefficient for the pressure sensor */
|
||||
uint8_t par_p10;
|
||||
#ifndef BME68X_USE_FPU
|
||||
|
||||
/*! Variable to store the intermediate temperature coefficient */
|
||||
int32_t t_fine;
|
||||
#else
|
||||
|
||||
/*! Variable to store the intermediate temperature coefficient */
|
||||
float t_fine;
|
||||
#endif
|
||||
|
||||
/*! Heater resistance range coefficient */
|
||||
uint8_t res_heat_range;
|
||||
|
||||
/*! Heater resistance value coefficient */
|
||||
int8_t res_heat_val;
|
||||
|
||||
/*! Gas resistance range switching error coefficient */
|
||||
int8_t range_sw_err;
|
||||
};
|
||||
|
||||
/*
|
||||
* @brief BME68X sensor settings structure which comprises of ODR,
|
||||
* over-sampling and filter settings.
|
||||
*/
|
||||
struct bme68x_conf
|
||||
{
|
||||
/*! Humidity oversampling. Refer @ref osx*/
|
||||
uint8_t os_hum;
|
||||
|
||||
/*! Temperature oversampling. Refer @ref osx */
|
||||
uint8_t os_temp;
|
||||
|
||||
/*! Pressure oversampling. Refer @ref osx */
|
||||
uint8_t os_pres;
|
||||
|
||||
/*! Filter coefficient. Refer @ref filter*/
|
||||
uint8_t filter;
|
||||
|
||||
/*!
|
||||
* Standby time between sequential mode measurement profiles.
|
||||
* Refer @ref odr
|
||||
*/
|
||||
uint8_t odr;
|
||||
};
|
||||
|
||||
/*
|
||||
* @brief BME68X gas heater configuration
|
||||
*/
|
||||
struct bme68x_heatr_conf
|
||||
{
|
||||
/*! Enable gas measurement. Refer @ref en_dis */
|
||||
uint8_t enable;
|
||||
|
||||
/*! Store the heater temperature for forced mode degree Celsius */
|
||||
uint16_t heatr_temp;
|
||||
|
||||
/*! Store the heating duration for forced mode in milliseconds */
|
||||
uint16_t heatr_dur;
|
||||
|
||||
/*! Store the heater temperature profile in degree Celsius */
|
||||
uint16_t *heatr_temp_prof;
|
||||
|
||||
/*! Store the heating duration profile in milliseconds */
|
||||
uint16_t *heatr_dur_prof;
|
||||
|
||||
/*! Variable to store the length of the heating profile */
|
||||
uint8_t profile_len;
|
||||
|
||||
/*!
|
||||
* Variable to store heating duration for parallel mode
|
||||
* in milliseconds
|
||||
*/
|
||||
uint16_t shared_heatr_dur;
|
||||
};
|
||||
|
||||
/*
|
||||
* @brief BME68X device structure
|
||||
*/
|
||||
struct bme68x_dev
|
||||
{
|
||||
/*! Chip Id */
|
||||
uint8_t chip_id;
|
||||
|
||||
/*!
|
||||
* The interface pointer is used to enable the user
|
||||
* to link their interface descriptors for reference during the
|
||||
* implementation of the read and write interfaces to the
|
||||
* hardware.
|
||||
*/
|
||||
void *intf_ptr;
|
||||
|
||||
/*!
|
||||
* Variant id
|
||||
* ----------------------------------------
|
||||
* Value | Variant
|
||||
* ----------------------------------------
|
||||
* 0 | BME68X_VARIANT_GAS_LOW
|
||||
* 1 | BME68X_VARIANT_GAS_HIGH
|
||||
* ----------------------------------------
|
||||
*/
|
||||
uint32_t variant_id;
|
||||
|
||||
/*! SPI/I2C interface */
|
||||
enum bme68x_intf intf;
|
||||
|
||||
/*! Memory page used */
|
||||
uint8_t mem_page;
|
||||
|
||||
/*! Ambient temperature in Degree C*/
|
||||
int8_t amb_temp;
|
||||
|
||||
/*! Sensor calibration data */
|
||||
struct bme68x_calib_data calib;
|
||||
|
||||
/*! Read function pointer */
|
||||
bme68x_read_fptr_t read;
|
||||
|
||||
/*! Write function pointer */
|
||||
bme68x_write_fptr_t write;
|
||||
|
||||
/*! Delay function pointer */
|
||||
bme68x_delay_us_fptr_t delay_us;
|
||||
|
||||
/*! To store interface pointer error */
|
||||
BME68X_INTF_RET_TYPE intf_rslt;
|
||||
|
||||
/*! Store the info messages */
|
||||
uint8_t info_msg;
|
||||
};
|
||||
|
||||
#endif /* BME68X_DEFS_H_ */
|
||||
/*! @endcond */
|
191
lib/lib_i2c/BME68x-Sensor-API/examples/common/common.c
Normal file
191
lib/lib_i2c/BME68x-Sensor-API/examples/common/common.c
Normal file
@ -0,0 +1,191 @@
|
||||
/**
|
||||
* Copyright (C) 2021 Bosch Sensortec GmbH. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "bme68x.h"
|
||||
#include "coines.h"
|
||||
#include "common.h"
|
||||
|
||||
/******************************************************************************/
|
||||
/*! Macro definitions */
|
||||
/*! BME68X shuttle board ID */
|
||||
#define BME68X_SHUTTLE_ID 0x93
|
||||
|
||||
/******************************************************************************/
|
||||
/*! Static variable definition */
|
||||
static uint8_t dev_addr;
|
||||
|
||||
/******************************************************************************/
|
||||
/*! User interface functions */
|
||||
|
||||
/*!
|
||||
* I2C read function map to COINES platform
|
||||
*/
|
||||
BME68X_INTF_RET_TYPE bme68x_i2c_read(uint8_t reg_addr, uint8_t *reg_data, uint32_t len, void *intf_ptr)
|
||||
{
|
||||
uint8_t dev_addr = *(uint8_t*)intf_ptr;
|
||||
|
||||
return coines_read_i2c(dev_addr, reg_addr, reg_data, (uint16_t)len);
|
||||
}
|
||||
|
||||
/*!
|
||||
* I2C write function map to COINES platform
|
||||
*/
|
||||
BME68X_INTF_RET_TYPE bme68x_i2c_write(uint8_t reg_addr, const uint8_t *reg_data, uint32_t len, void *intf_ptr)
|
||||
{
|
||||
uint8_t dev_addr = *(uint8_t*)intf_ptr;
|
||||
|
||||
return coines_write_i2c(dev_addr, reg_addr, (uint8_t *)reg_data, (uint16_t)len);
|
||||
}
|
||||
|
||||
/*!
|
||||
* SPI read function map to COINES platform
|
||||
*/
|
||||
BME68X_INTF_RET_TYPE bme68x_spi_read(uint8_t reg_addr, uint8_t *reg_data, uint32_t len, void *intf_ptr)
|
||||
{
|
||||
uint8_t dev_addr = *(uint8_t*)intf_ptr;
|
||||
|
||||
return coines_read_spi(dev_addr, reg_addr, reg_data, (uint16_t)len);
|
||||
}
|
||||
|
||||
/*!
|
||||
* SPI write function map to COINES platform
|
||||
*/
|
||||
BME68X_INTF_RET_TYPE bme68x_spi_write(uint8_t reg_addr, const uint8_t *reg_data, uint32_t len, void *intf_ptr)
|
||||
{
|
||||
uint8_t dev_addr = *(uint8_t*)intf_ptr;
|
||||
|
||||
return coines_write_spi(dev_addr, reg_addr, (uint8_t *)reg_data, (uint16_t)len);
|
||||
}
|
||||
|
||||
/*!
|
||||
* Delay function map to COINES platform
|
||||
*/
|
||||
void bme68x_delay_us(uint32_t period, void *intf_ptr)
|
||||
{
|
||||
coines_delay_usec(period);
|
||||
}
|
||||
|
||||
void bme68x_check_rslt(const char api_name[], int8_t rslt)
|
||||
{
|
||||
switch (rslt)
|
||||
{
|
||||
case BME68X_OK:
|
||||
|
||||
/* Do nothing */
|
||||
break;
|
||||
case BME68X_E_NULL_PTR:
|
||||
printf("API name [%s] Error [%d] : Null pointer\r\n", api_name, rslt);
|
||||
break;
|
||||
case BME68X_E_COM_FAIL:
|
||||
printf("API name [%s] Error [%d] : Communication failure\r\n", api_name, rslt);
|
||||
break;
|
||||
case BME68X_E_INVALID_LENGTH:
|
||||
printf("API name [%s] Error [%d] : Incorrect length parameter\r\n", api_name, rslt);
|
||||
break;
|
||||
case BME68X_E_DEV_NOT_FOUND:
|
||||
printf("API name [%s] Error [%d] : Device not found\r\n", api_name, rslt);
|
||||
break;
|
||||
case BME68X_E_SELF_TEST:
|
||||
printf("API name [%s] Error [%d] : Self test error\r\n", api_name, rslt);
|
||||
break;
|
||||
case BME68X_W_NO_NEW_DATA:
|
||||
printf("API name [%s] Warning [%d] : No new data found\r\n", api_name, rslt);
|
||||
break;
|
||||
default:
|
||||
printf("API name [%s] Error [%d] : Unknown error code\r\n", api_name, rslt);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
int8_t bme68x_interface_init(struct bme68x_dev *bme, uint8_t intf)
|
||||
{
|
||||
int8_t rslt = BME68X_OK;
|
||||
struct coines_board_info board_info;
|
||||
|
||||
if (bme != NULL)
|
||||
{
|
||||
int16_t result = coines_open_comm_intf(COINES_COMM_INTF_USB);
|
||||
if (result < COINES_SUCCESS)
|
||||
{
|
||||
printf(
|
||||
"\n Unable to connect with Application Board ! \n" " 1. Check if the board is connected and powered on. \n" " 2. Check if Application Board USB driver is installed. \n"
|
||||
" 3. Check if board is in use by another application. (Insufficient permissions to access USB) \n");
|
||||
exit(result);
|
||||
}
|
||||
|
||||
result = coines_get_board_info(&board_info);
|
||||
|
||||
#if defined(PC)
|
||||
setbuf(stdout, NULL);
|
||||
#endif
|
||||
|
||||
if (result == COINES_SUCCESS)
|
||||
{
|
||||
if ((board_info.shuttle_id != BME68X_SHUTTLE_ID))
|
||||
{
|
||||
printf("! Warning invalid sensor shuttle \n ," "This application will not support this sensor \n");
|
||||
exit(COINES_E_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
coines_set_shuttleboard_vdd_vddio_config(0, 0);
|
||||
coines_delay_msec(100);
|
||||
|
||||
/* Bus configuration : I2C */
|
||||
if (intf == BME68X_I2C_INTF)
|
||||
{
|
||||
printf("I2C Interface\n");
|
||||
dev_addr = BME68X_I2C_ADDR_LOW;
|
||||
bme->read = bme68x_i2c_read;
|
||||
bme->write = bme68x_i2c_write;
|
||||
bme->intf = BME68X_I2C_INTF;
|
||||
coines_config_i2c_bus(COINES_I2C_BUS_0, COINES_I2C_STANDARD_MODE);
|
||||
}
|
||||
/* Bus configuration : SPI */
|
||||
else if (intf == BME68X_SPI_INTF)
|
||||
{
|
||||
printf("SPI Interface\n");
|
||||
dev_addr = COINES_SHUTTLE_PIN_7;
|
||||
bme->read = bme68x_spi_read;
|
||||
bme->write = bme68x_spi_write;
|
||||
bme->intf = BME68X_SPI_INTF;
|
||||
coines_config_spi_bus(COINES_SPI_BUS_0, COINES_SPI_SPEED_7_5_MHZ, COINES_SPI_MODE0);
|
||||
}
|
||||
|
||||
coines_delay_msec(100);
|
||||
|
||||
coines_set_shuttleboard_vdd_vddio_config(3300, 3300);
|
||||
|
||||
coines_delay_msec(100);
|
||||
|
||||
bme->delay_us = bme68x_delay_us;
|
||||
bme->intf_ptr = &dev_addr;
|
||||
bme->amb_temp = 25; /* The ambient temperature in deg C is used for defining the heater temperature */
|
||||
}
|
||||
else
|
||||
{
|
||||
rslt = BME68X_E_NULL_PTR;
|
||||
}
|
||||
|
||||
return rslt;
|
||||
}
|
||||
|
||||
void bme68x_coines_deinit(void)
|
||||
{
|
||||
fflush(stdout);
|
||||
|
||||
coines_set_shuttleboard_vdd_vddio_config(0, 0);
|
||||
coines_delay_msec(1000);
|
||||
|
||||
/* Coines interface reset */
|
||||
coines_soft_reset();
|
||||
coines_delay_msec(1000);
|
||||
coines_close_comm_intf(COINES_COMM_INTF_USB);
|
||||
}
|
116
lib/lib_i2c/BME68x-Sensor-API/examples/common/common.h
Normal file
116
lib/lib_i2c/BME68x-Sensor-API/examples/common/common.h
Normal file
@ -0,0 +1,116 @@
|
||||
/**
|
||||
* Copyright (C) 2021 Bosch Sensortec GmbH. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /*__cplusplus */
|
||||
|
||||
#include "bme68x.h"
|
||||
|
||||
/*!
|
||||
* @brief Function to select the interface between SPI and I2C.
|
||||
*
|
||||
* @param[in] bme : Structure instance of bme68x_dev
|
||||
* @param[in] intf : Interface selection parameter
|
||||
*
|
||||
* @return Status of execution
|
||||
* @retval 0 -> Success
|
||||
* @retval < 0 -> Failure Info
|
||||
*/
|
||||
int8_t bme68x_interface_init(struct bme68x_dev *bme, uint8_t intf);
|
||||
|
||||
/*!
|
||||
* @brief Function for reading the sensor's registers through I2C bus.
|
||||
*
|
||||
* @param[in] reg_addr : Register address.
|
||||
* @param[out] reg_data : Pointer to the data buffer to store the read data.
|
||||
* @param[in] len : No of bytes to read.
|
||||
* @param[in] intf_ptr : Interface pointer
|
||||
*
|
||||
* @return Status of execution
|
||||
* @retval = BME68X_INTF_RET_SUCCESS -> Success
|
||||
* @retval != BME68X_INTF_RET_SUCCESS -> Failure Info
|
||||
*
|
||||
*/
|
||||
BME68X_INTF_RET_TYPE bme68x_i2c_read(uint8_t reg_addr, uint8_t *reg_data, uint32_t len, void *intf_ptr);
|
||||
|
||||
/*!
|
||||
* @brief Function for writing the sensor's registers through I2C bus.
|
||||
*
|
||||
* @param[in] reg_addr : Register address.
|
||||
* @param[in] reg_data : Pointer to the data buffer whose value is to be written.
|
||||
* @param[in] len : No of bytes to write.
|
||||
* @param[in] intf_ptr : Interface pointer
|
||||
*
|
||||
* @return Status of execution
|
||||
* @retval = BME68X_INTF_RET_SUCCESS -> Success
|
||||
* @retval != BME68X_INTF_RET_SUCCESS -> Failure Info
|
||||
*
|
||||
*/
|
||||
BME68X_INTF_RET_TYPE bme68x_i2c_write(uint8_t reg_addr, const uint8_t *reg_data, uint32_t len, void *intf_ptr);
|
||||
|
||||
/*!
|
||||
* @brief Function for reading the sensor's registers through SPI bus.
|
||||
*
|
||||
* @param[in] reg_addr : Register address.
|
||||
* @param[out] reg_data : Pointer to the data buffer to store the read data.
|
||||
* @param[in] len : No of bytes to read.
|
||||
* @param[in] intf_ptr : Interface pointer
|
||||
*
|
||||
* @return Status of execution
|
||||
* @retval = BME68X_INTF_RET_SUCCESS -> Success
|
||||
* @retval != BME68X_INTF_RET_SUCCESS -> Failure Info
|
||||
*
|
||||
*/
|
||||
BME68X_INTF_RET_TYPE bme68x_spi_read(uint8_t reg_addr, uint8_t *reg_data, uint32_t len, void *intf_ptr);
|
||||
|
||||
/*!
|
||||
* @brief Function for writing the sensor's registers through SPI bus.
|
||||
*
|
||||
* @param[in] reg_addr : Register address.
|
||||
* @param[in] reg_data : Pointer to the data buffer whose data has to be written.
|
||||
* @param[in] len : No of bytes to write.
|
||||
* @param[in] intf_ptr : Interface pointer
|
||||
*
|
||||
* @return Status of execution
|
||||
* @retval = BME68X_INTF_RET_SUCCESS -> Success
|
||||
* @retval != BME68X_INTF_RET_SUCCESS -> Failure Info
|
||||
*
|
||||
*/
|
||||
BME68X_INTF_RET_TYPE bme68x_spi_write(uint8_t reg_addr, const uint8_t *reg_data, uint32_t len, void *intf_ptr);
|
||||
|
||||
/*!
|
||||
* @brief This function provides the delay for required time (Microsecond) as per the input provided in some of the
|
||||
* APIs.
|
||||
*
|
||||
* @param[in] period : The required wait time in microsecond.
|
||||
* @param[in] intf_ptr : Interface pointer
|
||||
*
|
||||
* @return void.
|
||||
*
|
||||
*/
|
||||
void bme68x_delay_us(uint32_t period, void *intf_ptr);
|
||||
|
||||
/*!
|
||||
* @brief Prints the execution status of the APIs.
|
||||
*
|
||||
* @param[in] api_name : Name of the API whose execution status has to be printed.
|
||||
* @param[in] rslt : Error code returned by the API whose execution status has to be printed.
|
||||
*
|
||||
* @return void.
|
||||
*/
|
||||
void bme68x_check_rslt(const char api_name[], int8_t rslt);
|
||||
|
||||
/*!
|
||||
* @brief Deinitializes coines platform
|
||||
*
|
||||
* @return void.
|
||||
*/
|
||||
void bme68x_coines_deinit(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /*__cplusplus */
|
15
lib/lib_i2c/BME68x-Sensor-API/examples/forced_mode/Makefile
Normal file
15
lib/lib_i2c/BME68x-Sensor-API/examples/forced_mode/Makefile
Normal file
@ -0,0 +1,15 @@
|
||||
COINES_INSTALL_PATH ?= ../../../..
|
||||
|
||||
EXAMPLE_FILE ?= forced_mode.c
|
||||
|
||||
API_LOCATION ?= ../..
|
||||
|
||||
C_SRCS += \
|
||||
$(API_LOCATION)/bme68x.c \
|
||||
../common/common.c
|
||||
|
||||
INCLUDEPATHS += \
|
||||
$(API_LOCATION) \
|
||||
../common
|
||||
|
||||
include $(COINES_INSTALL_PATH)/coines.mk
|
108
lib/lib_i2c/BME68x-Sensor-API/examples/forced_mode/forced_mode.c
Normal file
108
lib/lib_i2c/BME68x-Sensor-API/examples/forced_mode/forced_mode.c
Normal file
@ -0,0 +1,108 @@
|
||||
/**
|
||||
* Copyright (C) 2021 Bosch Sensortec GmbH
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "bme68x.h"
|
||||
#include "common.h"
|
||||
#include "coines.h"
|
||||
|
||||
/***********************************************************************/
|
||||
/* Macros */
|
||||
/***********************************************************************/
|
||||
|
||||
/* Macro for count of samples to be displayed */
|
||||
#define SAMPLE_COUNT UINT16_C(300)
|
||||
|
||||
/***********************************************************************/
|
||||
/* Test code */
|
||||
/***********************************************************************/
|
||||
|
||||
int main(void)
|
||||
{
|
||||
struct bme68x_dev bme;
|
||||
int8_t rslt;
|
||||
struct bme68x_conf conf;
|
||||
struct bme68x_heatr_conf heatr_conf;
|
||||
struct bme68x_data data;
|
||||
uint32_t del_period;
|
||||
uint32_t time_ms = 0;
|
||||
uint8_t n_fields;
|
||||
uint16_t sample_count = 1;
|
||||
|
||||
/* Interface preference is updated as a parameter
|
||||
* For I2C : BME68X_I2C_INTF
|
||||
* For SPI : BME68X_SPI_INTF
|
||||
*/
|
||||
rslt = bme68x_interface_init(&bme, BME68X_I2C_INTF);
|
||||
bme68x_check_rslt("bme68x_interface_init", rslt);
|
||||
|
||||
rslt = bme68x_init(&bme);
|
||||
bme68x_check_rslt("bme68x_init", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
conf.filter = BME68X_FILTER_OFF;
|
||||
conf.odr = BME68X_ODR_NONE;
|
||||
conf.os_hum = BME68X_OS_16X;
|
||||
conf.os_pres = BME68X_OS_1X;
|
||||
conf.os_temp = BME68X_OS_2X;
|
||||
rslt = bme68x_set_conf(&conf, &bme);
|
||||
bme68x_check_rslt("bme68x_set_conf", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
heatr_conf.enable = BME68X_ENABLE;
|
||||
heatr_conf.heatr_temp = 300;
|
||||
heatr_conf.heatr_dur = 100;
|
||||
rslt = bme68x_set_heatr_conf(BME68X_FORCED_MODE, &heatr_conf, &bme);
|
||||
bme68x_check_rslt("bme68x_set_heatr_conf", rslt);
|
||||
|
||||
printf("Sample, TimeStamp(ms), Temperature(deg C), Pressure(Pa), Humidity(%%), Gas resistance(ohm), Status\n");
|
||||
|
||||
while (sample_count <= SAMPLE_COUNT)
|
||||
{
|
||||
rslt = bme68x_set_op_mode(BME68X_FORCED_MODE, &bme);
|
||||
bme68x_check_rslt("bme68x_set_op_mode", rslt);
|
||||
|
||||
/* Calculate delay period in microseconds */
|
||||
del_period = bme68x_get_meas_dur(BME68X_FORCED_MODE, &conf, &bme) + (heatr_conf.heatr_dur * 1000);
|
||||
bme.delay_us(del_period, bme.intf_ptr);
|
||||
|
||||
time_ms = coines_get_millis();
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
rslt = bme68x_get_data(BME68X_FORCED_MODE, &data, &n_fields, &bme);
|
||||
bme68x_check_rslt("bme68x_get_data", rslt);
|
||||
|
||||
if (n_fields)
|
||||
{
|
||||
#ifdef BME68X_USE_FPU
|
||||
printf("%u, %lu, %.2f, %.2f, %.2f, %.2f, 0x%x\n",
|
||||
sample_count,
|
||||
(long unsigned int)time_ms,
|
||||
data.temperature,
|
||||
data.pressure,
|
||||
data.humidity,
|
||||
data.gas_resistance,
|
||||
data.status);
|
||||
#else
|
||||
printf("%u, %lu, %d, %lu, %lu, %lu, 0x%x\n",
|
||||
sample_count,
|
||||
(long unsigned int)time_ms,
|
||||
(data.temperature / 100),
|
||||
(long unsigned int)data.pressure,
|
||||
(long unsigned int)(data.humidity / 1000),
|
||||
(long unsigned int)data.gas_resistance,
|
||||
data.status);
|
||||
#endif
|
||||
sample_count++;
|
||||
}
|
||||
}
|
||||
|
||||
bme68x_coines_deinit();
|
||||
|
||||
return rslt;
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
COINES_INSTALL_PATH ?= ../../../..
|
||||
|
||||
EXAMPLE_FILE ?= parallel_mode.c
|
||||
|
||||
API_LOCATION ?= ../..
|
||||
|
||||
C_SRCS += \
|
||||
$(API_LOCATION)/bme68x.c \
|
||||
../common/common.c
|
||||
|
||||
INCLUDEPATHS += \
|
||||
$(API_LOCATION) \
|
||||
../common
|
||||
|
||||
include $(COINES_INSTALL_PATH)/coines.mk
|
@ -0,0 +1,141 @@
|
||||
/**
|
||||
* Copyright (C) 2021 Bosch Sensortec GmbH
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "bme68x.h"
|
||||
#include "common.h"
|
||||
#include "coines.h"
|
||||
|
||||
/***********************************************************************/
|
||||
/* Macros */
|
||||
/***********************************************************************/
|
||||
|
||||
/*
|
||||
* Macro definition for valid new data (0x80) AND
|
||||
* heater stability (0x10) AND gas resistance (0x20) values
|
||||
*/
|
||||
#define BME68X_VALID_DATA UINT8_C(0xB0)
|
||||
|
||||
/* Macro for count of samples to be displayed */
|
||||
#define SAMPLE_COUNT UINT8_C(50)
|
||||
|
||||
/***********************************************************************/
|
||||
/* Test code */
|
||||
/***********************************************************************/
|
||||
|
||||
int main(void)
|
||||
{
|
||||
struct bme68x_dev bme;
|
||||
int8_t rslt;
|
||||
struct bme68x_conf conf;
|
||||
struct bme68x_heatr_conf heatr_conf;
|
||||
struct bme68x_data data[3];
|
||||
uint32_t del_period;
|
||||
uint8_t n_fields;
|
||||
uint32_t time_ms = 0;
|
||||
uint16_t sample_count = 1;
|
||||
|
||||
/* Heater temperature in degree Celsius */
|
||||
uint16_t temp_prof[10] = { 320, 100, 100, 100, 200, 200, 200, 320, 320, 320 };
|
||||
|
||||
/* Multiplier to the shared heater duration */
|
||||
uint16_t mul_prof[10] = { 5, 2, 10, 30, 5, 5, 5, 5, 5, 5 };
|
||||
|
||||
/* Interface preference is updated as a parameter
|
||||
* For I2C : BME68X_I2C_INTF
|
||||
* For SPI : BME68X_SPI_INTF
|
||||
*/
|
||||
rslt = bme68x_interface_init(&bme, BME68X_I2C_INTF);
|
||||
bme68x_check_rslt("bme68x_interface_init", rslt);
|
||||
|
||||
rslt = bme68x_init(&bme);
|
||||
bme68x_check_rslt("bme68x_init", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
rslt = bme68x_get_conf(&conf, &bme);
|
||||
bme68x_check_rslt("bme68x_get_conf", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
conf.filter = BME68X_FILTER_OFF;
|
||||
conf.odr = BME68X_ODR_NONE;
|
||||
conf.os_hum = BME68X_OS_1X;
|
||||
conf.os_pres = BME68X_OS_16X;
|
||||
conf.os_temp = BME68X_OS_2X;
|
||||
rslt = bme68x_set_conf(&conf, &bme);
|
||||
bme68x_check_rslt("bme68x_set_conf", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
heatr_conf.enable = BME68X_ENABLE;
|
||||
heatr_conf.heatr_temp_prof = temp_prof;
|
||||
heatr_conf.heatr_dur_prof = mul_prof;
|
||||
|
||||
/* Shared heating duration in milliseconds */
|
||||
heatr_conf.shared_heatr_dur = 140 - (bme68x_get_meas_dur(BME68X_PARALLEL_MODE, &conf, &bme) / 1000);
|
||||
|
||||
heatr_conf.profile_len = 10;
|
||||
rslt = bme68x_set_heatr_conf(BME68X_PARALLEL_MODE, &heatr_conf, &bme);
|
||||
bme68x_check_rslt("bme68x_set_heatr_conf", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
rslt = bme68x_set_op_mode(BME68X_PARALLEL_MODE, &bme);
|
||||
bme68x_check_rslt("bme68x_set_op_mode", rslt);
|
||||
|
||||
printf(
|
||||
"Print parallel mode data if mask for new data(0x80), gas measurement(0x20) and heater stability(0x10) are set\n\n");
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
printf(
|
||||
"Sample, TimeStamp(ms), Temperature(deg C), Pressure(Pa), Humidity(%%), Gas resistance(ohm), Status, Gas index, Meas index\n");
|
||||
while (sample_count <= SAMPLE_COUNT)
|
||||
{
|
||||
/* Calculate delay period in microseconds */
|
||||
del_period = bme68x_get_meas_dur(BME68X_PARALLEL_MODE, &conf, &bme) + (heatr_conf.shared_heatr_dur * 1000);
|
||||
bme.delay_us(del_period, bme.intf_ptr);
|
||||
|
||||
time_ms = coines_get_millis();
|
||||
|
||||
rslt = bme68x_get_data(BME68X_PARALLEL_MODE, data, &n_fields, &bme);
|
||||
bme68x_check_rslt("bme68x_get_data", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
for (uint8_t i = 0; i < n_fields; i++)
|
||||
{
|
||||
if (data[i].status == BME68X_VALID_DATA)
|
||||
{
|
||||
#ifdef BME68X_USE_FPU
|
||||
printf("%u, %lu, %.2f, %.2f, %.2f, %.2f, 0x%x, %d, %d\n",
|
||||
sample_count,
|
||||
(long unsigned int)time_ms,
|
||||
data[i].temperature,
|
||||
data[i].pressure,
|
||||
data[i].humidity,
|
||||
data[i].gas_resistance,
|
||||
data[i].status,
|
||||
data[i].gas_index,
|
||||
data[i].meas_index);
|
||||
#else
|
||||
printf("%u, %lu, %d, %lu, %lu, %lu, 0x%x, %d, %d\n",
|
||||
sample_count,
|
||||
(long unsigned int)time_ms,
|
||||
(data[i].temperature / 100),
|
||||
(long unsigned int)data[i].pressure,
|
||||
(long unsigned int)(data[i].humidity / 1000),
|
||||
(long unsigned int)data[i].gas_resistance,
|
||||
data[i].status,
|
||||
data[i].gas_index,
|
||||
data[i].meas_index);
|
||||
#endif
|
||||
sample_count++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bme68x_coines_deinit();
|
||||
|
||||
return 0;
|
||||
}
|
15
lib/lib_i2c/BME68x-Sensor-API/examples/self_test/Makefile
Normal file
15
lib/lib_i2c/BME68x-Sensor-API/examples/self_test/Makefile
Normal file
@ -0,0 +1,15 @@
|
||||
COINES_INSTALL_PATH ?= ../../../..
|
||||
|
||||
EXAMPLE_FILE ?= self_test.c
|
||||
|
||||
API_LOCATION ?= ../..
|
||||
|
||||
C_SRCS += \
|
||||
$(API_LOCATION)/bme68x.c \
|
||||
../common/common.c
|
||||
|
||||
INCLUDEPATHS += \
|
||||
$(API_LOCATION) \
|
||||
../common
|
||||
|
||||
include $(COINES_INSTALL_PATH)/coines.mk
|
49
lib/lib_i2c/BME68x-Sensor-API/examples/self_test/self_test.c
Normal file
49
lib/lib_i2c/BME68x-Sensor-API/examples/self_test/self_test.c
Normal file
@ -0,0 +1,49 @@
|
||||
/**
|
||||
* Copyright (C) 2021 Bosch Sensortec GmbH
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "bme68x.h"
|
||||
#include "common.h"
|
||||
#include "coines.h"
|
||||
|
||||
/***********************************************************************/
|
||||
/* Test code */
|
||||
/***********************************************************************/
|
||||
|
||||
int main(void)
|
||||
{
|
||||
struct bme68x_dev bme;
|
||||
int8_t rslt;
|
||||
|
||||
/* Interface preference is updated as a parameter
|
||||
* For I2C : BME68X_I2C_INTF
|
||||
* For SPI : BME68X_SPI_INTF
|
||||
*/
|
||||
rslt = bme68x_interface_init(&bme, BME68X_I2C_INTF);
|
||||
bme68x_check_rslt("bme68x_interface_init", rslt);
|
||||
|
||||
rslt = bme68x_init(&bme);
|
||||
bme68x_check_rslt("bme68x_init", rslt);
|
||||
|
||||
rslt = bme68x_selftest_check(&bme);
|
||||
bme68x_check_rslt("bme68x_selftest_check", rslt);
|
||||
|
||||
if (rslt == BME68X_OK)
|
||||
{
|
||||
printf("Self-test passed\n");
|
||||
}
|
||||
|
||||
if (rslt == BME68X_E_SELF_TEST)
|
||||
{
|
||||
printf("Self-test failed\n");
|
||||
}
|
||||
|
||||
bme68x_coines_deinit();
|
||||
|
||||
return rslt;
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
COINES_INSTALL_PATH ?= ../../../..
|
||||
|
||||
EXAMPLE_FILE ?= sequential_mode.c
|
||||
|
||||
API_LOCATION ?= ../..
|
||||
|
||||
C_SRCS += \
|
||||
$(API_LOCATION)/bme68x.c \
|
||||
../common/common.c
|
||||
|
||||
INCLUDEPATHS += \
|
||||
$(API_LOCATION) \
|
||||
../common
|
||||
|
||||
include $(COINES_INSTALL_PATH)/coines.mk
|
@ -0,0 +1,125 @@
|
||||
/**
|
||||
* Copyright (C) 2021 Bosch Sensortec GmbH
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "bme68x.h"
|
||||
#include "common.h"
|
||||
#include "coines.h"
|
||||
|
||||
/***********************************************************************/
|
||||
/* Macros */
|
||||
/***********************************************************************/
|
||||
|
||||
/* Macro for count of samples to be displayed */
|
||||
#define SAMPLE_COUNT UINT8_C(300)
|
||||
|
||||
/***********************************************************************/
|
||||
/* Test code */
|
||||
/***********************************************************************/
|
||||
|
||||
int main(void)
|
||||
{
|
||||
struct bme68x_dev bme;
|
||||
int8_t rslt;
|
||||
struct bme68x_conf conf;
|
||||
struct bme68x_heatr_conf heatr_conf;
|
||||
struct bme68x_data data[3];
|
||||
uint32_t del_period;
|
||||
uint32_t time_ms = 0;
|
||||
uint8_t n_fields;
|
||||
uint16_t sample_count = 1;
|
||||
|
||||
/* Heater temperature in degree Celsius */
|
||||
uint16_t temp_prof[10] = { 200, 240, 280, 320, 360, 360, 320, 280, 240, 200 };
|
||||
|
||||
/* Heating duration in milliseconds */
|
||||
uint16_t dur_prof[10] = { 100, 100, 100, 100, 100, 100, 100, 100, 100, 100 };
|
||||
|
||||
/* Interface preference is updated as a parameter
|
||||
* For I2C : BME68X_I2C_INTF
|
||||
* For SPI : BME68X_SPI_INTF
|
||||
*/
|
||||
rslt = bme68x_interface_init(&bme, BME68X_I2C_INTF);
|
||||
bme68x_check_rslt("bme68x_interface_init", rslt);
|
||||
|
||||
rslt = bme68x_init(&bme);
|
||||
bme68x_check_rslt("bme68x_init", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
rslt = bme68x_get_conf(&conf, &bme);
|
||||
bme68x_check_rslt("bme68x_get_conf", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
conf.filter = BME68X_FILTER_OFF;
|
||||
conf.odr = BME68X_ODR_NONE; /* This parameter defines the sleep duration after each profile */
|
||||
conf.os_hum = BME68X_OS_16X;
|
||||
conf.os_pres = BME68X_OS_1X;
|
||||
conf.os_temp = BME68X_OS_2X;
|
||||
rslt = bme68x_set_conf(&conf, &bme);
|
||||
bme68x_check_rslt("bme68x_set_conf", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
heatr_conf.enable = BME68X_ENABLE;
|
||||
heatr_conf.heatr_temp_prof = temp_prof;
|
||||
heatr_conf.heatr_dur_prof = dur_prof;
|
||||
heatr_conf.profile_len = 10;
|
||||
rslt = bme68x_set_heatr_conf(BME68X_SEQUENTIAL_MODE, &heatr_conf, &bme);
|
||||
bme68x_check_rslt("bme68x_set_heatr_conf", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
rslt = bme68x_set_op_mode(BME68X_SEQUENTIAL_MODE, &bme);
|
||||
bme68x_check_rslt("bme68x_set_op_mode", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
printf(
|
||||
"Sample, TimeStamp(ms), Temperature(deg C), Pressure(Pa), Humidity(%%), Gas resistance(ohm), Status, Profile index, Measurement index\n");
|
||||
while (sample_count <= SAMPLE_COUNT)
|
||||
{
|
||||
/* Calculate delay period in microseconds */
|
||||
del_period = bme68x_get_meas_dur(BME68X_SEQUENTIAL_MODE, &conf, &bme) + (heatr_conf.heatr_dur_prof[0] * 1000);
|
||||
bme.delay_us(del_period, bme.intf_ptr);
|
||||
|
||||
time_ms = coines_get_millis();
|
||||
|
||||
rslt = bme68x_get_data(BME68X_SEQUENTIAL_MODE, data, &n_fields, &bme);
|
||||
bme68x_check_rslt("bme68x_get_data", rslt);
|
||||
|
||||
/* Check if rslt == BME68X_OK, report or handle if otherwise */
|
||||
for (uint8_t i = 0; i < n_fields; i++)
|
||||
{
|
||||
#ifdef BME68X_USE_FPU
|
||||
printf("%u, %lu, %.2f, %.2f, %.2f, %.2f, 0x%x, %d, %d\n",
|
||||
sample_count,
|
||||
(long unsigned int)time_ms + (i * (del_period / 2000)),
|
||||
data[i].temperature,
|
||||
data[i].pressure,
|
||||
data[i].humidity,
|
||||
data[i].gas_resistance,
|
||||
data[i].status,
|
||||
data[i].gas_index,
|
||||
data[i].meas_index);
|
||||
#else
|
||||
printf("%u, %lu, %d, %lu, %lu, %lu, 0x%x, %d, %d\n",
|
||||
sample_count,
|
||||
(long unsigned int)time_ms + (i * (del_period / 2000)),
|
||||
(data[i].temperature / 100),
|
||||
(long unsigned int)data[i].pressure,
|
||||
(long unsigned int)(data[i].humidity / 1000),
|
||||
(long unsigned int)data[i].gas_resistance,
|
||||
data[i].status,
|
||||
data[i].gas_index,
|
||||
data[i].meas_index);
|
||||
#endif
|
||||
sample_count++;
|
||||
}
|
||||
}
|
||||
|
||||
bme68x_coines_deinit();
|
||||
|
||||
return 0;
|
||||
}
|
@ -1,9 +1,9 @@
|
||||
name=BME680
|
||||
name=BME68x
|
||||
version=
|
||||
author=
|
||||
maintainer=Bosch Sensortec GmbH
|
||||
sentence=Sensor driver for BME680 sensor
|
||||
paragraph=Sensor driver for BME680 sensor
|
||||
sentence=Sensor driver for BME68x sensor
|
||||
paragraph=Sensor driver for BME68x sensor
|
||||
category=Sensor
|
||||
url=
|
||||
architectures=esp8266,esp32
|
@ -577,7 +577,7 @@
|
||||
// #define USE_SHT // [I2cDriver8] Enable SHT1X sensor (+1k4 code)
|
||||
// #define USE_HTU // [I2cDriver9] Enable HTU21/SI7013/SI7020/SI7021 sensor (I2C address 0x40) (+1k5 code)
|
||||
// #define USE_BMP // [I2cDriver10] Enable BMP085/BMP180/BMP280/BME280 sensors (I2C addresses 0x76 and 0x77) (+4k4 code)
|
||||
// #define USE_BME680 // Enable support for BME680 sensor using Bosch BME680 library (+4k code)
|
||||
// #define USE_BME68X // Enable support for BME680/BME688 sensor using Bosch BME68x library (+6k9 code)
|
||||
// #define USE_BH1750 // [I2cDriver11] Enable BH1750 sensor (I2C address 0x23 or 0x5C) (+0k5 code)
|
||||
// #define USE_VEML6070 // [I2cDriver12] Enable VEML6070 sensor (I2C addresses 0x38 and 0x39) (+1k5 code)
|
||||
#define USE_VEML6070_RSET 270000 // VEML6070, Rset in Ohm used on PCB board, default 270K = 270000ohm, range for this sensor: 220K ... 1Meg
|
||||
|
@ -258,8 +258,8 @@ void ResponseAppendFeatures(void)
|
||||
#if defined(USE_I2C) && defined(USE_BMP)
|
||||
feature3 |= 0x00000400; // xsns_09_bmp.ino
|
||||
#endif
|
||||
#if defined(USE_I2C) && defined(USE_BMP) && defined(USE_BME680)
|
||||
feature3 |= 0x00000800; // xsns_09_bmp.ino - BME680
|
||||
#if defined(USE_I2C) && defined(USE_BMP) && defined(USE_BME68X)
|
||||
feature3 |= 0x00000800; // xsns_09_bmp.ino - BME68x
|
||||
#endif
|
||||
#if defined(USE_I2C) && defined(USE_BH1750)
|
||||
feature3 |= 0x00001000; // xsns_10_bh1750.ino
|
||||
|
@ -81,7 +81,7 @@
|
||||
#define USE_SHT // [I2cDriver8] Enable SHT1X sensor (+1k4 code)
|
||||
#define USE_HTU // [I2cDriver9] Enable HTU21/SI7013/SI7020/SI7021 sensor (I2C address 0x40) (+1k5 code)
|
||||
#define USE_BMP // [I2cDriver10] Enable BMP085/BMP180/BMP280/BME280 sensors (I2C addresses 0x76 and 0x77) (+4k4 code)
|
||||
#define USE_BME680 // Enable support for BME680 sensor using Bosch BME680 library (+4k code)
|
||||
#define USE_BME68X // Enable support for BME680/BME688 sensor using Bosch BME68x library (+6k9 code)
|
||||
#define USE_BH1750 // [I2cDriver11] Enable BH1750 sensor (I2C address 0x23 or 0x5C) (+0k5 code)
|
||||
#define USE_VEML6070 // [I2cDriver12] Enable VEML6070 sensor (I2C addresses 0x38 and 0x39) (+1k5 code)
|
||||
//#define USE_VEML6075 // [I2cDriver49] Enable VEML6075 UVA/UVB/UVINDEX Sensor (I2C address 0x10) (+2k1 code)
|
||||
|
@ -274,7 +274,7 @@
|
||||
#define USE_SHT // [I2cDriver8] Enable SHT1X sensor (+1k4 code)
|
||||
#define USE_HTU // [I2cDriver9] Enable HTU21/SI7013/SI7020/SI7021 sensor (I2C address 0x40) (+1k5 code)
|
||||
#define USE_BMP // [I2cDriver10] Enable BMP085/BMP180/BMP280/BME280 sensors (I2C addresses 0x76 and 0x77) (+4k4 code)
|
||||
// #define USE_BME680 // Enable support for BME680 sensor using Bosch BME680 library (+4k code)
|
||||
// #define USE_BME68X // Enable support for BME680/BME688 sensor using Bosch BME68x library (+6k9 code)
|
||||
//#define USE_BH1750 // [I2cDriver11] Enable BH1750 sensor (I2C address 0x23 or 0x5C) (+0k5 code)
|
||||
//#define USE_VEML6070 // [I2cDriver12] Enable VEML6070 sensor (I2C addresses 0x38 and 0x39) (+1k5 code)
|
||||
//#define USE_VEML6075 // [I2cDriver49] Enable VEML6075 UVA/UVB/UVINDEX Sensor (I2C address 0x10) (+2k1 code)
|
||||
@ -410,7 +410,7 @@
|
||||
#define USE_SHT // [I2cDriver8] Enable SHT1X sensor (+1k4 code)
|
||||
#define USE_HTU // [I2cDriver9] Enable HTU21/SI7013/SI7020/SI7021 sensor (I2C address 0x40) (+1k5 code)
|
||||
#define USE_BMP // [I2cDriver10] Enable BMP085/BMP180/BMP280/BME280 sensors (I2C addresses 0x76 and 0x77) (+4k4 code)
|
||||
#define USE_BME680 // Enable support for BME680 sensor using Bosch BME680 library (+4k code)
|
||||
#define USE_BME68X // Enable support for BME680/BME688 sensor using Bosch BME68x library (+6k9 code)
|
||||
#define USE_BH1750 // [I2cDriver11] Enable BH1750 sensor (I2C address 0x23 or 0x5C) (+0k5 code)
|
||||
#define USE_VEML6070 // [I2cDriver12] Enable VEML6070 sensor (I2C addresses 0x38 and 0x39) (+1k5 code)
|
||||
//#define USE_VEML6075 // [I2cDriver49] Enable VEML6075 UVA/UVB/UVINDEX Sensor (I2C address 0x10) (+2k1 code)
|
||||
|
@ -30,6 +30,10 @@
|
||||
#define XSNS_09 9
|
||||
#define XI2C_10 10 // See I2CDEVICES.md
|
||||
|
||||
#ifdef USE_BME680
|
||||
#define USE_BME68X
|
||||
#endif
|
||||
|
||||
#define BMP_ADDR1 0x76
|
||||
#define BMP_ADDR2 0x77
|
||||
|
||||
@ -53,10 +57,10 @@ typedef struct {
|
||||
char bmp_name[7]; // Sensor name - "BMPXXX"
|
||||
uint8_t bmp_type;
|
||||
uint8_t bmp_model;
|
||||
#ifdef USE_BME680
|
||||
#ifdef USE_BME68X
|
||||
uint8_t bme680_state;
|
||||
float bmp_gas_resistance;
|
||||
#endif // USE_BME680
|
||||
#endif // USE_BME68X
|
||||
float bmp_temperature;
|
||||
float bmp_pressure;
|
||||
float bmp_humidity;
|
||||
@ -342,63 +346,70 @@ void Bme280Read(uint8_t bmp_idx)
|
||||
bmp_sensors[bmp_idx].bmp_humidity = h / 1024.0;
|
||||
}
|
||||
|
||||
#ifdef USE_BME680
|
||||
#ifdef USE_BME68X
|
||||
/*********************************************************************************************\
|
||||
* BME680 support by Bosch https://github.com/BoschSensortec/BME680_driver
|
||||
* BME68x support by Bosch https://github.com/BoschSensortec/BME68x-Sensor-API
|
||||
\*********************************************************************************************/
|
||||
|
||||
#include <bme680.h>
|
||||
//#define BME68X_DO_NOT_USE_FPU
|
||||
|
||||
struct bme680_dev *gas_sensor = nullptr;
|
||||
#include <bme68x.h>
|
||||
|
||||
static void BmeDelayMs(uint32_t ms)
|
||||
{
|
||||
delay(ms);
|
||||
struct bme68x_dev *gas_sensor = nullptr;
|
||||
struct bme68x_conf *bme_conf = nullptr;
|
||||
struct bme68x_heatr_conf *bme_heatr_conf = nullptr;
|
||||
|
||||
static void Bme68x_Delayus(uint32_t period, void *intf_ptr) {
|
||||
delayMicroseconds(period);
|
||||
}
|
||||
|
||||
bool Bme680Init(uint8_t bmp_idx)
|
||||
{
|
||||
int8_t Bme68x_i2c_read(uint8_t reg_addr, uint8_t *reg_data, uint32_t len, void *intf_ptr) {
|
||||
uint8_t dev_addr = *(uint8_t*)intf_ptr;
|
||||
return I2cReadBuffer(dev_addr, reg_addr, reg_data, (uint16_t)len);
|
||||
}
|
||||
|
||||
int8_t Bme68x_i2c_write(uint8_t reg_addr, const uint8_t *reg_data, uint32_t len, void *intf_ptr) {
|
||||
uint8_t dev_addr = *(uint8_t*)intf_ptr;
|
||||
return I2cWriteBuffer(dev_addr, reg_addr, (uint8_t *)reg_data, (uint16_t)len);
|
||||
}
|
||||
|
||||
bool Bme680Init(uint8_t bmp_idx) {
|
||||
if (!gas_sensor) {
|
||||
gas_sensor = (bme680_dev*)malloc(BMP_MAX_SENSORS * sizeof(bme680_dev));
|
||||
bme_heatr_conf = (bme68x_heatr_conf*)malloc(BMP_MAX_SENSORS * sizeof(bme68x_heatr_conf));
|
||||
bme_conf = (bme68x_conf*)malloc(BMP_MAX_SENSORS * sizeof(bme68x_conf));
|
||||
gas_sensor = (bme68x_dev*)malloc(BMP_MAX_SENSORS * sizeof(bme68x_dev));
|
||||
}
|
||||
if (!gas_sensor) { return false; }
|
||||
|
||||
gas_sensor[bmp_idx].dev_id = bmp_sensors[bmp_idx].bmp_address;
|
||||
gas_sensor[bmp_idx].intf = BME680_I2C_INTF;
|
||||
gas_sensor[bmp_idx].read = &I2cReadBuffer;
|
||||
gas_sensor[bmp_idx].write = &I2cWriteBuffer;
|
||||
gas_sensor[bmp_idx].delay_ms = BmeDelayMs;
|
||||
/* amb_temp can be set to 25 prior to configuring the gas sensor
|
||||
* or by performing a few temperature readings without operating the gas sensor.
|
||||
*/
|
||||
gas_sensor[bmp_idx].intf_ptr = &bmp_sensors[bmp_idx].bmp_address;
|
||||
gas_sensor[bmp_idx].intf = BME68X_I2C_INTF;
|
||||
gas_sensor[bmp_idx].read = Bme68x_i2c_read;
|
||||
gas_sensor[bmp_idx].write = Bme68x_i2c_write;
|
||||
gas_sensor[bmp_idx].delay_us = Bme68x_Delayus;
|
||||
// amb_temp can be set to 25 prior to configuring the gas sensor
|
||||
// or by performing a few temperature readings without operating the gas sensor.
|
||||
gas_sensor[bmp_idx].amb_temp = 25;
|
||||
int8_t rslt = bme68x_init(&gas_sensor[bmp_idx]);
|
||||
if (rslt != BME68X_OK) { return false; }
|
||||
|
||||
int8_t rslt = BME680_OK;
|
||||
rslt = bme680_init(&gas_sensor[bmp_idx]);
|
||||
if (rslt != BME680_OK) { return false; }
|
||||
// rslt = bme68x_get_conf(&bme_conf[bmp_idx], &gas_sensor[bmp_idx]);
|
||||
// if (rslt != BME68X_OK) { return false; }
|
||||
// Set the temperature, pressure and humidity settings
|
||||
bme_conf[bmp_idx].os_hum = BME68X_OS_2X;
|
||||
bme_conf[bmp_idx].os_pres = BME68X_OS_4X;
|
||||
bme_conf[bmp_idx].os_temp = BME68X_OS_8X;
|
||||
bme_conf[bmp_idx].filter = BME68X_FILTER_SIZE_3;
|
||||
bme_conf[bmp_idx].odr = BME68X_ODR_NONE; // This parameter defines the sleep duration after each profile
|
||||
rslt = bme68x_set_conf(&bme_conf[bmp_idx], &gas_sensor[bmp_idx]);
|
||||
if (rslt != BME68X_OK) { return false; }
|
||||
|
||||
/* Set the temperature, pressure and humidity settings */
|
||||
gas_sensor[bmp_idx].tph_sett.os_hum = BME680_OS_2X;
|
||||
gas_sensor[bmp_idx].tph_sett.os_pres = BME680_OS_4X;
|
||||
gas_sensor[bmp_idx].tph_sett.os_temp = BME680_OS_8X;
|
||||
gas_sensor[bmp_idx].tph_sett.filter = BME680_FILTER_SIZE_3;
|
||||
|
||||
/* Set the remaining gas sensor settings and link the heating profile */
|
||||
gas_sensor[bmp_idx].gas_sett.run_gas = BME680_ENABLE_GAS_MEAS;
|
||||
/* Create a ramp heat waveform in 3 steps */
|
||||
gas_sensor[bmp_idx].gas_sett.heatr_temp = 320; /* degree Celsius */
|
||||
gas_sensor[bmp_idx].gas_sett.heatr_dur = 150; /* milliseconds */
|
||||
|
||||
/* Select the power mode */
|
||||
/* Must be set before writing the sensor configuration */
|
||||
gas_sensor[bmp_idx].power_mode = BME680_FORCED_MODE;
|
||||
|
||||
/* Set the required sensor settings needed */
|
||||
uint8_t set_required_settings = BME680_OST_SEL | BME680_OSP_SEL | BME680_OSH_SEL | BME680_FILTER_SEL | BME680_GAS_SENSOR_SEL;
|
||||
|
||||
/* Set the desired sensor configuration */
|
||||
rslt = bme680_set_sensor_settings(set_required_settings,&gas_sensor[bmp_idx]);
|
||||
if (rslt != BME680_OK) { return false; }
|
||||
// Set the gas sensor settings
|
||||
bme_heatr_conf[bmp_idx].enable = BME68X_ENABLE;
|
||||
// Create a ramp heat waveform in 3 steps
|
||||
bme_heatr_conf[bmp_idx].heatr_temp = 320; // degree Celsius
|
||||
bme_heatr_conf[bmp_idx].heatr_dur = 150; // milliseconds
|
||||
rslt = bme68x_set_heatr_conf(BME68X_FORCED_MODE, &bme_heatr_conf[bmp_idx], &gas_sensor[bmp_idx]);
|
||||
if (rslt != BME68X_OK) { return false; }
|
||||
|
||||
bmp_sensors[bmp_idx].bme680_state = 0;
|
||||
|
||||
@ -409,34 +420,38 @@ void Bme680Read(uint8_t bmp_idx)
|
||||
{
|
||||
if (!gas_sensor) { return; }
|
||||
|
||||
int8_t rslt = BME680_OK;
|
||||
int8_t rslt = BME68X_OK;
|
||||
|
||||
if (BME680_CHIPID == bmp_sensors[bmp_idx].bmp_type) {
|
||||
if (0 == bmp_sensors[bmp_idx].bme680_state) {
|
||||
/* Trigger the next measurement if you would like to read data out continuously */
|
||||
rslt = bme680_set_sensor_mode(&gas_sensor[bmp_idx]);
|
||||
if (rslt != BME680_OK) { return; }
|
||||
// Trigger the next measurement if you would like to read data out continuously
|
||||
rslt = bme68x_set_op_mode(BME68X_FORCED_MODE, &gas_sensor[bmp_idx]);
|
||||
if (rslt != BME68X_OK) { return; }
|
||||
|
||||
/* Get the total measurement duration so as to sleep or wait till the
|
||||
* measurement is complete */
|
||||
// uint16_t meas_period;
|
||||
// bme680_get_profile_dur(&meas_period, &gas_sensor[bmp_idx]);
|
||||
// delay(meas_period); /* Delay till the measurement is ready */ // 183 mSec - we'll wait a second
|
||||
// Calculate delay period in microseconds
|
||||
// del_period = bme68x_get_meas_dur(BME68X_FORCED_MODE, &conf, &bme) + (heatr_conf.heatr_dur * 1000);
|
||||
// bme.delay_us(del_period, bme.intf_ptr);
|
||||
|
||||
bmp_sensors[bmp_idx].bme680_state = 1;
|
||||
} else {
|
||||
bmp_sensors[bmp_idx].bme680_state = 0;
|
||||
|
||||
struct bme680_field_data data;
|
||||
rslt = bme680_get_sensor_data(&data, &gas_sensor[bmp_idx]);
|
||||
if (rslt != BME680_OK) { return; }
|
||||
struct bme68x_data data;
|
||||
uint8_t n_fields;
|
||||
rslt = bme68x_get_data(BME68X_FORCED_MODE, &data, &n_fields, &gas_sensor[bmp_idx]);
|
||||
if (rslt != BME68X_OK) { return; }
|
||||
|
||||
bmp_sensors[bmp_idx].bmp_temperature = data.temperature / 100.0;
|
||||
bmp_sensors[bmp_idx].bmp_humidity = data.humidity / 1000.0;
|
||||
bmp_sensors[bmp_idx].bmp_pressure = data.pressure / 100.0;
|
||||
/* Avoid using measurements from an unstable heating setup */
|
||||
if (data.status & BME680_GASM_VALID_MSK) {
|
||||
bmp_sensors[bmp_idx].bmp_gas_resistance = data.gas_resistance / 1000.0;
|
||||
#ifdef BME68X_DO_NOT_USE_FPU
|
||||
bmp_sensors[bmp_idx].bmp_temperature = data.temperature / 100.0; // Temperature in degree celsius x100
|
||||
bmp_sensors[bmp_idx].bmp_humidity = data.humidity / 1000.0; // Humidity in % relative humidity x1000
|
||||
#else
|
||||
bmp_sensors[bmp_idx].bmp_temperature = data.temperature; // Temperature in degree celsius
|
||||
bmp_sensors[bmp_idx].bmp_humidity = data.humidity; // Humidity in % relative humidity
|
||||
#endif
|
||||
bmp_sensors[bmp_idx].bmp_pressure = data.pressure / 100.0; // Pressure in Pascal (converted to hPa)
|
||||
// Avoid using measurements from an unstable heating setup
|
||||
if (data.status & BME68X_GASM_VALID_MSK) {
|
||||
bmp_sensors[bmp_idx].bmp_gas_resistance = data.gas_resistance / 1000.0; // Gas resistance in Ohms (cpnverted to kOhm)
|
||||
} else {
|
||||
bmp_sensors[bmp_idx].bmp_gas_resistance = 0;
|
||||
}
|
||||
@ -445,7 +460,7 @@ void Bme680Read(uint8_t bmp_idx)
|
||||
return;
|
||||
}
|
||||
|
||||
#endif // USE_BME680
|
||||
#endif // USE_BME68X
|
||||
|
||||
/********************************************************************************************/
|
||||
|
||||
@ -477,12 +492,12 @@ void BmpDetect(void)
|
||||
bmp_sensors[bmp_count].bmp_model++; // 1
|
||||
success = Bmx280Calibrate(bmp_count);
|
||||
break;
|
||||
#ifdef USE_BME680
|
||||
#ifdef USE_BME68X
|
||||
case BME680_CHIPID:
|
||||
bmp_sensors[bmp_count].bmp_model = 3; // 3
|
||||
success = Bme680Init(bmp_count);
|
||||
break;
|
||||
#endif // USE_BME680
|
||||
#endif // USE_BME68X
|
||||
}
|
||||
if (success) {
|
||||
GetTextIndexed(bmp_sensors[bmp_count].bmp_name, sizeof(bmp_sensors[bmp_count].bmp_name), bmp_sensors[bmp_count].bmp_model, kBmpTypes);
|
||||
@ -504,11 +519,11 @@ void BmpRead(void)
|
||||
case BME280_CHIPID:
|
||||
Bme280Read(bmp_idx);
|
||||
break;
|
||||
#ifdef USE_BME680
|
||||
#ifdef USE_BME68X
|
||||
case BME680_CHIPID:
|
||||
Bme680Read(bmp_idx);
|
||||
break;
|
||||
#endif // USE_BME680
|
||||
#endif // USE_BME68X
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -538,17 +553,17 @@ void BmpShow(bool json)
|
||||
float f_dewpoint = CalcTempHumToDew(bmp_temperature, bmp_humidity);
|
||||
char dewpoint[33];
|
||||
dtostrfd(f_dewpoint, Settings->flag2.temperature_resolution, dewpoint);
|
||||
#ifdef USE_BME680
|
||||
#ifdef USE_BME68X
|
||||
char gas_resistance[33];
|
||||
dtostrfd(bmp_sensors[bmp_idx].bmp_gas_resistance, 2, gas_resistance);
|
||||
#endif // USE_BME680
|
||||
#endif // USE_BME68X
|
||||
|
||||
if (json) {
|
||||
char json_humidity[80];
|
||||
snprintf_P(json_humidity, sizeof(json_humidity), PSTR(",\"" D_JSON_HUMIDITY "\":%s,\"" D_JSON_DEWPOINT "\":%s"), humidity, dewpoint);
|
||||
char json_sealevel[40];
|
||||
snprintf_P(json_sealevel, sizeof(json_sealevel), PSTR(",\"" D_JSON_PRESSUREATSEALEVEL "\":%s"), sea_pressure);
|
||||
#ifdef USE_BME680
|
||||
#ifdef USE_BME68X
|
||||
char json_gas[40];
|
||||
snprintf_P(json_gas, sizeof(json_gas), PSTR(",\"" D_JSON_GAS "\":%s"), gas_resistance);
|
||||
|
||||
@ -562,14 +577,14 @@ void BmpShow(bool json)
|
||||
#else
|
||||
ResponseAppend_P(PSTR(",\"%s\":{\"" D_JSON_TEMPERATURE "\":%*_f%s,\"" D_JSON_PRESSURE "\":%s%s}"),
|
||||
name, Settings->flag2.temperature_resolution, &bmp_temperature, (bmp_sensors[bmp_idx].bmp_model >= 2) ? json_humidity : "", pressure, (Settings->altitude != 0) ? json_sealevel : "");
|
||||
#endif // USE_BME680
|
||||
#endif // USE_BME68X
|
||||
|
||||
#ifdef USE_DOMOTICZ
|
||||
if ((0 == TasmotaGlobal.tele_period) && (0 == bmp_idx)) { // We want the same first sensor to report to Domoticz in case a read is missed
|
||||
DomoticzTempHumPressureSensor(bmp_temperature, bmp_humidity, bmp_pressure);
|
||||
#ifdef USE_BME680
|
||||
#ifdef USE_BME68X
|
||||
if (bmp_sensors[bmp_idx].bmp_model >= 3) { DomoticzSensor(DZ_AIRQUALITY, (uint32_t)bmp_sensors[bmp_idx].bmp_gas_resistance); }
|
||||
#endif // USE_BME680
|
||||
#endif // USE_BME68X
|
||||
}
|
||||
#endif // USE_DOMOTICZ
|
||||
|
||||
@ -591,11 +606,11 @@ void BmpShow(bool json)
|
||||
if (Settings->altitude != 0) {
|
||||
WSContentSend_PD(HTTP_SNS_SEAPRESSURE, name, sea_pressure, PressureUnit().c_str());
|
||||
}
|
||||
#ifdef USE_BME680
|
||||
#ifdef USE_BME68X
|
||||
if (bmp_sensors[bmp_idx].bmp_model >= 3) {
|
||||
WSContentSend_PD(PSTR("{s}%s " D_GAS "{m}%s " D_UNIT_KILOOHM "{e}"), name, gas_resistance);
|
||||
}
|
||||
#endif // USE_BME680
|
||||
#endif // USE_BME68X
|
||||
|
||||
#endif // USE_WEBSERVER
|
||||
}
|
||||
|
@ -214,7 +214,7 @@ a_features = [[
|
||||
],[
|
||||
"USE_COUNTER","USE_ADC_VCC","USE_ENERGY_SENSOR","USE_PZEM004T",
|
||||
"USE_DS18B20","USE_DS18x20_LEGACY","USE_DS18x20","USE_DHT",
|
||||
"USE_SHT","USE_HTU","USE_BMP","USE_BME680",
|
||||
"USE_SHT","USE_HTU","USE_BMP","USE_BME68X",
|
||||
"USE_BH1750","USE_VEML6070","USE_ADS1115_I2CDEV","USE_ADS1115",
|
||||
"USE_INA219","USE_SHT3X","USE_MHZ19","USE_TSL2561",
|
||||
"USE_SENSEAIR","USE_PMS5003","USE_MGS","USE_NOVA_SDS",
|
||||
|
Loading…
x
Reference in New Issue
Block a user