cc3040aed6
x-nucleo-iks4a1 shield is an arduino compatible companion board which can be used on top of Nucleo standard boards for industrial applications. Following MEMS sensor are currently supported: - LSM6DSO16IS: MEMS 3D accelerometer + 3D gyroscope - LSM6DSV16X: MEMS 3D accelerometer + 3D gyroscope - LIS2MDL: MEMS 3D magnetometer - LPS22DF: Low-power and high-precision MEMS pressure sensor (https://www.st.com/resource/en/data_brief/x-nucleo-iks4a1.pdf) The board exports three overlays: 1. x_nucleo_iks4a1.overlay (standard mode) All MEMS sensors are connected to micro-controller. 2. x_nucleo_iks4a1_shub1.overlay (HUB1 mode) LSM6DSV16X IMU sensor act as a sensor_hub with LIS2MDL and LPS22DF connected to it. 3. x_nucleo_iks4a1_shub2.overlay (HUB2 mode) LSM6DSO16IS IMU sensor act as a sensor_hub with LIS2MDL and LPS22DF connected to it. Signed-off-by: Armando Visconti <armando.visconti@st.com>
23 lines
400 B
Plaintext
23 lines
400 B
Plaintext
/*
|
|
* Copyright (c) 2024 STMicroelectronics
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
aliases {
|
|
accel0 = &lsm6dsv16x_6b_x_nucleo_iks4a1;
|
|
};
|
|
};
|
|
|
|
&arduino_i2c {
|
|
lsm6dsv16x_6b_x_nucleo_iks4a1: lsm6dsv16x@6b {
|
|
compatible = "st,lsm6dsv16x";
|
|
reg = <0x6b>;
|
|
accel-odr = <0x02>;
|
|
gyro-odr = <0x02>;
|
|
int1-gpios = <&arduino_header 11 GPIO_ACTIVE_HIGH>; /* D5 */
|
|
drdy-pin = <1>;
|
|
};
|
|
};
|