Add 'avr_delay' as a dependency and expose crate

This commit is contained in:
Dylan McKay 2021-02-02 01:50:14 +13:00
parent 8d3c2466ce
commit f973881e60
2 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,7 @@ all-mcus = []
[dependencies]
avr-config = "1.0"
avr_delay = "0.3"
avr-std-stub = { version = "1.0", optional = true }
const_env--value = "0.1"
target-cpu-macro = "0.1"

View File

@ -26,6 +26,9 @@ pub mod modules;
/// Configuration for the currently-targeted microcontroller.
pub use avr_config as config;
/// Delay routines.
pub use avr_delay as delay;
mod register;
mod pin;