Lines Matching +full:- +full:o
6 --------
11 …for the mobile ecosystem, particularly smart phones but including mobile-influenced industries. MI…
15 (Display Command Set). Usually when one talks about a MIPI-compatible display, one thinks of a devi…
16 …faces, like SPI serial, or i8080-compatible parallel interface, which are often used to interface …
19 of that standard command set each LCD controller chip has a number of vendor-specific commands to c…
23 …ntrollers with an SPI or i8080 bus, and provides a common framework for chip-specific display cont…
30 -------------
35 ----------------------
39 .. code-block:: c
47 -----
49 You need to implement two platform-dependent functions:
51 .. code-block:: c
59 …/* Send large array of pixel data to the LCD. If necessary, this function has to do the byte-swapp…
79 …ver does not handle the draw buffer allocation, because this may be platform-dependent, too. Thus …
86 -------
89 …You can find a step-by-step guide and the actual implementation of the callbacks on an STM32F746 u…
92 .. code-block:: c
104 /* Initialize LCD I/O bus, reset LCD */
130 /* Initialize LCD bus I/O */
167 ---------------
175 .. code-block:: c
187 While the chip-specific drivers do their best to initialize the LCD controller correctly, it is pos…
194 .. code-block:: c
207 You can add a delay between the commands by using the pseudo-command ``LV_LCD_CMD_DELAY_MS``, which…