stm32f10x_usart.c
上传用户:yj_qqy
上传日期:2017-01-28
资源大小:2911k
文件大小:43k
源码类别:

uCOS

开发平台:

C/C++

  1. /******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
  2. * File Name          : stm32f10x_usart.c
  3. * Author             : MCD Application Team
  4. * Version            : V2.0.2
  5. * Date               : 07/11/2008
  6. * Description        : This file provides all the USART firmware functions.
  7. ********************************************************************************
  8. * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  9. * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
  10. * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
  11. * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
  12. * CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
  13. * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  14. *******************************************************************************/
  15. /* Includes ------------------------------------------------------------------*/
  16. #include "stm32f10x_usart.h"
  17. #include "stm32f10x_rcc.h"
  18. /* Private typedef -----------------------------------------------------------*/
  19. /* Private define ------------------------------------------------------------*/
  20. /* USART UE Mask */
  21. #define CR1_UE_Set                ((u16)0x2000)  /* USART Enable Mask */
  22. #define CR1_UE_Reset              ((u16)0xDFFF)  /* USART Disable Mask */
  23. /* USART WakeUp Method  */
  24. #define CR1_WAKE_Mask             ((u16)0xF7FF)  /* USART WakeUp Method Mask */
  25. /* USART RWU Mask */
  26. #define CR1_RWU_Set               ((u16)0x0002)  /* USART mute mode Enable Mask */
  27. #define CR1_RWU_Reset             ((u16)0xFFFD)  /* USART mute mode Enable Mask */
  28. #define CR1_SBK_Set               ((u16)0x0001)  /* USART Break Character send Mask */
  29. #define CR1_CLEAR_Mask            ((u16)0xE9F3)  /* USART CR1 Mask */
  30. #define CR2_Address_Mask          ((u16)0xFFF0)  /* USART address Mask */
  31. /* USART LIN Mask */
  32. #define CR2_LINEN_Set              ((u16)0x4000)  /* USART LIN Enable Mask */
  33. #define CR2_LINEN_Reset            ((u16)0xBFFF)  /* USART LIN Disable Mask */
  34. /* USART LIN Break detection */
  35. #define CR2_LBDL_Mask             ((u16)0xFFDF)  /* USART LIN Break detection Mask */
  36. #define CR2_STOP_CLEAR_Mask       ((u16)0xCFFF)  /* USART CR2 STOP Bits Mask */
  37. #define CR2_CLOCK_CLEAR_Mask      ((u16)0xF0FF)  /* USART CR2 Clock Mask */
  38. /* USART SC Mask */
  39. #define CR3_SCEN_Set              ((u16)0x0020)  /* USART SC Enable Mask */
  40. #define CR3_SCEN_Reset            ((u16)0xFFDF)  /* USART SC Disable Mask */
  41. /* USART SC NACK Mask */
  42. #define CR3_NACK_Set              ((u16)0x0010)  /* USART SC NACK Enable Mask */
  43. #define CR3_NACK_Reset            ((u16)0xFFEF)  /* USART SC NACK Disable Mask */
  44. /* USART Half-Duplex Mask */
  45. #define CR3_HDSEL_Set             ((u16)0x0008)  /* USART Half-Duplex Enable Mask */
  46. #define CR3_HDSEL_Reset           ((u16)0xFFF7)  /* USART Half-Duplex Disable Mask */
  47. /* USART IrDA Mask */
  48. #define CR3_IRLP_Mask             ((u16)0xFFFB)  /* USART IrDA LowPower mode Mask */
  49. #define CR3_CLEAR_Mask            ((u16)0xFCFF)  /* USART CR3 Mask */
  50. /* USART IrDA Mask */
  51. #define CR3_IREN_Set              ((u16)0x0002)  /* USART IrDA Enable Mask */
  52. #define CR3_IREN_Reset            ((u16)0xFFFD)  /* USART IrDA Disable Mask */
  53. #define GTPR_LSB_Mask             ((u16)0x00FF)  /* Guard Time Register LSB Mask */
  54. #define GTPR_MSB_Mask             ((u16)0xFF00)  /* Guard Time Register MSB Mask */
  55. #define IT_Mask                   ((u16)0x001F)  /* USART Interrupt Mask */
  56. /* Private macro -------------------------------------------------------------*/
  57. /* Private variables ---------------------------------------------------------*/
  58. /* Private function prototypes -----------------------------------------------*/
  59. /* Private functions ---------------------------------------------------------*/
  60. /*******************************************************************************
  61. * Function Name  : USART_DeInit
  62. * Description    : Deinitializes the USARTx peripheral registers to their
  63. *                  default reset values.
  64. * Input          : - USARTx: Select the USART or the UART peripheral. 
  65. *                    This parameter can be one of the following values:
  66. *                     - USART1, USART2, USART3, UART4 or UART5.
  67. * Output         : None
  68. * Return         : None
  69. *******************************************************************************/
  70. void USART_DeInit(USART_TypeDef* USARTx)
  71. {
  72.   /* Check the parameters */
  73.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  74.   switch (*(u32*)&USARTx)
  75.   {
  76.     case USART1_BASE:
  77.       RCC_APB2PeriphResetCmd(RCC_APB2Periph_USART1, ENABLE);
  78.       RCC_APB2PeriphResetCmd(RCC_APB2Periph_USART1, DISABLE);
  79.       break;
  80.     case USART2_BASE:
  81.       RCC_APB1PeriphResetCmd(RCC_APB1Periph_USART2, ENABLE);
  82.       RCC_APB1PeriphResetCmd(RCC_APB1Periph_USART2, DISABLE);
  83.       break;
  84.     case USART3_BASE:
  85.       RCC_APB1PeriphResetCmd(RCC_APB1Periph_USART3, ENABLE);
  86.       RCC_APB1PeriphResetCmd(RCC_APB1Periph_USART3, DISABLE);
  87.       break;
  88.     
  89.     case UART4_BASE:
  90.       RCC_APB1PeriphResetCmd(RCC_APB1Periph_UART4, ENABLE);
  91.       RCC_APB1PeriphResetCmd(RCC_APB1Periph_UART4, DISABLE);
  92.       break;
  93.     
  94.     case UART5_BASE:
  95.       RCC_APB1PeriphResetCmd(RCC_APB1Periph_UART5, ENABLE);
  96.       RCC_APB1PeriphResetCmd(RCC_APB1Periph_UART5, DISABLE);
  97.       break;            
  98.     default:
  99.       break;
  100.   }
  101. }
  102. /*******************************************************************************
  103. * Function Name  : USART_Init
  104. * Description    : Initializes the USARTx peripheral according to the specified
  105. *                  parameters in the USART_InitStruct .
  106. * Input          : - USARTx: Select the USART or the UART peripheral. 
  107. *                    This parameter can be one of the following values:
  108. *                     - USART1, USART2, USART3, UART4 or UART5.
  109. *                  - USART_InitStruct: pointer to a USART_InitTypeDef structure
  110. *                    that contains the configuration information for the
  111. *                    specified USART peripheral.
  112. * Output         : None
  113. * Return         : None
  114. *******************************************************************************/
  115. void USART_Init(USART_TypeDef* USARTx, USART_InitTypeDef* USART_InitStruct)
  116. {
  117.   u32 tmpreg = 0x00, apbclock = 0x00;
  118.   u32 integerdivider = 0x00;
  119.   u32 fractionaldivider = 0x00;
  120.   u32 usartxbase = 0;
  121.   RCC_ClocksTypeDef RCC_ClocksStatus;
  122.   /* Check the parameters */
  123.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  124.   assert_param(IS_USART_BAUDRATE(USART_InitStruct->USART_BaudRate));  
  125.   assert_param(IS_USART_WORD_LENGTH(USART_InitStruct->USART_WordLength));
  126.   assert_param(IS_USART_STOPBITS(USART_InitStruct->USART_StopBits));
  127.   assert_param(IS_USART_PARITY(USART_InitStruct->USART_Parity));
  128.   assert_param(IS_USART_MODE(USART_InitStruct->USART_Mode));
  129.   assert_param(IS_USART_HARDWARE_FLOW_CONTROL(USART_InitStruct->USART_HardwareFlowControl));
  130.   /* The hardware flow control is available only for USART1, USART2 and USART3 */          
  131.   assert_param(IS_USART_PERIPH_HFC(USARTx, USART_InitStruct->USART_HardwareFlowControl));
  132.   
  133.   usartxbase = (*(u32*)&USARTx);
  134. /*---------------------------- USART CR2 Configuration -----------------------*/
  135.   tmpreg = USARTx->CR2;
  136.   /* Clear STOP[13:12] bits */
  137.   tmpreg &= CR2_STOP_CLEAR_Mask;
  138.   /* Configure the USART Stop Bits, Clock, CPOL, CPHA and LastBit ------------*/
  139.   /* Set STOP[13:12] bits according to USART_StopBits value */
  140.   tmpreg |= (u32)USART_InitStruct->USART_StopBits;
  141.   
  142.   /* Write to USART CR2 */
  143.   USARTx->CR2 = (u16)tmpreg;
  144. /*---------------------------- USART CR1 Configuration -----------------------*/
  145.   tmpreg = USARTx->CR1;
  146.   /* Clear M, PCE, PS, TE and RE bits */
  147.   tmpreg &= CR1_CLEAR_Mask;
  148.   /* Configure the USART Word Length, Parity and mode ----------------------- */
  149.   /* Set the M bits according to USART_WordLength value */
  150.   /* Set PCE and PS bits according to USART_Parity value */
  151.   /* Set TE and RE bits according to USART_Mode value */
  152.   tmpreg |= (u32)USART_InitStruct->USART_WordLength | USART_InitStruct->USART_Parity |
  153.             USART_InitStruct->USART_Mode;
  154.   /* Write to USART CR1 */
  155.   USARTx->CR1 = (u16)tmpreg;
  156. /*---------------------------- USART CR3 Configuration -----------------------*/  
  157.   tmpreg = USARTx->CR3;
  158.   /* Clear CTSE and RTSE bits */
  159.   tmpreg &= CR3_CLEAR_Mask;
  160.   /* Configure the USART HFC -------------------------------------------------*/
  161.   /* Set CTSE and RTSE bits according to USART_HardwareFlowControl value */
  162.   tmpreg |= USART_InitStruct->USART_HardwareFlowControl;
  163.   /* Write to USART CR3 */
  164.   USARTx->CR3 = (u16)tmpreg;
  165. /*---------------------------- USART BRR Configuration -----------------------*/
  166.   /* Configure the USART Baud Rate -------------------------------------------*/
  167.   RCC_GetClocksFreq(&RCC_ClocksStatus);
  168.   if (usartxbase == USART1_BASE)
  169.   {
  170.     apbclock = RCC_ClocksStatus.PCLK2_Frequency;
  171.   }
  172.   else
  173.   {
  174.     apbclock = RCC_ClocksStatus.PCLK1_Frequency;
  175.   }
  176.   /* Determine the integer part */
  177.   integerdivider = ((0x19 * apbclock) / (0x04 * (USART_InitStruct->USART_BaudRate)));
  178.   tmpreg = (integerdivider / 0x64) << 0x04;
  179.   /* Determine the fractional part */
  180.   fractionaldivider = integerdivider - (0x64 * (tmpreg >> 0x04));
  181.   tmpreg |= ((((fractionaldivider * 0x10) + 0x32) / 0x64)) & ((u8)0x0F);
  182.   /* Write to USART BRR */
  183.   USARTx->BRR = (u16)tmpreg;
  184. }
  185. /*******************************************************************************
  186. * Function Name  : USART_StructInit
  187. * Description    : Fills each USART_InitStruct member with its default value.
  188. * Input          : - USART_InitStruct: pointer to a USART_InitTypeDef structure
  189. *                    which will be initialized.
  190. * Output         : None
  191. * Return         : None
  192. *******************************************************************************/
  193. void USART_StructInit(USART_InitTypeDef* USART_InitStruct)
  194. {
  195.   /* USART_InitStruct members default value */
  196.   USART_InitStruct->USART_BaudRate = 9600;
  197.   USART_InitStruct->USART_WordLength = USART_WordLength_8b;
  198.   USART_InitStruct->USART_StopBits = USART_StopBits_1;
  199.   USART_InitStruct->USART_Parity = USART_Parity_No ;
  200.   USART_InitStruct->USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
  201.   USART_InitStruct->USART_HardwareFlowControl = USART_HardwareFlowControl_None;  
  202. }
  203. /*******************************************************************************
  204. * Function Name  : USART_ClockInit
  205. * Description    : Initializes the USARTx peripheral Clock according to the 
  206. *                  specified parameters in the USART_ClockInitStruct .
  207. * Input          : - USARTx: where x can be 1, 2, 3 to select the USART peripheral.
  208. *                    Note: The Smart Card mode is not available for UART4 and UART5.
  209. *                  - USART_ClockInitStruct: pointer to a USART_ClockInitTypeDef
  210. *                    structure that contains the configuration information for 
  211. *                    the specified USART peripheral.
  212. * Output         : None
  213. * Return         : None
  214. *******************************************************************************/
  215. void USART_ClockInit(USART_TypeDef* USARTx, USART_ClockInitTypeDef* USART_ClockInitStruct)
  216. {
  217.   u32 tmpreg = 0x00;
  218.   /* Check the parameters */
  219.   assert_param(IS_USART_123_PERIPH(USARTx));
  220.   assert_param(IS_USART_CLOCK(USART_ClockInitStruct->USART_Clock));
  221.   assert_param(IS_USART_CPOL(USART_ClockInitStruct->USART_CPOL));
  222.   assert_param(IS_USART_CPHA(USART_ClockInitStruct->USART_CPHA));
  223.   assert_param(IS_USART_LASTBIT(USART_ClockInitStruct->USART_LastBit));              
  224.   
  225. /*---------------------------- USART CR2 Configuration -----------------------*/
  226.   tmpreg = USARTx->CR2;
  227.   /* Clear CLKEN, CPOL, CPHA and LBCL bits */
  228.   tmpreg &= CR2_CLOCK_CLEAR_Mask;
  229.   /* Configure the USART Clock, CPOL, CPHA and LastBit ------------*/
  230.   /* Set CLKEN bit according to USART_Clock value */
  231.   /* Set CPOL bit according to USART_CPOL value */
  232.   /* Set CPHA bit according to USART_CPHA value */
  233.   /* Set LBCL bit according to USART_LastBit value */
  234.   tmpreg |= (u32)USART_ClockInitStruct->USART_Clock | USART_ClockInitStruct->USART_CPOL | 
  235.                  USART_ClockInitStruct->USART_CPHA | USART_ClockInitStruct->USART_LastBit;
  236.   /* Write to USART CR2 */
  237.   USARTx->CR2 = (u16)tmpreg;
  238. }
  239. /*******************************************************************************
  240. * Function Name  : USART_ClockStructInit
  241. * Description    : Fills each USART_ClockInitStruct member with its default value.
  242. * Input          : - USART_ClockInitStruct: pointer to a USART_ClockInitTypeDef
  243. *                    structure which will be initialized.
  244. * Output         : None
  245. * Return         : None
  246. *******************************************************************************/
  247. void USART_ClockStructInit(USART_ClockInitTypeDef* USART_ClockInitStruct)
  248. {
  249.   /* USART_ClockInitStruct members default value */
  250.   USART_ClockInitStruct->USART_Clock = USART_Clock_Disable;
  251.   USART_ClockInitStruct->USART_CPOL = USART_CPOL_Low;
  252.   USART_ClockInitStruct->USART_CPHA = USART_CPHA_1Edge;
  253.   USART_ClockInitStruct->USART_LastBit = USART_LastBit_Disable;
  254. }
  255. /*******************************************************************************
  256. * Function Name  : USART_Cmd
  257. * Description    : Enables or disables the specified USART peripheral.
  258. * Input          : - USARTx: Select the USART or the UART peripheral. 
  259. *                    This parameter can be one of the following values:
  260. *                     - USART1, USART2, USART3, UART4 or UART5.
  261. *                : - NewState: new state of the USARTx peripheral.
  262. *                    This parameter can be: ENABLE or DISABLE.
  263. * Output         : None
  264. * Return         : None
  265. *******************************************************************************/
  266. void USART_Cmd(USART_TypeDef* USARTx, FunctionalState NewState)
  267. {
  268.   /* Check the parameters */
  269.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  270.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  271.   
  272.   if (NewState != DISABLE)
  273.   {
  274.     /* Enable the selected USART by setting the UE bit in the CR1 register */
  275.     USARTx->CR1 |= CR1_UE_Set;
  276.   }
  277.   else
  278.   {
  279.     /* Disable the selected USART by clearing the UE bit in the CR1 register */
  280.     USARTx->CR1 &= CR1_UE_Reset;
  281.   }
  282. }
  283. /*******************************************************************************
  284. * Function Name  : USART_ITConfig
  285. * Description    : Enables or disables the specified USART interrupts.
  286. * Input          : - USARTx: Select the USART or the UART peripheral. 
  287. *                    This parameter can be one of the following values:
  288. *                     - USART1, USART2, USART3, UART4 or UART5.
  289. *                  - USART_IT: specifies the USART interrupt sources to be
  290. *                    enabled or disabled.
  291. *                    This parameter can be one of the following values:
  292. *                       - USART_IT_CTS:  CTS change interrupt (not available for
  293. *                                        UART4 and UART5)
  294. *                       - USART_IT_LBD:  LIN Break detection interrupt
  295. *                       - USART_IT_TXE:  Tansmit Data Register empty interrupt
  296. *                       - USART_IT_TC:   Transmission complete interrupt
  297. *                       - USART_IT_RXNE: Receive Data register not empty 
  298. *                                        interrupt
  299. *                       - USART_IT_IDLE: Idle line detection interrupt
  300. *                       - USART_IT_PE:   Parity Error interrupt
  301. *                       - USART_IT_ERR:  Error interrupt(Frame error, noise
  302. *                                        error, overrun error)
  303. *                  - NewState: new state of the specified USARTx interrupts.
  304. *                    This parameter can be: ENABLE or DISABLE.
  305. * Output         : None
  306. * Return         : None
  307. *******************************************************************************/
  308. void USART_ITConfig(USART_TypeDef* USARTx, u16 USART_IT, FunctionalState NewState)
  309. {
  310.   u32 usartreg = 0x00, itpos = 0x00, itmask = 0x00;
  311.   u32 usartxbase = 0x00;
  312.   /* Check the parameters */
  313.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  314.   assert_param(IS_USART_CONFIG_IT(USART_IT));
  315.   assert_param(IS_USART_PERIPH_IT(USARTx, USART_IT)); /* The CTS interrupt is not available for UART4 and UART5 */     
  316.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  317.   usartxbase = (*(u32*)&(USARTx));
  318.   /* Get the USART register index */
  319.   usartreg = (((u8)USART_IT) >> 0x05);
  320.   /* Get the interrupt position */
  321.   itpos = USART_IT & IT_Mask;
  322.   itmask = (((u32)0x01) << itpos);
  323.     
  324.   if (usartreg == 0x01) /* The IT is in CR1 register */
  325.   {
  326.     usartxbase += 0x0C;
  327.   }
  328.   else if (usartreg == 0x02) /* The IT is in CR2 register */
  329.   {
  330.     usartxbase += 0x10;
  331.   }
  332.   else /* The IT is in CR3 register */
  333.   {
  334.     usartxbase += 0x14; 
  335.   }
  336.   if (NewState != DISABLE)
  337.   {
  338.     *(vu32*)usartxbase  |= itmask;
  339.   }
  340.   else
  341.   {
  342.     *(vu32*)usartxbase &= ~itmask;
  343.   }
  344. }
  345. /*******************************************************************************
  346. * Function Name  : USART_DMACmd
  347. * Description    : Enables or disables the USART抯 DMA interface.
  348. * Input          : - USARTx: Select the USART or the UART peripheral. 
  349. *                    This parameter can be one of the following values:
  350. *                     - USART1, USART2, USART3 or UART4.
  351. *                    Note: The DMA mode is not available for UART5.
  352. *                  - USART_DMAReq: specifies the DMA request.
  353. *                    This parameter can be any combination of the following values:
  354. *                       - USART_DMAReq_Tx: USART DMA transmit request
  355. *                       - USART_DMAReq_Rx: USART DMA receive request
  356. *                  - NewState: new state of the DMA Request sources.
  357. *                   This parameter can be: ENABLE or DISABLE.
  358. * Output         : None
  359. * Return         : None
  360. *******************************************************************************/
  361. void USART_DMACmd(USART_TypeDef* USARTx, u16 USART_DMAReq, FunctionalState NewState)
  362. {
  363.   /* Check the parameters */
  364.   assert_param(IS_USART_1234_PERIPH(USARTx));
  365.   assert_param(IS_USART_DMAREQ(USART_DMAReq));  
  366.   assert_param(IS_FUNCTIONAL_STATE(NewState)); 
  367.   if (NewState != DISABLE)
  368.   {
  369.     /* Enable the DMA transfer for selected requests by setting the DMAT and/or
  370.        DMAR bits in the USART CR3 register */
  371.     USARTx->CR3 |= USART_DMAReq;
  372.   }
  373.   else
  374.   {
  375.     /* Disable the DMA transfer for selected requests by clearing the DMAT and/or
  376.        DMAR bits in the USART CR3 register */
  377.     USARTx->CR3 &= (u16)~USART_DMAReq;
  378.   }
  379. }
  380. /*******************************************************************************
  381. * Function Name  : USART_SetAddress
  382. * Description    : Sets the address of the USART node.
  383. * Input          : - USARTx: Select the USART or the UART peripheral. 
  384. *                    This parameter can be one of the following values:
  385. *                     - USART1, USART2, USART3, UART4 or UART5.
  386. *                  - USART_Address: Indicates the address of the USART node.
  387. * Output         : None
  388. * Return         : None
  389. *******************************************************************************/
  390. void USART_SetAddress(USART_TypeDef* USARTx, u8 USART_Address)
  391. {
  392.   /* Check the parameters */
  393.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  394.   assert_param(IS_USART_ADDRESS(USART_Address)); 
  395.     
  396.   /* Clear the USART address */
  397.   USARTx->CR2 &= CR2_Address_Mask;
  398.   /* Set the USART address node */
  399.   USARTx->CR2 |= USART_Address;
  400. }
  401. /*******************************************************************************
  402. * Function Name  : USART_WakeUpConfig
  403. * Description    : Selects the USART WakeUp method.
  404. * Input          : - USARTx: Select the USART or the UART peripheral. 
  405. *                    This parameter can be one of the following values:
  406. *                     - USART1, USART2, USART3, UART4 or UART5.
  407. *                  - USART_WakeUp: specifies the USART wakeup method.
  408. *                    This parameter can be one of the following values:
  409. *                        - USART_WakeUp_IdleLine: WakeUp by an idle line detection
  410. *                        - USART_WakeUp_AddressMark: WakeUp by an address mark
  411. * Output         : None
  412. * Return         : None
  413. *******************************************************************************/
  414. void USART_WakeUpConfig(USART_TypeDef* USARTx, u16 USART_WakeUp)
  415. {
  416.   /* Check the parameters */
  417.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  418.   assert_param(IS_USART_WAKEUP(USART_WakeUp));
  419.   
  420.   USARTx->CR1 &= CR1_WAKE_Mask;
  421.   USARTx->CR1 |= USART_WakeUp;
  422. }
  423. /*******************************************************************************
  424. * Function Name  : USART_ReceiverWakeUpCmd
  425. * Description    : Determines if the USART is in mute mode or not.
  426. * Input          : - USARTx: Select the USART or the UART peripheral. 
  427. *                    This parameter can be one of the following values:
  428. *                     - USART1, USART2, USART3, UART4 or UART5.
  429. *                  - NewState: new state of the USART mute mode.
  430. *                    This parameter can be: ENABLE or DISABLE.
  431. * Output         : None
  432. * Return         : None
  433. *******************************************************************************/
  434. void USART_ReceiverWakeUpCmd(USART_TypeDef* USARTx, FunctionalState NewState)
  435. {
  436.   /* Check the parameters */
  437.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  438.   assert_param(IS_FUNCTIONAL_STATE(NewState)); 
  439.   
  440.   if (NewState != DISABLE)
  441.   {
  442.     /* Enable the USART mute mode  by setting the RWU bit in the CR1 register */
  443.     USARTx->CR1 |= CR1_RWU_Set;
  444.   }
  445.   else
  446.   {
  447.     /* Disable the USART mute mode by clearing the RWU bit in the CR1 register */
  448.     USARTx->CR1 &= CR1_RWU_Reset;
  449.   }
  450. }
  451. /*******************************************************************************
  452. * Function Name  : USART_LINBreakDetectLengthConfig
  453. * Description    : Sets the USART LIN Break detection length.
  454. * Input          : - USARTx: Select the USART or the UART peripheral. 
  455. *                    This parameter can be one of the following values:
  456. *                     - USART1, USART2, USART3, UART4 or UART5.
  457. *                  - USART_LINBreakDetectLength: specifies the LIN break
  458. *                    detection length.
  459. *                    This parameter can be one of the following values:
  460. *                       - USART_LINBreakDetectLength_10b: 10-bit break detection
  461. *                       - USART_LINBreakDetectLength_11b: 11-bit break detection
  462. * Output         : None
  463. * Return         : None
  464. *******************************************************************************/
  465. void USART_LINBreakDetectLengthConfig(USART_TypeDef* USARTx, u16 USART_LINBreakDetectLength)
  466. {
  467.   /* Check the parameters */
  468.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  469.   assert_param(IS_USART_LIN_BREAK_DETECT_LENGTH(USART_LINBreakDetectLength));
  470.   
  471.   USARTx->CR2 &= CR2_LBDL_Mask;
  472.   USARTx->CR2 |= USART_LINBreakDetectLength;  
  473. }
  474. /*******************************************************************************
  475. * Function Name  : USART_LINCmd
  476. * Description    : Enables or disables the USART抯 LIN mode.
  477. * Input          : - USARTx: Select the USART or the UART peripheral. 
  478. *                    This parameter can be one of the following values:
  479. *                     - USART1, USART2, USART3, UART4 or UART5.
  480. *                  - NewState: new state of the USART LIN mode.
  481. *                    This parameter can be: ENABLE or DISABLE.
  482. * Output         : None
  483. * Return         : None
  484. *******************************************************************************/
  485. void USART_LINCmd(USART_TypeDef* USARTx, FunctionalState NewState)
  486. {
  487.   /* Check the parameters */
  488.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  489.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  490.   
  491.   if (NewState != DISABLE)
  492.   {
  493.     /* Enable the LIN mode by setting the LINEN bit in the CR2 register */
  494.     USARTx->CR2 |= CR2_LINEN_Set;
  495.   }
  496.   else
  497.   {
  498.     /* Disable the LIN mode by clearing the LINEN bit in the CR2 register */
  499.     USARTx->CR2 &= CR2_LINEN_Reset;
  500.   }
  501. }
  502. /*******************************************************************************
  503. * Function Name  : USART_SendData
  504. * Description    : Transmits single data through the USARTx peripheral.
  505. * Input          : - USARTx: Select the USART or the UART peripheral. 
  506. *                    This parameter can be one of the following values:
  507. *                     - USART1, USART2, USART3, UART4 or UART5.
  508. *                  - Data: the data to transmit.
  509. * Output         : None
  510. * Return         : None
  511. *******************************************************************************/
  512. void USART_SendData(USART_TypeDef* USARTx, u16 Data)
  513. {
  514.   /* Check the parameters */
  515.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  516.   assert_param(IS_USART_DATA(Data)); 
  517.     
  518.   /* Transmit Data */
  519.   USARTx->DR = (Data & (u16)0x01FF);
  520. }
  521. /*******************************************************************************
  522. * Function Name  : USART_ReceiveData
  523. * Description    : Returns the most recent received data by the USARTx peripheral.
  524. * Input          : - USARTx: Select the USART or the UART peripheral. 
  525. *                    This parameter can be one of the following values:
  526. *                     - USART1, USART2, USART3, UART4 or UART5.
  527. * Output         : None
  528. * Return         : The received data.
  529. *******************************************************************************/
  530. u16 USART_ReceiveData(USART_TypeDef* USARTx)
  531. {
  532.   /* Check the parameters */
  533.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  534.   
  535.   /* Receive Data */
  536.   return (u16)(USARTx->DR & (u16)0x01FF);
  537. }
  538. /*******************************************************************************
  539. * Function Name  : USART_SendBreak
  540. * Description    : Transmits break characters.
  541. * Input          : - USARTx: Select the USART or the UART peripheral. 
  542. *                    This parameter can be one of the following values:
  543. *                     - USART1, USART2, USART3, UART4 or UART5.
  544. * Output         : None
  545. * Return         : None
  546. *******************************************************************************/
  547. void USART_SendBreak(USART_TypeDef* USARTx)
  548. {
  549.   /* Check the parameters */
  550.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  551.   
  552.   /* Send break characters */
  553.   USARTx->CR1 |= CR1_SBK_Set;
  554. }
  555. /*******************************************************************************
  556. * Function Name  : USART_SetGuardTime
  557. * Description    : Sets the specified USART guard time.
  558. * Input          : - USARTx: where x can be 1, 2 or 3 to select the USART
  559. *                    peripheral.
  560. *                  Note: The guard time bits are not available for UART4 and UART5.
  561. *                  - USART_GuardTime: specifies the guard time.
  562. * Output         : None
  563. * Return         : None
  564. *******************************************************************************/
  565. void USART_SetGuardTime(USART_TypeDef* USARTx, u8 USART_GuardTime)
  566. {    
  567.   /* Check the parameters */
  568.   assert_param(IS_USART_123_PERIPH(USARTx));
  569.   
  570.   /* Clear the USART Guard time */
  571.   USARTx->GTPR &= GTPR_LSB_Mask;
  572.   /* Set the USART guard time */
  573.   USARTx->GTPR |= (u16)((u16)USART_GuardTime << 0x08);
  574. }
  575. /*******************************************************************************
  576. * Function Name  : USART_SetPrescaler
  577. * Description    : Sets the system clock prescaler.
  578. * Input          : - USARTx: Select the USART or the UART peripheral. 
  579. *                    This parameter can be one of the following values:
  580. *                     - USART1, USART2, USART3, UART4 or UART5.
  581. *                  Note: The function is used for IrDA mode with UART4 and UART5.
  582. *                  - USART_Prescaler: specifies the prescaler clock.
  583. * Output         : None
  584. * Return         : None
  585. *******************************************************************************/
  586. void USART_SetPrescaler(USART_TypeDef* USARTx, u8 USART_Prescaler)
  587.   /* Check the parameters */
  588.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  589.   
  590.   /* Clear the USART prescaler */
  591.   USARTx->GTPR &= GTPR_MSB_Mask;
  592.   /* Set the USART prescaler */
  593.   USARTx->GTPR |= USART_Prescaler;
  594. }
  595. /*******************************************************************************
  596. * Function Name  : USART_SmartCardCmd
  597. * Description    : Enables or disables the USART抯 Smart Card mode.
  598. * Input          : - USARTx: where x can be 1, 2 or 3 to select the USART
  599. *                    peripheral. 
  600. *                    Note: The Smart Card mode is not available for UART4 and UART5.
  601. *                  - NewState: new state of the Smart Card mode.
  602. *                    This parameter can be: ENABLE or DISABLE.
  603. * Output         : None
  604. * Return         : None
  605. *******************************************************************************/
  606. void USART_SmartCardCmd(USART_TypeDef* USARTx, FunctionalState NewState)
  607. {
  608.   /* Check the parameters */
  609.   assert_param(IS_USART_123_PERIPH(USARTx));
  610.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  611.   if (NewState != DISABLE)
  612.   {
  613.     /* Enable the SC mode by setting the SCEN bit in the CR3 register */
  614.     USARTx->CR3 |= CR3_SCEN_Set;
  615.   }
  616.   else
  617.   {
  618.     /* Disable the SC mode by clearing the SCEN bit in the CR3 register */
  619.     USARTx->CR3 &= CR3_SCEN_Reset;
  620.   }
  621. }
  622. /*******************************************************************************
  623. * Function Name  : USART_SmartCardNACKCmd
  624. * Description    : Enables or disables NACK transmission.
  625. * Input          : - USARTx: where x can be 1, 2 or 3 to select the USART
  626. *                    peripheral. 
  627. *                    Note: The Smart Card mode is not available for UART4 and UART5.
  628. *                  - NewState: new state of the NACK transmission.
  629. *                    This parameter can be: ENABLE or DISABLE.
  630. * Output         : None
  631. * Return         : None
  632. *******************************************************************************/
  633. void USART_SmartCardNACKCmd(USART_TypeDef* USARTx, FunctionalState NewState)
  634. {
  635.   /* Check the parameters */
  636.   assert_param(IS_USART_123_PERIPH(USARTx));  
  637.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  638.   if (NewState != DISABLE)
  639.   {
  640.     /* Enable the NACK transmission by setting the NACK bit in the CR3 register */
  641.     USARTx->CR3 |= CR3_NACK_Set;
  642.   }
  643.   else
  644.   {
  645.     /* Disable the NACK transmission by clearing the NACK bit in the CR3 register */
  646.     USARTx->CR3 &= CR3_NACK_Reset;
  647.   }
  648. }
  649. /*******************************************************************************
  650. * Function Name  : USART_HalfDuplexCmd
  651. * Description    : Enables or disables the USART抯 Half Duplex communication.
  652. * Input          : - USARTx: Select the USART or the UART peripheral. 
  653. *                    This parameter can be one of the following values:
  654. *                     - USART1, USART2, USART3, UART4 or UART5.
  655. *                  - NewState: new state of the USART Communication.
  656. *                    This parameter can be: ENABLE or DISABLE.
  657. * Output         : None
  658. * Return         : None
  659. *******************************************************************************/
  660. void USART_HalfDuplexCmd(USART_TypeDef* USARTx, FunctionalState NewState)
  661. {
  662.   /* Check the parameters */
  663.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  664.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  665.   
  666.   if (NewState != DISABLE)
  667.   {
  668.     /* Enable the Half-Duplex mode by setting the HDSEL bit in the CR3 register */
  669.     USARTx->CR3 |= CR3_HDSEL_Set;
  670.   }
  671.   else
  672.   {
  673.     /* Disable the Half-Duplex mode by clearing the HDSEL bit in the CR3 register */
  674.     USARTx->CR3 &= CR3_HDSEL_Reset;
  675.   }
  676. }
  677. /*******************************************************************************
  678. * Function Name  : USART_IrDAConfig
  679. * Description    : Configures the USART抯 IrDA interface.
  680. * Input          : - USARTx: Select the USART or the UART peripheral. 
  681. *                    This parameter can be one of the following values:
  682. *                     - USART1, USART2, USART3, UART4 or UART5.
  683. *                  - USART_IrDAMode: specifies the IrDA mode.
  684. *                    This parameter can be one of the following values:
  685. *                       - USART_IrDAMode_LowPower
  686. *                       - USART_IrDAMode_Normal
  687. * Output         : None
  688. * Return         : None
  689. *******************************************************************************/
  690. void USART_IrDAConfig(USART_TypeDef* USARTx, u16 USART_IrDAMode)
  691. {
  692.   /* Check the parameters */
  693.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  694.   assert_param(IS_USART_IRDA_MODE(USART_IrDAMode));
  695.     
  696.   USARTx->CR3 &= CR3_IRLP_Mask;
  697.   USARTx->CR3 |= USART_IrDAMode;
  698. }
  699. /*******************************************************************************
  700. * Function Name  : USART_IrDACmd
  701. * Description    : Enables or disables the USART抯 IrDA interface.
  702. * Input          : - USARTx: Select the USART or the UART peripheral. 
  703. *                    This parameter can be one of the following values:
  704. *                     - USART1, USART2, USART3, UART4 or UART5.
  705. *                  - NewState: new state of the IrDA mode.
  706. *                    This parameter can be: ENABLE or DISABLE.
  707. * Output         : None
  708. * Return         : None
  709. *******************************************************************************/
  710. void USART_IrDACmd(USART_TypeDef* USARTx, FunctionalState NewState)
  711. {
  712.   /* Check the parameters */
  713.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  714.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  715.     
  716.   if (NewState != DISABLE)
  717.   {
  718.     /* Enable the IrDA mode by setting the IREN bit in the CR3 register */
  719.     USARTx->CR3 |= CR3_IREN_Set;
  720.   }
  721.   else
  722.   {
  723.     /* Disable the IrDA mode by clearing the IREN bit in the CR3 register */
  724.     USARTx->CR3 &= CR3_IREN_Reset;
  725.   }
  726. }
  727. /*******************************************************************************
  728. * Function Name  : USART_GetFlagStatus
  729. * Description    : Checks whether the specified USART flag is set or not.
  730. * Input          : - USARTx: Select the USART or the UART peripheral. 
  731. *                    This parameter can be one of the following values:
  732. *                     - USART1, USART2, USART3, UART4 or UART5.
  733. *                  - USART_FLAG: specifies the flag to check.
  734. *                    This parameter can be one of the following values:
  735. *                       - USART_FLAG_CTS:  CTS Change flag (not available for 
  736. *                                          UART4 and UART5)
  737. *                       - USART_FLAG_LBD:  LIN Break detection flag
  738. *                       - USART_FLAG_TXE:  Transmit data register empty flag
  739. *                       - USART_FLAG_TC:   Transmission Complete flag
  740. *                       - USART_FLAG_RXNE: Receive data register not empty flag
  741. *                       - USART_FLAG_IDLE: Idle Line detection flag
  742. *                       - USART_FLAG_ORE:  OverRun Error flag
  743. *                       - USART_FLAG_NE:   Noise Error flag
  744. *                       - USART_FLAG_FE:   Framing Error flag
  745. *                       - USART_FLAG_PE:   Parity Error flag
  746. * Output         : None
  747. * Return         : The new state of USART_FLAG (SET or RESET).
  748. *******************************************************************************/
  749. FlagStatus USART_GetFlagStatus(USART_TypeDef* USARTx, u16 USART_FLAG)
  750. {
  751.   FlagStatus bitstatus = RESET;
  752.   /* Check the parameters */
  753.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  754.   assert_param(IS_USART_FLAG(USART_FLAG));
  755.   assert_param(IS_USART_PERIPH_FLAG(USARTx, USART_FLAG)); /* The CTS flag is not available for UART4 and UART5 */   
  756.   if ((USARTx->SR & USART_FLAG) != (u16)RESET)
  757.   {
  758.     bitstatus = SET;
  759.   }
  760.   else
  761.   {
  762.     bitstatus = RESET;
  763.   }
  764.   return bitstatus;
  765. }
  766. /*******************************************************************************
  767. * Function Name  : USART_ClearFlag
  768. * Description    : Clears the USARTx's pending flags.
  769. * Input          : - USARTx: Select the USART or the UART peripheral. 
  770. *                    This parameter can be one of the following values:
  771. *                     - USART1, USART2, USART3, UART4 or UART5.
  772. *                  - USART_FLAG: specifies the flag to clear.
  773. *                    This parameter can be any combination of the following values:
  774. *                       - USART_FLAG_CTS:  CTS Change flag (not available for
  775. *                                          UART4 and UART5).
  776. *                       - USART_FLAG_LBD:  LIN Break detection flag.
  777. *                       - USART_FLAG_TC:   Transmission Complete flag.
  778. *                       - USART_FLAG_RXNE: Receive data register not empty flag.
  779. *
  780. *                  Notes:
  781. *                        - PE (Parity error), FE (Framing error), NE (Noise error),
  782. *                          ORE (OverRun error) and IDLE (Idle line detected) 
  783. *                          flags are cleared by software sequence: a read 
  784. *                          operation to USART_SR register (USART_GetFlagStatus()) 
  785. *                          followed by a read operation to USART_DR register 
  786. *                          (USART_ReceiveData()).
  787. *                        - RXNE flag can be also cleared by a read to the 
  788. *                          USART_DR register (USART_ReceiveData()).
  789. *                        - TC flag can be also cleared by software sequence: a 
  790. *                          read operation to USART_SR register 
  791. *                          (USART_GetFlagStatus()) followed by a write operation
  792. *                          to USART_DR register (USART_SendData()).                                                      
  793. *                        - TXE flag is cleared only by a write to the USART_DR 
  794. *                          register (USART_SendData()).                        
  795. * Output         : None
  796. * Return         : None
  797. *******************************************************************************/
  798. void USART_ClearFlag(USART_TypeDef* USARTx, u16 USART_FLAG)
  799. {
  800.   /* Check the parameters */
  801.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  802.   assert_param(IS_USART_CLEAR_FLAG(USART_FLAG));
  803.   assert_param(IS_USART_PERIPH_FLAG(USARTx, USART_FLAG)); /* The CTS flag is not available for UART4 and UART5 */   
  804.    
  805.   USARTx->SR = (u16)~USART_FLAG;
  806. }
  807. /*******************************************************************************
  808. * Function Name  : USART_GetITStatus
  809. * Description    : Checks whether the specified USART interrupt has occurred or not.
  810. * Input          : - USARTx: Select the USART or the UART peripheral. 
  811. *                    This parameter can be one of the following values:
  812. *                     - USART1, USART2, USART3, UART4 or UART5.
  813. *                  - USART_IT: specifies the USART interrupt source to check.
  814. *                    This parameter can be one of the following values:
  815. *                       - USART_IT_CTS:  CTS change interrupt (not available for 
  816. *                                        UART4 and UART5)
  817. *                       - USART_IT_LBD:  LIN Break detection interrupt
  818. *                       - USART_IT_TXE:  Tansmit Data Register empty interrupt
  819. *                       - USART_IT_TC:   Transmission complete interrupt
  820. *                       - USART_IT_RXNE: Receive Data register not empty 
  821. *                                        interrupt
  822. *                       - USART_IT_IDLE: Idle line detection interrupt
  823. *                       - USART_IT_ORE:  OverRun Error interrupt
  824. *                       - USART_IT_NE:   Noise Error interrupt
  825. *                       - USART_IT_FE:   Framing Error interrupt
  826. *                       - USART_IT_PE:   Parity Error interrupt
  827. * Output         : None
  828. * Return         : The new state of USART_IT (SET or RESET).
  829. *******************************************************************************/
  830. ITStatus USART_GetITStatus(USART_TypeDef* USARTx, u16 USART_IT)
  831. {
  832.   u32 bitpos = 0x00, itmask = 0x00, usartreg = 0x00;
  833.   ITStatus bitstatus = RESET;
  834.   /* Check the parameters */
  835.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  836.   assert_param(IS_USART_GET_IT(USART_IT));
  837.   assert_param(IS_USART_PERIPH_IT(USARTx, USART_IT)); /* The CTS interrupt is not available for UART4 and UART5 */  
  838.   
  839.   /* Get the USART register index */
  840.   usartreg = (((u8)USART_IT) >> 0x05);
  841.   /* Get the interrupt position */
  842.   itmask = USART_IT & IT_Mask;
  843.   itmask = (u32)0x01 << itmask;
  844.   
  845.   if (usartreg == 0x01) /* The IT  is in CR1 register */
  846.   {
  847.     itmask &= USARTx->CR1;
  848.   }
  849.   else if (usartreg == 0x02) /* The IT  is in CR2 register */
  850.   {
  851.     itmask &= USARTx->CR2;
  852.   }
  853.   else /* The IT  is in CR3 register */
  854.   {
  855.     itmask &= USARTx->CR3;
  856.   }
  857.   
  858.   bitpos = USART_IT >> 0x08;
  859.   bitpos = (u32)0x01 << bitpos;
  860.   bitpos &= USARTx->SR;
  861.   if ((itmask != (u16)RESET)&&(bitpos != (u16)RESET))
  862.   {
  863.     bitstatus = SET;
  864.   }
  865.   else
  866.   {
  867.     bitstatus = RESET;
  868.   }
  869.   
  870.   return bitstatus;  
  871. }
  872. /*******************************************************************************
  873. * Function Name  : USART_ClearITPendingBit
  874. * Description    : Clears the USARTx抯 interrupt pending bits.
  875. * Input          : - USARTx: Select the USART or the UART peripheral. 
  876. *                    This parameter can be one of the following values:
  877. *                     - USART1, USART2, USART3, UART4 or UART5.
  878. *                  - USART_IT: specifies the interrupt pending bit to clear.
  879. *                    This parameter can be one of the following values:
  880. *                       - USART_IT_CTS:  CTS change interrupt (not available for 
  881. *                                        UART4 and UART5)
  882. *                       - USART_IT_LBD:  LIN Break detection interrupt
  883. *                       - USART_IT_TC:   Transmission complete interrupt. 
  884. *                       - USART_IT_RXNE: Receive Data register not empty interrupt.
  885. *                    
  886. *                  Notes:
  887. *                        - PE (Parity error), FE (Framing error), NE (Noise error),
  888. *                          ORE (OverRun error) and IDLE (Idle line detected) 
  889. *                          pending bits are cleared by software sequence: a read 
  890. *                          operation to USART_SR register (USART_GetITStatus()) 
  891. *                          followed by a read operation to USART_DR register 
  892. *                          (USART_ReceiveData()).
  893. *                        - RXNE pending bit can be also cleared by a read to the 
  894. *                          USART_DR register (USART_ReceiveData()).
  895. *                        - TC pending bit can be also cleared by software 
  896. *                          sequence: a read operation to USART_SR register 
  897. *                          (USART_GetITStatus()) followed by a write operation
  898. *                          to USART_DR register (USART_SendData()).                                                      
  899. *                        - TXE pending bit is cleared only by a write to the 
  900. *                          USART_DR register (USART_SendData()).  
  901. * Output         : None
  902. * Return         : None
  903. *******************************************************************************/
  904. void USART_ClearITPendingBit(USART_TypeDef* USARTx, u16 USART_IT)
  905. {
  906.   u16 bitpos = 0x00, itmask = 0x00;
  907.   /* Check the parameters */
  908.   assert_param(IS_USART_ALL_PERIPH(USARTx));
  909.   assert_param(IS_USART_CLEAR_IT(USART_IT));
  910.   assert_param(IS_USART_PERIPH_IT(USARTx, USART_IT)); /* The CTS interrupt is not available for UART4 and UART5 */
  911.   
  912.   bitpos = USART_IT >> 0x08;
  913.   itmask = (u16)((u16)0x01 << bitpos);
  914.   USARTx->SR = (u16)~itmask;
  915. }
  916. /******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/