diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-11-07 10:29:32 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-11-07 10:29:32 +0000 |
commit | 8957c5264880bc0c8db34b591ceeca6752db57c8 (patch) | |
tree | 0a7a44d8fcb383cf8320d294428671c89845e621 /os/io/platforms/STM32/platform.dox | |
parent | 0bd69a2cb10011aa34897d747df6a959121a1e4e (diff) | |
download | ChibiOS-8957c5264880bc0c8db34b591ceeca6752db57c8.tar.gz ChibiOS-8957c5264880bc0c8db34b591ceeca6752db57c8.tar.bz2 ChibiOS-8957c5264880bc0c8db34b591ceeca6752db57c8.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1272 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/io/platforms/STM32/platform.dox')
-rw-r--r-- | os/io/platforms/STM32/platform.dox | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/os/io/platforms/STM32/platform.dox b/os/io/platforms/STM32/platform.dox index 6ec9fbe20..5b25bde72 100644 --- a/os/io/platforms/STM32/platform.dox +++ b/os/io/platforms/STM32/platform.dox @@ -23,6 +23,8 @@ * @details The STM32 support includes:
* - I/O ports driver.
* - Buffered, interrupt driven, serial driver.
+ * - DMA capable, high performance, SPI driver.
+ * - DMA capable, high performance, ADC driver.
* - A demo supporting the kernel test suite.
* .
* @ingroup ARMCM3
@@ -65,7 +67,34 @@ * @defgroup STM32_SERIAL STM32 USART Support
* @brief USART peripherals support.
* @details The serial driver supports the STM32 USARTs in asynchronous
- * mode.
+ * mode.
+ *
+ * @ingroup STM32
+ */
+
+/**
+ * @defgroup STM32_DMA STM32 DMA Support
+ * @brief DMA support.
+ * @details The DMA help driver allows to stop the DMA clock when no other
+ * drivers require its services.
+ *
+ * @ingroup STM32
+ */
+
+/**
+ * @defgroup STM32_SPI STM32 SPI Support
+ * @brief SPI peripherals support.
+ * @details The serial driver supports the STM32 SPIs using DMA channels for
+ * improved performance.
+ *
+ * @ingroup STM32
+ */
+
+/**
+ * @defgroup STM32_ADC STM32 ADC Support
+ * @brief ADC peripherals support.
+ * @details The serial driver supports the STM32 ADCs using DMA channels for
+ * improved performance.
*
* @ingroup STM32
*/
|