rlvgl 0.2.3

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
//! Top-level PAC bring-up for {{ ir.board.name }}.
//!
//! Calls clock gating, PFS pin routing, and peripheral init in order.
//! Renesas RA MCUs require module-stop release before any peripheral
//! register access, so `clocks::init()` must run first.

/// Initialize the board: MSTP release, PFS pin mux, then peripherals.
pub fn init() {
    super::clocks::init();
    super::pfs::init();
    super::peripherals::init();
}