git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2110 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
527125f126
commit
6a05cd46d5
|
@ -89,7 +89,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @defgroup STM32_SERIAL STM32 USART Support
|
||||
* @defgroup STM32_SERIAL STM32 USART Support (buffered)
|
||||
* @brief USART peripherals support.
|
||||
* @details The serial driver supports the STM32 USARTs in asynchronous
|
||||
* mode.
|
||||
|
@ -97,6 +97,15 @@
|
|||
* @ingroup STM32
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup STM32_UART STM32 USART Support (unbuffered)
|
||||
* @brief USART peripherals support.
|
||||
* @details The UART driver supports the STM32 USARTs using DMA channels for
|
||||
* improved performance.
|
||||
*
|
||||
* @ingroup STM32
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup STM32_DMA STM32 DMA Support
|
||||
* @brief DMA support.
|
||||
|
@ -140,4 +149,3 @@
|
|||
*
|
||||
* @ingroup STM32
|
||||
*/
|
||||
|
||||
|
|
|
@ -135,7 +135,7 @@ typedef struct {
|
|||
*
|
||||
* @param[in] dmap pointer to a stm32_dma_t structure
|
||||
* @param[in] ch channel number
|
||||
* @param[in] cntdr value to be written in the CNDTR register
|
||||
* @param[in] cndtr value to be written in the CNDTR register
|
||||
* @param[in] cmar value to be written in the CMAR register
|
||||
* @param[in] ccr value to be written in the CCR register
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue