diff options
Diffstat (limited to 'os/io/platforms/STM32/spi_lld.c')
-rw-r--r-- | os/io/platforms/STM32/spi_lld.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/os/io/platforms/STM32/spi_lld.c b/os/io/platforms/STM32/spi_lld.c index 769b797e8..e91fe44a0 100644 --- a/os/io/platforms/STM32/spi_lld.c +++ b/os/io/platforms/STM32/spi_lld.c @@ -29,15 +29,15 @@ #include <stm32_dma.h>
#include <nvic.h>
+/*===========================================================================*/
+/* Low Level Driver exported variables. */
+/*===========================================================================*/
+
#if USE_STM32_SPI1 || defined(__DOXYGEN__)
/** @brief SPI1 driver identifier.*/
SPIDriver SPID1;
#endif
-/*===========================================================================*/
-/* Low Level Driver exported variables. */
-/*===========================================================================*/
-
#if USE_STM32_SPI2 || defined(__DOXYGEN__)
/** @brief SPI2 driver identifier.*/
SPIDriver SPID2;
|