stm32: fix f100 build.

This commit is contained in:
Dario Nieuwenhuis
2022-06-26 23:52:38 +02:00
parent ffc32d3ddb
commit 397722c328
2 changed files with 4 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ use core::mem::MaybeUninit;
use crate::time::Hertz;
#[cfg_attr(rcc_f0, path = "f0.rs")]
#[cfg_attr(any(rcc_f1, rcc_f1cl), path = "f1.rs")]
#[cfg_attr(any(rcc_f1, rcc_f100, rcc_f1cl), path = "f1.rs")]
#[cfg_attr(rcc_f2, path = "f2.rs")]
#[cfg_attr(rcc_f3, path = "f3.rs")]
#[cfg_attr(any(rcc_f4, rcc_f410), path = "f4.rs")]