Add 'avr_delay' as a dependency and expose crate
This commit is contained in:
parent
8d3c2466ce
commit
f973881e60
|
@ -29,6 +29,7 @@ all-mcus = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
avr-config = "1.0"
|
avr-config = "1.0"
|
||||||
|
avr_delay = "0.3"
|
||||||
avr-std-stub = { version = "1.0", optional = true }
|
avr-std-stub = { version = "1.0", optional = true }
|
||||||
const_env--value = "0.1"
|
const_env--value = "0.1"
|
||||||
target-cpu-macro = "0.1"
|
target-cpu-macro = "0.1"
|
||||||
|
|
|
@ -26,6 +26,9 @@ pub mod modules;
|
||||||
/// Configuration for the currently-targeted microcontroller.
|
/// Configuration for the currently-targeted microcontroller.
|
||||||
pub use avr_config as config;
|
pub use avr_config as config;
|
||||||
|
|
||||||
|
/// Delay routines.
|
||||||
|
pub use avr_delay as delay;
|
||||||
|
|
||||||
mod register;
|
mod register;
|
||||||
mod pin;
|
mod pin;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue