Nothing Special   »   [go: up one dir, main page]

Skip to content

Commit

Permalink
Fixes doc ERROR: Unexpected indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kdschlosser committed Jul 15, 2024
1 parent 5b11c5b commit 57bcff3
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
3 changes: 3 additions & 0 deletions docs/integration/chip/nxp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,9 @@ Supported draw tasks are available in "src/draw/nxp/pxp/lv_draw_vglite.c":
break;
}
All the below operation can be done in addition with optional opacity.

- Fill area with color (w/ radius or gradient).
- Blit source image (any format from `_vglite_src_cf_supported()`) over
destination (any format from `_vglite_dest_cf_supported()`).
Expand All @@ -364,6 +366,7 @@ All the below operation can be done in addition with optional opacity.
- Draw lines (w/ dash or rounded edges).
- Draw triangles with color (w/ gradient).


Known limitations:
^^^^^^^^^^^^^^^^^^

Expand Down
6 changes: 5 additions & 1 deletion docs/overview/renderers/arm2d.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,23 @@ Microcontrollers**. It supports all Cortex-M processors ranging from
Cortex-M0 to the latest Cortex-M85.

Arm-2D accelerates LVGL9 with two modes: **Synchronous Mode** and
**Asynchronous Mode**.
**Asynchronous Mode**.

- When **Helium** and **ACI (Arm Custom Instruction)** are available, it is recommend
to use **Synchronous Mode** to accelerate LVGL.
- When Arm-2D backed 2D-GPUs are available, for example, **DMAC-350 based 2D
GPUs**, it is recommend to use **Asynchronous Mode** to accelerate LVGL.


Arm-2D is an open-source project on GitHub. For more, please refer to:
https://github.com/ARM-software/Arm-2D.


How to Use
**********

In general:

- you can set the macro :c:macro:`LV_USE_DRAW_ARM2D_SYNC` to ``1`` and
:c:macro:`LV_DRAW_SW_ASM` to ``LV_DRAW_SW_ASM_HELIUM`` in ``lv_conf.h`` to
enable Arm-2D synchronous acceleration for LVGL.
Expand Down
4 changes: 4 additions & 0 deletions docs/porting/draw.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,15 @@ Hierarchy of modules
--------------------

All these together looks like this

- list of draw units
- display(s)

- layer(s): Each display has its own list of layers

- draw tasks: Each layer has its own list of draw tasks


References
**********

Expand Down
8 changes: 4 additions & 4 deletions docs/widgets/label.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ Parts and Styles
****************

- :cpp:enumerator:`LV_PART_MAIN` Uses all the typical background properties and the
text properties. The padding values can be used to add space between
the text and the background.
text properties. The padding values can be used to add space between
the text and the background.
- :cpp:enumerator:`LV_PART_SCROLLBAR` The scrollbar that is shown when the text is
larger than the widget's size.
larger than the widget's size.
- :cpp:enumerator:`LV_PART_SELECTED` Tells the style of the
:ref:`selected text <lv_label_text_selection>`. Only ``text_color`` and ``bg_color`` style
properties can be used.
properties can be used.

.. _lv_label_usage:

Expand Down

0 comments on commit 57bcff3

Please sign in to comment.