edgebadge 0.10.0

Board Support crate for the Adafruit EdgeBadge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![no_std]
#![recursion_limit = "1024"]

#[cfg(feature = "unproven")]
pub mod buttons;

pub mod pins;
pub use atsamd_hal as hal;

#[cfg(feature = "rt")]
pub use cortex_m_rt::entry;

pub use pins::Pins;

pub use hal::common::*;
pub use hal::pac;
pub use hal::samd51::*;