mango-hal 0.2.1

Hardware Abstraction Layer for the mango operationg system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MIT OR Apache-2.0
//
// Copyright (c) 2018-2023 Andre Richter <andre.o.richter@gmail.com>

//! Conditional reexporting of Board Support Packages.

mod device_driver;

#[cfg(any(feature = "rpi3", feature = "rpi4"))]
mod raspberrypi;

#[cfg(any(feature = "rpi3", feature = "rpi4"))]
pub use raspberrypi::*;