rlvgl 0.2.4

A modular, idiomatic Rust reimplementation of the LVGL graphics library for embedded and simulator use.
Documentation
//! Board support package for {{ ir.board.name }}.
//!
//! Auto-generated by `rlvgl-creator bsp from-yaml --vendor esp`. Do not edit
//! by hand. Regenerate from `chipdb/rlvgl-chips-esp/db/chips/{{ chip_stem }}.yaml`
//! and `chipdb/rlvgl-chips-esp/db/boards/{{ board_stem }}.yaml`.
//!
//! - Chip:   {{ ir.chip.name }} ({{ ir.chip.package }}, {{ ir.chip.arch }})
//! - PAC:    `{{ ir.chip.pac_crate }}`
//! - Module: {{ ir.board.module | default("(none)") }}
//! - Flash:  {{ ir.board.flash_mb }} MB

#![no_std]
#![deny(missing_docs)]

pub mod board;
pub mod clocks;
pub mod io_mux;
pub mod pac;
pub mod peripherals;

pub use pac::init;