├── LICENSE ├── README.md ├── bmp3.c ├── bmp3.h ├── bmp3_defs.h ├── examples ├── common │ ├── common.c │ └── common.h ├── fifo_full_press │ ├── Makefile │ └── fifo_full_press.c ├── fifo_full_press_temp │ ├── Makefile │ └── fifo_full_press_temp.c ├── fifo_full_press_temp_with_sensortime │ ├── Makefile │ └── fifo_full_press_temp_with_sensortime.c ├── fifo_full_press_with_sensortime │ ├── Makefile │ └── fifo_full_press_with_sensortime.c ├── fifo_full_temp │ ├── Makefile │ └── fifo_full_temp.c ├── fifo_full_temp_with_sensortime │ ├── Makefile │ └── fifo_full_temp_with_sensortime.c ├── fifo_watermark_press │ ├── Makefile │ └── fifo_watermark_press.c ├── fifo_watermark_press_temp │ ├── Makefile │ └── fifo_watermark_press_temp.c ├── fifo_watermark_press_temp_with_sensortime │ ├── Makefile │ └── fifo_watermark_press_temp_with_sensortime.c ├── fifo_watermark_press_with_sensortime │ ├── Makefile │ └── fifo_watermark_press_with_sensortime.c ├── fifo_watermark_temp │ ├── Makefile │ └── fifo_watermark_temp.c ├── fifo_watermark_temp_with_sensortime │ ├── Makefile │ └── fifo_watermark_temp_with_sensortime.c └── read_sensor_data │ ├── Makefile │ └── read_sensor_data.c └── self-test ├── bmp3_selftest.c └── bmp3_selftest.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/README.md -------------------------------------------------------------------------------- /bmp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/bmp3.c -------------------------------------------------------------------------------- /bmp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/bmp3.h -------------------------------------------------------------------------------- /bmp3_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/bmp3_defs.h -------------------------------------------------------------------------------- /examples/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/common/common.c -------------------------------------------------------------------------------- /examples/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/common/common.h -------------------------------------------------------------------------------- /examples/fifo_full_press/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_press/Makefile -------------------------------------------------------------------------------- /examples/fifo_full_press/fifo_full_press.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_press/fifo_full_press.c -------------------------------------------------------------------------------- /examples/fifo_full_press_temp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_press_temp/Makefile -------------------------------------------------------------------------------- /examples/fifo_full_press_temp/fifo_full_press_temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_press_temp/fifo_full_press_temp.c -------------------------------------------------------------------------------- /examples/fifo_full_press_temp_with_sensortime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_press_temp_with_sensortime/Makefile -------------------------------------------------------------------------------- /examples/fifo_full_press_temp_with_sensortime/fifo_full_press_temp_with_sensortime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_press_temp_with_sensortime/fifo_full_press_temp_with_sensortime.c -------------------------------------------------------------------------------- /examples/fifo_full_press_with_sensortime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_press_with_sensortime/Makefile -------------------------------------------------------------------------------- /examples/fifo_full_press_with_sensortime/fifo_full_press_with_sensortime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_press_with_sensortime/fifo_full_press_with_sensortime.c -------------------------------------------------------------------------------- /examples/fifo_full_temp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_temp/Makefile -------------------------------------------------------------------------------- /examples/fifo_full_temp/fifo_full_temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_temp/fifo_full_temp.c -------------------------------------------------------------------------------- /examples/fifo_full_temp_with_sensortime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_temp_with_sensortime/Makefile -------------------------------------------------------------------------------- /examples/fifo_full_temp_with_sensortime/fifo_full_temp_with_sensortime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_full_temp_with_sensortime/fifo_full_temp_with_sensortime.c -------------------------------------------------------------------------------- /examples/fifo_watermark_press/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_press/Makefile -------------------------------------------------------------------------------- /examples/fifo_watermark_press/fifo_watermark_press.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_press/fifo_watermark_press.c -------------------------------------------------------------------------------- /examples/fifo_watermark_press_temp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_press_temp/Makefile -------------------------------------------------------------------------------- /examples/fifo_watermark_press_temp/fifo_watermark_press_temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_press_temp/fifo_watermark_press_temp.c -------------------------------------------------------------------------------- /examples/fifo_watermark_press_temp_with_sensortime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_press_temp_with_sensortime/Makefile -------------------------------------------------------------------------------- /examples/fifo_watermark_press_temp_with_sensortime/fifo_watermark_press_temp_with_sensortime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_press_temp_with_sensortime/fifo_watermark_press_temp_with_sensortime.c -------------------------------------------------------------------------------- /examples/fifo_watermark_press_with_sensortime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_press_with_sensortime/Makefile -------------------------------------------------------------------------------- /examples/fifo_watermark_press_with_sensortime/fifo_watermark_press_with_sensortime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_press_with_sensortime/fifo_watermark_press_with_sensortime.c -------------------------------------------------------------------------------- /examples/fifo_watermark_temp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_temp/Makefile -------------------------------------------------------------------------------- /examples/fifo_watermark_temp/fifo_watermark_temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_temp/fifo_watermark_temp.c -------------------------------------------------------------------------------- /examples/fifo_watermark_temp_with_sensortime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_temp_with_sensortime/Makefile -------------------------------------------------------------------------------- /examples/fifo_watermark_temp_with_sensortime/fifo_watermark_temp_with_sensortime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/fifo_watermark_temp_with_sensortime/fifo_watermark_temp_with_sensortime.c -------------------------------------------------------------------------------- /examples/read_sensor_data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/read_sensor_data/Makefile -------------------------------------------------------------------------------- /examples/read_sensor_data/read_sensor_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/examples/read_sensor_data/read_sensor_data.c -------------------------------------------------------------------------------- /self-test/bmp3_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/self-test/bmp3_selftest.c -------------------------------------------------------------------------------- /self-test/bmp3_selftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boschsensortec/BMP3_SensorAPI/HEAD/self-test/bmp3_selftest.h --------------------------------------------------------------------------------