Home
last modified time | relevance | path

Searched +full:gate +full:- +full:line +full:- +full:width (Results 1 – 10 of 10) sorted by relevance

/Zephyr-latest/dts/bindings/display/
Dsolomon,ssd16xx-common.yaml2 # SPDX-License-Identifier: Apache-2.0
6 include: [mipi-dbi-spi-device.yaml, display-controller.yaml]
10 type: uint8-array
13 busy-gpios:
14 type: phandle-array
34 - 0
35 - 90
36 - 180
37 - 270
42 child-binding:
[all …]
/Zephyr-latest/boards/shields/waveshare_epaper/
Dwaveshare_epaper_gdeh029a1.overlay4 * SPDX-License-Identifier: Apache-2.0
15 compatible = "zephyr,mipi-dbi-spi";
16 spi-dev = <&arduino_spi>;
17 dc-gpios = <&arduino_header 15 GPIO_ACTIVE_HIGH>; /* D9 */
18 reset-gpios = <&arduino_header 14 GPIO_ACTIVE_LOW>; /* D8 */
19 #address-cells = <1>;
20 #size-cells = <0>;
24 mipi-max-frequency = <4000000>;
26 width = <296>;
28 busy-gpios = <&arduino_header 13 GPIO_ACTIVE_HIGH>; /* D7 */
[all …]
Dwaveshare_epaper_gdeh0213b1.overlay4 * SPDX-License-Identifier: Apache-2.0
15 compatible = "zephyr,mipi-dbi-spi";
16 spi-dev = <&arduino_spi>;
17 dc-gpios = <&arduino_header 15 GPIO_ACTIVE_HIGH>; /* D9 */
18 reset-gpios = <&arduino_header 14 GPIO_ACTIVE_LOW>; /* D8 */
19 #address-cells = <1>;
20 #size-cells = <0>;
24 mipi-max-frequency = <4000000>;
26 width = <250>;
28 busy-gpios = <&arduino_header 13 GPIO_ACTIVE_HIGH>; /* D7 */
[all …]
Dwaveshare_epaper_gdeh0213b72.overlay4 * SPDX-License-Identifier: Apache-2.0
15 compatible = "zephyr,mipi-dbi-spi";
16 spi-dev = <&arduino_spi>;
17 dc-gpios = <&arduino_header 15 GPIO_ACTIVE_HIGH>; /* D9 */
18 reset-gpios = <&arduino_header 14 GPIO_ACTIVE_LOW>; /* D8 */
19 #address-cells = <1>;
20 #size-cells = <0>;
24 mipi-max-frequency = <4000000>;
26 width = <250>;
28 busy-gpios = <&arduino_header 13 GPIO_ACTIVE_HIGH>; /* D7 */
[all …]
/Zephyr-latest/boards/phytec/reel_board/
Dreel_board.dts2 * Copyright (c) 2018-2019 PHYTEC Messtechnik GmbH
5 * SPDX-License-Identifier: Apache-2.0
8 /dts-v1/;
11 #include "reel_board-pinctrl.dtsi"
19 zephyr,shell-uart = &uart0;
20 zephyr,uart-mcumgr = &uart0;
21 zephyr,bt-mon-uart = &uart0;
22 zephyr,bt-c2h-uart = &uart0;
25 zephyr,code-partition = &slot0_partition;
30 compatible = "gpio-leds";
[all …]
Dreel_board_nrf52840_2.overlay2 * Copyright (c) 2018-2019 PHYTEC Messtechnik GmbH
6 * SPDX-License-Identifier: Apache-2.0
9 #include "reel_board_nrf52840_2-pinctrl.dtsi"
17 zephyr,shell-uart = &uart0;
18 zephyr,uart-mcumgr = &uart0;
19 zephyr,bt-mon-uart = &uart0;
20 zephyr,bt-c2h-uart = &uart0;
23 zephyr,code-partition = &slot0_partition;
32 compatible = "zephyr,mipi-dbi-spi";
33 spi-dev = <&spi1>;
[all …]
/Zephyr-latest/doc/services/pm/images/
Dcentral_method.svg1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3-color: rgb(255, 255, 255);" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="841px…
/Zephyr-latest/drivers/mipi_dsi/
Ddsi_mcux_2l.c4 * SPDX-License-Identifier: Apache-2.0
71 const struct mcux_mipi_dsi_config *config = dev->config; in dsi_mcux_dma_cb()
72 struct mcux_mipi_dsi_data *data = dev->data; in dsi_mcux_dma_cb()
79 DSI_DisableInterrupts(config->base, kDSI_InterruptGroup1ApbTxDone | in dsi_mcux_dma_cb()
81 DSI_GetAndClearInterruptStatus(config->base, &int_flags1, &int_flags2); in dsi_mcux_dma_cb()
82 k_sem_give(&data->transfer_sem); in dsi_mcux_dma_cb()
99 const struct mcux_mipi_dsi_config *config = dev->config; in dsi_mcux_tx_color()
100 struct mcux_mipi_dsi_data *data = dev->data; in dsi_mcux_tx_color()
105 return -ENOTSUP; /* DMA can only transfer on virtual channel 0 */ in dsi_mcux_tx_color()
109 data->smartdma_params.p_buffer = msg->tx_buf; in dsi_mcux_tx_color()
[all …]
/Zephyr-latest/drivers/sdhc/
Dimx_usdhc.c4 * SPDX-License-Identifier: Apache-2.0
101 struct usdhc_data *data = dev->data; in transfer_complete_cb()
104 data->transfer_status |= TRANSFER_DATA_FAILED; in transfer_complete_cb()
106 data->transfer_status |= TRANSFER_DATA_COMPLETE; in transfer_complete_cb()
108 data->transfer_status |= TRANSFER_CMD_FAILED; in transfer_complete_cb()
110 data->transfer_status |= TRANSFER_CMD_COMPLETE; in transfer_complete_cb()
112 k_sem_give(&data->transfer_sem); in transfer_complete_cb()
119 struct usdhc_data *data = dev->data; in sdio_interrupt_cb()
121 if (data->sdhc_cb) { in sdio_interrupt_cb()
122 data->sdhc_cb(dev, SDHC_INT_SDIO, data->sdhc_cb_user_data); in sdio_interrupt_cb()
[all …]
/Zephyr-latest/doc/releases/
Drelease-notes-3.2.rst13 * Added support for :ref:`bin-blobs` (also see :ref:`west-blobs`).
15 * Converted all supported boards from ``pinmux`` to :ref:`pinctrl-guide`.
31 * CVE-2022-2993: Under embargo until 2022-11-03
33 * CVE-2022-2741: Under embargo until 2022-10-14
56 This definition can be used by third-party code to compile code conditional
58 Therefore, any third-party code integrated using the Zephyr build system will
91 changed from ``-ENETDOWN`` to ``-ENETUNREACH``. A return value of ``-ENETDOWN`` now indicates
129 * Removed support for configuring the CAN-FD maximum DLC value via Kconfig
156 valid for specific bindings to specify like :dtcompatible:`gpio-leds` and
157 :dtcompatible:`fixed-partitions`.
[all …]