1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! HAL for the GD32VF103xx family
//!
//! This is an implementation of the [`embedded-hal`] traits for the GD32VF103xx family

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

pub use gd32vf103_pac as pac;

use embedded_hal as hal;

mod afio;
pub mod gpio;
pub mod rcu;
pub mod backup_domain;
pub mod prelude;
pub mod serial;
pub mod spi;
pub mod time;