cntrlr 0.1.0

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

//! Hardware support
//!
//! Generally, applications should not have to access this module. It
//! is provided to allow specialized applications to directly access
//! board- or mcu-specific functionality.

pub mod board;
pub mod mcu;