2021-03-02 00:32:23 +01:00
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
#![feature(generic_associated_types)]
|
|
|
|
#![feature(const_fn_fn_ptr_basics)]
|
|
|
|
#![feature(const_option)]
|
|
|
|
#![allow(incomplete_features)]
|
2021-03-17 02:48:16 +01:00
|
|
|
#![feature(min_type_alias_impl_trait)]
|
|
|
|
#![feature(impl_trait_in_bindings)]
|
2021-03-02 22:09:47 +01:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2021-03-02 00:32:23 +01:00
|
|
|
|
2021-03-02 15:45:22 +01:00
|
|
|
pub mod delay;
|
2021-03-02 00:32:23 +01:00
|
|
|
pub mod flash;
|
|
|
|
pub mod gpio;
|
2021-03-02 22:09:47 +01:00
|
|
|
pub mod i2c;
|
2021-03-08 19:35:55 +01:00
|
|
|
pub mod spi;
|
2021-03-02 00:32:23 +01:00
|
|
|
pub mod uart;
|
2021-04-26 15:43:19 +02:00
|
|
|
pub mod rng;
|