rlvgl 0.1.7

A modular, idiomatic Rust reimplementation of the LVGL graphics library for embedded and simulator use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{# Board-level module template for rlvgl-creator. #}
//! Generated board modules.
{%- if hal %}
#[cfg(feature = "hal")]
pub mod hal;
{%- endif %}
{%- if pac %}
#[cfg(feature = "pac")]
pub mod pac;
{%- endif %}
{%- if summary %}
#[cfg(feature = "summaries")]
pub mod summary;
{%- endif %}
{%- if pinreport %}
#[cfg(feature = "pinreport")]
pub mod pinreport;
{%- endif %}