Files
drone_core
drone_cortexm
drone_ctypes
futures
futures_channel
futures_core
futures_io
futures_sink
futures_task
futures_util
pin_project_lite
pin_utils
proc_macro_nested
typenum
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Drivers for core ARM Cortex-M peripherals.
//!
//! This module provides drivers for peripherals present in each Cortex-M
//! chip. It doesn't include device-specific drivers.
//!
//! **NOTE** A device-specific Drone crate may re-export this module with its
//! own additions, in which case it should be used instead.

pub mod sys_tick;
pub mod timer;