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>
21 lines
369 B
Plaintext
21 lines
369 B
Plaintext
/*
|
|
* Copyright (c) 2024 STMicroelectronics
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
aliases {
|
|
accel0 = &lsm6dso16is_6a_x_nucleo_iks4a1_shub;
|
|
};
|
|
};
|
|
|
|
&arduino_i2c {
|
|
lsm6dso16is_6a_x_nucleo_iks4a1_shub: lsm6dso16is@6a {
|
|
compatible = "st,lsm6dso16is";
|
|
reg = <0x6a>;
|
|
irq-gpios = <&arduino_header 5 GPIO_ACTIVE_HIGH>; /* A5 */
|
|
drdy-pin = <1>;
|
|
};
|
|
};
|