Searched full:bmi270 (Results 1 – 25 of 27) sorted by relevance
12
/Zephyr-latest/samples/sensor/bmi270/ |
D | README.rst | 1 .. zephyr:code-sample:: bmi270 2 :name: BMI270 6-axis IMU sensor 5 Configure and read accelerometer and gyroscope data from a BMI270 sensor. 16 - BMI270: https://www.bosch-sensortec.com/products/motion-sensors/imus/bmi270.html 21 This sample uses the BMI270 sensor controlled using the I2C interface. 30 This project outputs sensor data to the console. It requires a BMI270 37 :zephyr-app: samples/sensor/bmi270 46 Device 0x200014cc name is BMI270
|
D | sample.yaml | 2 name: BMI270 Sensor sample 4 sample.sensor.bmi270:
|
D | app.overlay | 10 bmi270@68 { 11 compatible = "bosch,bmi270";
|
/Zephyr-latest/drivers/sensor/bosch/bmi270/ |
D | Kconfig | 1 # BMI270 6 Axis IMU configuration 7 menuconfig BMI270 config 8 bool "BMI270 Inertial measurement unit" 14 Enable driver for BMI270 I2C-based imu sensor 16 if BMI270 67 endif # BMI270
|
D | CMakeLists.txt | 10 zephyr_library_sources(bmi270.c)
|
D | bmi270_spi.c | 13 #include "bmi270.h" 15 LOG_MODULE_DECLARE(bmi270, CONFIG_SENSOR_LOG_LEVEL);
|
D | bmi270_i2c.c | 11 #include "bmi270.h"
|
D | bmi270_trigger.c | 9 LOG_MODULE_DECLARE(bmi270); 11 #include "bmi270.h"
|
D | bmi270.c | 17 #include "bmi270.h" 20 LOG_MODULE_REGISTER(bmi270, CONFIG_SENSOR_LOG_LEVEL);
|
D | bmi270_config_file.h | 10 /* Source : https://github.com/BoschSensortec/BMI270-Sensor-API/blob/v2.63.1/bmi270_maximum_fifo.c#… 44 /* Source: https://github.com/BoschSensortec/BMI270-Sensor-API/blob/v2.71.8/bmi270.c#L51 */
|
/Zephyr-latest/boards/m5stack/m5stack_cores3/ |
D | m5stack_cores3_procpu.dts | 16 accel0 = &bmi270; 22 bmi270: bmi270@69 { label 23 compatible = "bosch,bmi270";
|
/Zephyr-latest/dts/bindings/sensor/ |
D | bosch,bmi270.yaml | 6 The BMI270 is an inertial measurement unit. See more info at: 7 https://www.bosch-sensortec.com/products/motion-sensors/imus/bmi270.html 11 compatible: "bosch,bmi270"
|
D | bosch,bmi270-spi.yaml | 4 compatible: "bosch,bmi270" 6 include: ["spi-device.yaml", "bosch,bmi270.yaml"]
|
D | bosch,bmi270-i2c.yaml | 5 compatible: "bosch,bmi270" 7 include: [i2c-device.yaml, "bosch,bmi270.yaml"]
|
/Zephyr-latest/boards/bcdevices/plt_demo_v2/ |
D | blueclover_plt_demo_v2_nrf52832.dts | 48 accel0 = &bmi270; 90 bmi270: bmi270@68 { label 91 compatible = "bosch,bmi270";
|
/Zephyr-latest/samples/sensor/accel_polling/ |
D | sample.yaml | 15 - blueclover_plt_demo_v2/nrf52832 # bmi270 28 - thingy53/nrf5340/cpuapp # adxl362, bmi270
|
/Zephyr-latest/drivers/sensor/bosch/ |
D | CMakeLists.txt | 13 add_subdirectory_ifdef(CONFIG_BMI270 bmi270)
|
D | Kconfig | 13 source "drivers/sensor/bosch/bmi270/Kconfig"
|
/Zephyr-latest/boards/nordic/thingy53/ |
D | thingy53_nrf5340_common.dtsi | 244 bmi270: spi-dev-bmi270@1 { label 245 compatible = "bosch,bmi270";
|
/Zephyr-latest/tests/drivers/build_all/sensor/ |
D | spi.dtsi | 161 test_spi_bmi270: bmi270@15 { 162 compatible = "bosch,bmi270";
|
D | i2c.dtsi | 556 test_i2c_bmi270: bmi270@53 { 557 compatible = "bosch,bmi270";
|
/Zephyr-latest/boards/bcdevices/plt_demo_v2/doc/ |
D | index.rst | 32 - Bosch BMI270 IMU
|
/Zephyr-latest/boards/m5stack/m5stack_cores3/doc/ |
D | index.rst | 27 - 6-Axis IMU BMI270 (Not available for CoreS3 SE)
|
/Zephyr-latest/doc/releases/ |
D | release-notes-3.5.rst | 1196 * :dtcompatible:`bosch,bmi270`:
|
D | release-notes-3.3.rst | 913 * Enhanced FXOS8700, FXAS21002, and BMI270 drivers to support SPI in addition 1256 - :dtcompatible:`bosch,bmi270` 1257 - :dtcompatible:`bosch,bmi270`
|
12