Lines Matching +full:runs +full:- +full:on

7 `Renesas <https://renesas.com/>`__ is an official partner of LVGL. Therefore, LVGL contains built-i…
8 `Dave2D <https://www.renesas.com/document/mas/tes-dave2d-driver-documentation>`__ (the GPU of Renes…
9 ready-to-use Renesas projects.
13 ------
17 - Rectangle drawing, even with gradients
18 - Image drawing, scaling, and rotation
19 - Letter drawing
20 - Triangle drawing
21 - Line drawing
25 half or to one-third, depending on the application.
29 -----
31 GLCDC is a multi-stage graphics output peripheral available in several Renesas MCUs. It is able to …
38 ----------------
40 .. list-table::
43 * -
44 - **EK-RA8D1**
45 - **EK-RA6M3G**
46 - **RX72N Envision Kit**
47 * - CPU
48 - 480MHz, Arm Cortex-M85 core
49 - 120MHz, Arm Cortex-M4 core
50 - 240MHz, Renesas RXv3 core
51 * - Memory
52 -
54 | 2MB internal, 64MB External Octo-SPI Flash
55 -
58 -
61 * - Display
62 -
65 | 2-lane MIPI
66 -
70 -
74 * - `Board <https://lvgl.io/boards>`__ video
75 - .. raw:: html
77 …r; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerp…
79 - .. raw:: html
81 …r; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerp…
83 - .. raw:: html
85 …r; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerp…
87 * - Links
88 - `Demo repository for EK-RA8D1 <https://github.com/lvgl/lv_port_renesas_ek-ra8d1>`__
89 - `Demo repository for EK-RA6M3G <https://github.com/lvgl/lv_port_renesas_ek-ra6m3g>`__
90- `Demo repository for RX72N Envision Kit <https://github.com/lvgl/lv_port_renesas_rx72n-envision-
94 --------------------------------------
101- The official IDE of Renesas is called e² studio. As it's Eclipse-based, it runs on Windows, Linu…
102 … be downloaded `here <https://www.renesas.com/us/en/software-tool/flexible-software-package-fsp>`_…
103- JLink is used for debugging, it can be downloaded `here <https://www.segger.com/downloads/jlink/…
104 - Clone the ready-to-use repository for your selected board:
106 .. code-block:: shell
108 git clone https://github.com/lvgl/lv_port_renesas_ek-ra8d1.git --recurse-submodules
112- Open e² studio, go to ``File`` -> ``Import project`` and select ``General`` / ``Existing project…
113 - Browse the cloned folder and press ``Finish``.
114 - Double click on ``configuration.xml``. This will activate the `Configuration Window`.
124 - Build the project by pressing ``Ctrl`` + ``Alt`` + ``B``
125- Click the Debug button (|img_debug_btn|). If prompted with `Debug Configurations`, on the `Debug…
127 - ``R7FA8D1BH`` for EK-RA8D1
132 - ``R7FA6M3AH`` for EK-RA6M3G
138On EK-RA8D1 boards, the ``SW1`` DIP switch (middle of the board) 7 should be ON, all others are OF…
142- The official IDE of Renesas is called e² studio. As it's Eclipse-based, it runs on Windows, Linu…
143 It can be downloaded `here <https://www.renesas.com/us/en/software-tool/e-studio>`__.
144 - Download and install the required driver for the debugger
146- for Windows: `64 bit here <https://www.renesas.com/us/en/document/uid/usb-driver-renesas-mcu-too…
147 …renesas.com/us/en/document/uid/usb-driver-renesas-mcu-toolse2e2-liteie850ie850apg-fp5-v27700for-32
148- for Linux: `here <https://www.renesas.com/us/en/document/swo/e2-emulator-e2-emulator-lite-linux-
150- RX72 requires an external compiler for the RXv3 core. A free and open-source version is available
151 `here <https://llvm-gcc-renesas.com/rx-download-toolchains/>`__ after a registration.
155 - Go to go to ``Help`` -> ``Add Renesas Toolchains``
156 - Press the ``Add...`` button
157 - Browse the installation folder of the toolchain
164- Clone the ready-to-use `lv_port_renesas_rx72n-envision-kit <https://github.com/lvgl/lv_port_rene…
166 .. code-block:: shell
168 … git clone https://github.com/lvgl/lv_port_renesas_rx72n-envision-kit.git --recurse-submodules
173- Open e² studio, go to ``File`` -> ``Import project`` and select ``General`` / ``Existing project…
174 - Select the cloned folder and press ``Finish``.
175 - Double click on ``RX72N_EnVision_LVGL.scfg``. This will activate the `Configuration Window`.
185 - Build the project by pressing ``Ctrl`` + ``Alt`` + ``B``
186- Click the Debug button (|img_debug_btn|). If prompted with `Debug Configurations`, on the `Debug…
197 ------------------
213 - :c:macro:`LV_COLOR_DEPTH` to set LVGL's default color depth
214 - :c:macro:`LV_MEM_SIZE` to set the maximum RAM available for LVGL
215 - :c:macro:`LV_USE_DAVE2D` to enable the GPU
222 -------