Lines Matching refs:to
23 - Up to 64 cores, up to 16TB of RAM
26 - Safety certification to various automotive, industrial and medical standards
28 How to run LVGL on QNX?
31 There are two ways to use LVGL in your QNX project. The first is similar to how
32 LVGL is used on other systems. The second is to build LVGL as either a shared or
39 `lv_conf_template.h` to `lv_conf.h` make the following changes to the latter:
47 2. Set colour depth to 32:
62 **Note that this method is an alternative to including LVGL in your project. If
63 you choose to build a library then you do not need to follow the instructions in
75 If you prefer to build for a specific architecture and variant, go to the
76 appropriate directory and run `make` there. For example, to build a shared
84 As a general rule, if you only want to have one LVGL application in your system
85 then it is better to use a static library. If you have more than one, and
86 especially if they run concurrently, it is better to use the shared library.
88 Before building the library, you may wish to edit
89 `$(LVGL_ROOT)/env_support/qnx/lv_conf.h`, e.g. to add fonts or disable
104 identical to that of a LVGL application written for any other platform.
106 The following code shows how to create a "Hello World" application: