docs(renesas): fix the links (#5977)

This commit is contained in:
Gabor Kiss-Vamosi
2024-03-28 18:59:56 +01:00
committed by GitHub
parent ab6ee94aee
commit 30d1a5cf9b

View File

@@ -2,8 +2,8 @@
Renesas
=======
[Renesas](https://renesas.com/) is an official partner of LVGL.
Therefore, LVGL contains built-in support for [Dave2D](https://lpccs-docs.renesas.com/DA1470x/UM-B-157_DA1470x-GPU-API-Manual/files/doc/overview-txt.html) (the GPU of Renesas)
`Renesas <https://renesas.com/>`__ is an official partner of LVGL.
Therefore, LVGL contains built-in support for `Dave2D <https://lpccs-docs.renesas.com/DA1470x/UM-B-157_DA1470x-GPU-API-Manual/files/doc/overview-txt.html>`__ (the GPU of Renesas)
and LVGL also hosts ready-to-use Renesas projects.
Dave2D
@@ -22,7 +22,7 @@ As Dave2D works in the background, the CPU is free for other tasks. In practice,
Certified boards
----------------
LVGL has [certified](https://lvgl.io/certificate) one Renesas board so far (more will come soon).
LVGL has `certified <https://lvgl.io/certificate>`__ one Renesas board so far (more will come soon).
.. raw:: html
@@ -31,14 +31,14 @@ LVGL has [certified](https://lvgl.io/certificate) one Renesas board so far (more
Get started with the Renesas ecosystem
--------------------------------------
The official IDE of Renesas is called [e² studio](https://www.renesas.com/us/en/software-tool/e-studio?gad_source=1&gclid=CjwKCAjw5ImwBhBtEiwAFHDZx2V3lumaenbyJnc5Ctrclr_lEQM3G22iZgB-4F92OVLCI7xmzp1YQRoCcRgQAvD_BwE). As it's Eclipse-based, it runs on Windows, Linux, and Mac as well.
The official IDE of Renesas is called `e² studio <https://www.renesas.com/us/en/software-tool/e-studio?gad_source=1&gclid=CjwKCAjw5ImwBhBtEiwAFHDZx2V3lumaenbyJnc5Ctrclr_lEQM3G22iZgB-4F92OVLCI7xmzp1YQRoCcRgQAvD_BwE>`__. As it's Eclipse-based, it runs on Windows, Linux, and Mac as well.
To get started, just download and install e² studio.
Getting started with LVGL
-------------------------
LVGL provides a ready-to-use project for the [EK-RA8D1](https://www.renesas.com/us/en/products/microcontrollers-microprocessors/ra-cortex-m-mcus/ek-ra8d1-evaluation-kit-ra8d1-mcu-group) development board. Its main features from the HMI's point of view are:
LVGL provides a ready-to-use project for the `EK-RA8D1 <https://www.renesas.com/us/en/products/microcontrollers-microprocessors/ra-cortex-m-mcus/ek-ra8d1-evaluation-kit-ra8d1-mcu-group>`__ development board. Its main features from the HMI's point of view are:
- 480MHz, Arm Cortex®-M85 core
- 2MB Code Flash, 1MB SRAM
@@ -48,7 +48,7 @@ LVGL provides a ready-to-use project for the [EK-RA8D1](https://www.renesas.com/
To get a ready-to-use project, clone the [lv_renesas](https://github.com/lvgl/lv_renesas.git) repository:
..code:: shell
.. code:: shell
git clone https://github.com/lvgl/lv_renesas.git --recurse-submodules
After that, *Import* ``lv_ek_ra8d1`` into e² studio, build the project, and flash it.
@@ -68,12 +68,14 @@ You can disable all demos (or just comment them out) and call some ``lv_example_
Configuration
~~~~~~~~~~~~~
lv_conf.h contains the most important settings for LVGL. Namely:
``lv_conf.h`` contains the most important settings for LVGL. Namely:
LV_COLOR_DEPTH to set LVGL's default color depth
LV_MEM_SIZE to set the maximum RAM available for LVGL
LV_USE_DAVE2D to enable the GPU
configuration.xml contains the settings for the board and the MCU. By opening this file, all the hardware and software components can be customized in a visual way.
- ``LV_COLOR_DEPTH`` to set LVGL's default color depth
- ``LV_MEM_SIZE to`` set the maximum RAM available for LVGL
- ``LV_USE_DAVE2D`` to enable the GPU
``configuration.xml`` contains the settings for the board and the MCU. By opening this file, all the hardware and software components can be customized in a visual way.
Support