Add missing files for G0

This commit is contained in:
Ulf Lilleengen 2021-09-02 11:19:54 +02:00
parent e6eb45eaee
commit 4dccda085f
4 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1 @@

View File

@ -1,6 +1,7 @@
#![macro_use]
#[cfg_attr(adc_v3, path = "v3.rs")]
#[cfg_attr(adc_g0, path = "g0.rs")]
mod _version;
#[allow(unused)]

View File

@ -0,0 +1 @@

View File

@ -1,6 +1,7 @@
#[cfg_attr(any(pwr_h7, pwr_h7smps), path = "h7.rs")]
#[cfg_attr(pwr_f4, path = "f4.rs")]
#[cfg_attr(pwr_wl5, path = "wl5.rs")]
#[cfg_attr(pwr_g0, path = "g0.rs")]
mod _version;
pub use _version::*;