feat: Add spi support for STM32F1 variants

This commit is contained in:
Tobias Pisani
2021-10-06 21:02:15 +02:00
parent a7c37d2ff4
commit f9a576d13d
3 changed files with 18 additions and 3 deletions

View File

@ -1,6 +1,7 @@
#![macro_use]
#[cfg_attr(spi_v1, path = "v1.rs")]
#[cfg_attr(spi_f1, path = "v1.rs")]
#[cfg_attr(spi_v2, path = "v2.rs")]
#[cfg_attr(spi_v3, path = "v3.rs")]
mod _version;