Lines Matching +full:lvgl +full:- +full:codes
25 perform a full erase, pass the ``--erase`` option when executing ``west flash``.
35 compiler option ``-fstack-protector-all``. Users who wish to use this option must now enable
52 array property ``input-codes``.
54 If the devicetree property ``int-gpios`` is present, interrupt mode is used
57 the devicetree property ``poll-interval-ms``.
84 * The newly-added Kconfig option :kconfig:option:`CONFIG_MBEDTLS_PSA_KEY_SLOT_COUNT`
92 Trusted Firmware-M
95 LVGL subsection
107 The :c:macro:`DEVICE_API()` macro should be used by out-of-tree driver implementations for
116 * Renamed the ``compatible`` from ``nxp,kinetis-adc12`` to :dtcompatible:`nxp,adc12`.
125 ``mipi-mode`` property in devicetree should now use a string property of
128 .. code-block:: devicetree
134 mipi-mode = <MIPI_DBI_MODE_SPI_4WIRE>;
142 mipi-mode = "MIPI_DBI_MODE_SPI_4WIRE";
165 * Renamed the ``compatible`` from ``nxp,imx-lpi2c`` to :dtcompatible:`nxp,lpi2c`.
173 * Renamed the ``compatible`` from ``renesas,ra8-pwm`` to :dtcompatible:`renesas,ra-pwm`.
184 * Renamed the ``compatible`` from ``nxp,kinetis-mpu`` to :dtcompatible:`nxp,sysmpu` and added
191 * Renamed the ``compatible`` from ``nxp,kinetis-pinctrl`` to :dtcompatible:`nxp,port-pinctrl`.
192 * Renamed the ``compatible`` from ``nxp,kinetis-pinmux`` to :dtcompatible:`nxp,port-pinmux`.
194 :dtcompatible:`silabs,dbus-pinctrl`. This driver allows the configuration of GPIO properties
195 through device tree, rather than having them hard-coded for each supported signal. It also
197 :zephyr_file:`include/zephyr/dt-bindings/pinctrl/silabs/xg24-pinctrl.h`.
201 .. code-block:: devicetree
203 #include <dt-bindings/pinctrl/silabs/xg24-pinctrl.h>
211 drive-open-drain;
212 bias-pull-up;
221 * Renamed the ``compatible`` from ``nxp,kinetis-ftm-pwm`` to :dtcompatible:`nxp,ftm-pwm`.
229 * Renamed the ``compatible`` from ``nxp,kinetis-lpuart`` to :dtcompatible:`nxp,lpuart`.
234 * Renamed the ``compatible`` from ``zephyr,gpio-steppers`` to :dtcompatible:`zephyr,gpio-stepper`.
245 * Renamed the ``compatible`` from ``nxp,imx-lpspi`` to :dtcompatible:`nxp,lpspi`.
246 * Renamed the ``compatible`` from ``nxp,kinetis-dspi`` to :dtcompatible:`nxp,dspi`.
254 * Renamed the ``compatible`` from ``nxp,kinetis-rtc`` to :dtcompatible:`nxp,rtc`.
259 * Renamed the ``compatible`` from ``nxp,kinetis-ftm`` to :dtcompatible:`nxp,ftm` and relocate it
265 * The :file:`include/zephyr/drivers/video-controls.h` got updated to have video controls IDs (CIDs)
266 matching the definitions in the Linux kernel file ``include/uapi/linux/v4l2-controls.h``.
269 The new ``video-controls.h`` source now contains description of each control ID to help
275 Wi-Fi
278 * Renamed the ``compatible`` from ``nxp,kinetis-wdog32`` to :dtcompatible:`nxp,wdog32`.
295 build-time support for specific features, which e.g. the host stack can take advantage of.
302 set as deprecated. Default option for platforms that do not support TF-M
334 :kconfig:option:`CONFIG_BT_BUF_ACL_RX_COUNT_EXTRA` should be set to ``7 - (3 + 1) = 3``.
391 any user-defined data structure. To maintain the current behavior, set this parameter to ``NULL``.
402 * :kconfig:option:`CONFIG_NATIVE_APPLICATION` has been deprecated. Out-of-tree boards using this
404 For an example of how this was done with a board in-tree check :github:`61481`.