diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2022-12-13 16:45:49 -0700 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2022-12-13 16:45:49 -0700 |
| commit | 540e0316aa425a8fbd126d31350dbe51fca92791 (patch) | |
| tree | abc938b9b9f21b7d2357a18272d84c263d767142 /src/hal/mod.rs | |
| parent | 8bb2d168044213ce9bd31a19efb6bab90f5c9722 (diff) | |
| download | stm32l4-rust-540e0316aa425a8fbd126d31350dbe51fca92791.tar.gz stm32l4-rust-540e0316aa425a8fbd126d31350dbe51fca92791.tar.bz2 stm32l4-rust-540e0316aa425a8fbd126d31350dbe51fca92791.zip | |
This rapidly blinks the sysled on the stm32.
This shows the ability to manipulate memory mapped registers.
Diffstat (limited to 'src/hal/mod.rs')
| -rw-r--r-- | src/hal/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/hal/mod.rs b/src/hal/mod.rs new file mode 100644 index 0000000..658bffc --- /dev/null +++ b/src/hal/mod.rs @@ -0,0 +1,4 @@ +pub mod usart; +pub mod gpio; +pub mod common; +pub mod rcc; |