rlvgl 0.2.4

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
//! Top-level PAC bring-up for {{ ir.board.name }}.
//!
//! Calls clock gating, IOMUX pad routing, and peripheral init in order.

/// Initialize the board: clock gates, IOMUX, then peripherals.
pub fn init() {
    super::clocks::init();
    super::iomux::init();
    super::peripherals::init();
}