Home
last modified time | relevance | path

Searched full:icm42605 (Results 1 – 18 of 18) sorted by relevance

/Zephyr-latest/drivers/sensor/tdk/icm42605/
DKconfig1 # ICM42605 Six-Axis Motion Tracking device configuration options
6 menuconfig ICM42605 config
7 bool "ICM42605 Six-Axis Motion Tracking Device"
12 Enable driver for ICM42605 SPI-based six-axis motion tracking device.
14 if ICM42605
50 endif # ICM42605
DCMakeLists.txt5 zephyr_library_sources(icm42605.c)
Dicm42605_trigger.c13 #include "icm42605.h"
16 LOG_MODULE_DECLARE(ICM42605, CONFIG_SENSOR_LOG_LEVEL);
Dicm42605_spi.c11 LOG_MODULE_DECLARE(ICM42605, CONFIG_SENSOR_LOG_LEVEL);
Dicm42605_setup.c11 #include "icm42605.h"
15 LOG_MODULE_DECLARE(ICM42605, CONFIG_SENSOR_LOG_LEVEL);
Dicm42605.c15 #include "icm42605.h"
20 LOG_MODULE_REGISTER(ICM42605, CONFIG_SENSOR_LOG_LEVEL);
/Zephyr-latest/samples/sensor/icm42605/
Dsample.yaml8 name: ICM42605 Sensor Sample
10 sample.sensor.icm42605:
DREADME.rst1 .. zephyr:code-sample:: icm42605
5 Get temperature, acceleration, and angular velocity from an ICM42605 sensor (polling & trigger
30 :zephyr-app: samples/sensor/icm42605
DCMakeLists.txt9 project(icm42605) project
/Zephyr-latest/samples/sensor/icm42605/src/
Dmain.c101 const struct device *const icm42605 = DEVICE_DT_GET_ONE(invensense_icm42605); in main() local
103 if (!device_is_ready(icm42605)) { in main()
113 if (sensor_trigger_set(icm42605, &tap_trigger, in main()
124 if (sensor_trigger_set(icm42605, &double_tap_trigger, in main()
135 if (sensor_trigger_set(icm42605, &data_trigger, in main()
/Zephyr-latest/samples/sensor/icm42605/boards/
Dnrf52dk_nrf52832.overlay33 icm42605@0 {
34 compatible = "invensense,icm42605";
/Zephyr-latest/drivers/sensor/tdk/
DCMakeLists.txt5 add_subdirectory_ifdef(CONFIG_ICM42605 icm42605)
DKconfig5 source "drivers/sensor/tdk/icm42605/Kconfig"
/Zephyr-latest/dts/bindings/sensor/
Dinvensense,icm42605.yaml7 compatible: "invensense,icm42605"
/Zephyr-latest/tests/drivers/build_all/sensor/
Dspi.dtsi148 test_spi_icm42605: icm42605@13 {
149 compatible = "invensense,icm42605";
/Zephyr-latest/doc/releases/
Drelease-notes-2.5.rst540 * Added Invensense ICM42605 driver.
974 * :github:`32151` - Use of deprecated macro's in icm42605
Drelease-notes-2.6.rst1832 …`32913` - [Coverity CID :219535] Dereference after null check in drivers/sensor/icm42605/icm42605.c
Drelease-notes-3.1.rst585 * Fixed argument passing bug in the ICM42605 driver.