rlvgl 0.2.1

A modular, idiomatic Rust reimplementation of the LVGL graphics library for embedded and simulator use.
Documentation
{# 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 %}
#[cfg(feature = "c_hal")]
pub mod c_ffi;
/// Board-level user defaults (power, etc.).
pub mod board;
{%- if summary %}
#[cfg(feature = "summaries")]
pub mod summary;
{%- endif %}
{%- if pinreport %}
#[cfg(feature = "pinreport")]
pub mod pinreport;
{%- endif %}