bmp180: enable use for BMP280 as well
This commit is contained in:
parent
7aa7454983
commit
49e2c5fe70
@ -4,11 +4,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
config EXAMPLES_BMP180
|
config EXAMPLES_BMP180
|
||||||
tristate "BMP180 Barometer sensor example"
|
tristate "BMP180/280 Barometer sensor example"
|
||||||
default n
|
default n
|
||||||
depends on SENSORS_BMP180
|
depends on SENSORS_BMP180 || SENSORS_BMP280
|
||||||
---help---
|
---help---
|
||||||
Enable the BMP180 example
|
Enable the BMP180/BMP280 example
|
||||||
|
|
||||||
if EXAMPLES_BMP180
|
if EXAMPLES_BMP180
|
||||||
|
|
||||||
|
@ -56,12 +56,13 @@ int main(int argc, FAR char *argv[])
|
|||||||
int ret;
|
int ret;
|
||||||
uint32_t sample;
|
uint32_t sample;
|
||||||
|
|
||||||
fd = open("/dev/press0", O_RDWR);
|
fd = open("/dev/press0", O_RDONLY);
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
ret = read(fd, &sample, sizeof(uint32_t));
|
ret = read(fd, &sample, sizeof(uint32_t));
|
||||||
if (ret != sizeof(sample))
|
if (ret != sizeof(sample))
|
||||||
{
|
{
|
||||||
|
perror("Could not read");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user