Skip to content

Commit fe796a7

Browse files
rbuisson-invnkartben
authored andcommitted
modules: hal_tdk: Add icp101xx support
icp101xx are barometric pressure and temperature sensors. https://invensense.tdk.com/smartpressure Signed-off-by: Remi Buisson <remi.buisson@tdk.com>
1 parent b9466d2 commit fe796a7

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

doc/releases/migration-guide-4.1.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,19 @@ Sensors
373373
};
374374
};
375375
376+
* The :dtcompatible:`invensense,icp10125` driver has been renamed to
377+
:dtcompatible:`invensense,icp101xx`.
378+
The Device Tree can be configured as follows:
379+
380+
.. code-block:: devicetree
381+
382+
&i2c0 {
383+
icp101xx:icp101xx@63 {
384+
compatible = "invensense,icp101xx";
385+
reg = <0x63>;
386+
};
387+
};
388+
376389
Serial
377390
======
378391

modules/hal_tdk/Kconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,10 @@ config USE_EMD_ICM42670
1717
depends on DT_HAS_INVENSENSE_ICM42670P_ENABLED \
1818
|| DT_HAS_INVENSENSE_ICM42670S_ENABLED
1919

20+
config USE_EMD_ICP101XX
21+
bool "ICP101XX Barometric Pressure and Temperature Sensors"
22+
imply TDK_HAL
23+
depends on ZEPHYR_HAL_TDK_MODULE
24+
depends on DT_HAS_INVENSENSE_ICP101XX_ENABLED
25+
2026
endmenu

west.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ manifest:
243243
groups:
244244
- hal
245245
- name: hal_tdk
246-
revision: e0ade95b29841d915c38bc157bb5509270e8aa21
246+
revision: 6727477af1e46fa43878102489b9672a9d24e39f
247247
path: modules/hal/tdk
248248
groups:
249249
- hal

0 commit comments

Comments
 (0)