stm32: add stm32g4 support.

This commit is contained in:
Dario Nieuwenhuis
2021-11-27 02:21:53 +01:00
parent c7d9729028
commit 88d4b0c00d
17 changed files with 466 additions and 9 deletions

View File

@ -0,0 +1 @@

View File

@ -3,6 +3,7 @@
#[cfg_attr(pwr_f7, path = "f7.rs")]
#[cfg_attr(pwr_wl5, path = "wl5.rs")]
#[cfg_attr(pwr_g0, path = "g0.rs")]
#[cfg_attr(pwr_g4, path = "g4.rs")]
#[cfg_attr(pwr_l1, path = "l1.rs")]
#[cfg_attr(pwr_u5, path = "u5.rs")]
mod _version;