drone-cortexm 0.14.1

ARM® Cortex®-M platform crate for Drone, an Embedded Operating System.
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;