Lines Matching full:or

14 - Hardware independent: use with any microcontroller or display
28 <li> 16, 32 or 64 bit microcontroller or processor</li>
38 <li> One frame buffer in the MCU or in an external display controller</li>
41 <li> C99 or newer compiler</li>
42 <li> Basic C (or C++) knowledge:
53 …My projects](https://forum.lvgl.io/c/my-projects/10) category of the forum or a private message to…
58 … a tweet about you using LVGL, fixing bugs, translating the documentation, or even becoming a main…
68 …https://github.com/lvgl?q=lv_port&type=&language=) LVGL ports to development boards or environments
117 You should use them only if your question or issue is tightly related to the development of the lib…
122 Every MCU which is capable of driving a display via parallel port, SPI, RGB interface or anything e…
135 - TFTs with 16 or 32 bit color depth
140 - or any other display where you can control the color/state of the pixels
144 ### LVGL doesn't start, randomly crashes or nothing is drawn on the display. What can be the proble…
146 - Be sure `lv_disp_drv_t`, `lv_indev_drv_t` and `lv_fs_drv_t` are global or `static`.
191 If you are using 16-bit colors with SPI (or another byte-oriented interface) you probably need to s…
197 - Use two display buffers and flush the buffer with DMA (or similar peripheral) in the background
198 - Increase the clock speed of the SPI or parallel port if you use them to drive the display
205 …to` compiler flag to enable link-time-optimisation together with `-Os` for GCC or `-Oz` for CLANG.