Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
0c53bebe
Unverified
Commit
0c53bebe
authored
6 years ago
by
Alexandre Abadie
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #10094 from silkeh/enable-bme280-doc
drivers/bmx280: improve documentation
parents
74887f3a
2fb27760
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/include/bmx280.h
+21
-2
21 additions, 2 deletions
drivers/include/bmx280.h
with
21 additions
and
2 deletions
drivers/include/bmx280.h
+
21
−
2
View file @
0c53bebe
...
@@ -21,6 +21,25 @@
...
@@ -21,6 +21,25 @@
* * [BME280](https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME280_DS001-11.pdf)
* * [BME280](https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME280_DS001-11.pdf)
*
*
* This driver provides @ref drivers_saul capabilities.
* This driver provides @ref drivers_saul capabilities.
*
* ## Usage
*
* Add the following to your makefile:
*
* ```make
* # For BME280
* USEMODULE += bme280
*
* # When using I2C, specify the default I2C device to use,
* # and the BME280's address (see datasheet).
* # The values below are the defaults:
* CFLAGS += -DBMX280_PARAM_I2C_DEV=I2C_DEV\(0\)
* CFLAGS += -DBMX280_PARAM_I2C_ADDR=0x77
* ```
*
* This allows initialisation with the default parameters in `BMX280_PARAMS_DEFAULT`
* from `bmx280_params.h`.
*
* @{
* @{
* @file
* @file
* @brief Device driver interface for the BMX280 sensors (BMP280 and BME280).
* @brief Device driver interface for the BMX280 sensors (BMP280 and BME280).
...
@@ -31,7 +50,7 @@
...
@@ -31,7 +50,7 @@
* values by changing the oversampling settings. The driver is
* values by changing the oversampling settings. The driver is
* written in such a way that a measurement is only started from
* written in such a way that a measurement is only started from
* the function that reads the temperature. In other words, you
* the function that reads the temperature. In other words, you
* always have to call bm
e
280_read_temperature, and then optionally
* always have to call bm
x
280_read_temperature, and then optionally
* you can call the other two.
* you can call the other two.
*
*
* @author Kees Bakker <kees@sodaq.com>
* @author Kees Bakker <kees@sodaq.com>
...
@@ -205,7 +224,7 @@ int16_t bmx280_read_temperature(const bmx280_t* dev);
...
@@ -205,7 +224,7 @@ int16_t bmx280_read_temperature(const bmx280_t* dev);
*/
*/
uint32_t
bmx280_read_pressure
(
const
bmx280_t
*
dev
);
uint32_t
bmx280_read_pressure
(
const
bmx280_t
*
dev
);
#if defined(MODULE_BME280)
#if defined(MODULE_BME280)
|| defined(DOXYGEN)
/**
/**
* @brief Read humidity value from the given BME280 device, returned in centi %RH
* @brief Read humidity value from the given BME280 device, returned in centi %RH
*
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment