diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-11-23 21:18:54 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-11-23 21:18:54 +0000 |
commit | 6150f3b4a34df80ac65cee5d1818982199b5a027 (patch) | |
tree | 0f9e6aea3a4bae426572fc4b7f897fb73b78748c /os/io/platforms/STM32/spi_lld.c | |
parent | ed930d3c0f0bf075dcc4a2361ff96f51e8b8964c (diff) | |
download | ChibiOS-6150f3b4a34df80ac65cee5d1818982199b5a027.tar.gz ChibiOS-6150f3b4a34df80ac65cee5d1818982199b5a027.tar.bz2 ChibiOS-6150f3b4a34df80ac65cee5d1818982199b5a027.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1320 35acf78f-673a-0410-8e92-d51de3d6d3f4
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;
|