cntrlr 0.1.0

Simple, async embedded framework
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright 2020 Branan Riley <me@branan.info>

//! Shared peripherals for Kinetis family microcontrollers.

pub mod mcg;
pub mod osc;
pub mod port;
pub mod sim;
pub mod smc;
pub mod systick;
pub mod uart;
pub mod wdog;