diff --git a/doc/releases/migration-guide-3.7.rst b/doc/releases/migration-guide-3.7.rst index 46d504d8589..600ac6c4567 100644 --- a/doc/releases/migration-guide-3.7.rst +++ b/doc/releases/migration-guide-3.7.rst @@ -413,6 +413,23 @@ LED Strip Sensors ======= +* The ``chip`` devicetree property from the :dtcompatible:`sensirion,shtcx` sensor driver has been + removed. Chip variants are now selected using the matching compatible property (:github:`74033`). + For an example of the new shtc3 configuration, see below: + + .. code-block:: devicetree + + &i2c0 { + status = "okay"; + + shtc3: shtc3@70 { + compatible = "sensirion,shtc3", "sensirion,shtcx"; + reg = <0x70>; + measure-mode = "normal"; + clock-stretching; + }; + }; + Serial ======