Added first GPIO implementation

- First GPIO implementation based on the stm32f0xx amd stm32f1xx
HAL implementations for the HAL module
This commit is contained in:
2021-11-06 01:27:04 +01:00
parent d0ee5343e8
commit 9181e61e70
5 changed files with 530 additions and 9 deletions

7
src/lib.rs Normal file
View File

@ -0,0 +1,7 @@
#![no_std]
pub use va108xx;
pub mod gpio;
pub use va108xx as pac;