diff options
| author | Bob McWhirter <[email protected]> | 2021-07-21 10:55:13 -0400 |
|---|---|---|
| committer | Bob McWhirter <[email protected]> | 2021-07-23 13:22:39 -0400 |
| commit | 6dbe0494689aa22eeb516e07d7ab48f7ec28bf62 (patch) | |
| tree | 338b573c9ee5745b31c597d081a5208ff752726b | |
| parent | bee7f60f080e091bb26cb3aa9c7239cda6a3ffac (diff) | |
Add back in the other versions of SPI.
| -rw-r--r-- | embassy-stm32/src/spi/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-stm32/src/spi/mod.rs b/embassy-stm32/src/spi/mod.rs index 046ec0fe7..9bb5a729c 100644 --- a/embassy-stm32/src/spi/mod.rs +++ b/embassy-stm32/src/spi/mod.rs | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | #![macro_use] | 1 | #![macro_use] |
| 2 | 2 | ||
| 3 | //#[cfg_attr(spi_v1, path = "v1.rs")] | 3 | #[cfg_attr(spi_v1, path = "v1.rs")] |
| 4 | #[cfg_attr(spi_v2, path = "v2.rs")] | 4 | #[cfg_attr(spi_v2, path = "v2.rs")] |
| 5 | //#[cfg_attr(spi_v3, path = "v3.rs")] | 5 | #[cfg_attr(spi_v3, path = "v3.rs")] |
| 6 | mod _version; | 6 | mod _version; |
| 7 | use crate::{dma, peripherals, rcc::RccPeripheral}; | 7 | use crate::{dma, peripherals, rcc::RccPeripheral}; |
| 8 | pub use _version::*; | 8 | pub use _version::*; |
