We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d3c246 commit f973881Copy full SHA for f973881
Cargo.toml
@@ -29,6 +29,7 @@ all-mcus = []
29
30
[dependencies]
31
avr-config = "1.0"
32
+avr_delay = "0.3"
33
avr-std-stub = { version = "1.0", optional = true }
34
const_env--value = "0.1"
35
target-cpu-macro = "0.1"
src/lib.rs
@@ -26,6 +26,9 @@ pub mod modules;
26
/// Configuration for the currently-targeted microcontroller.
27
pub use avr_config as config;
28
+/// Delay routines.
+pub use avr_delay as delay;
+
mod register;
mod pin;
0 commit comments