longan-nano 0.3.0

Board support package for the Longan Nano board
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Board support crate for the Longan Nano board

#![no_std]
#![cfg_attr(docsrs, feature(doc_cfg))]

pub use gd32vf103xx_hal as hal;

#[cfg(feature = "lcd")]
#[cfg_attr(docsrs, doc(cfg(feature = "lcd")))]
pub mod lcd;
pub mod led;
pub mod stdout;
#[cfg(feature = "sdcard")]
#[cfg_attr(docsrs, doc(cfg(feature = "sdcard")))]
pub mod sdcard;