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

uCOS

开发平台:

C/C++

  1. /******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
  2. * File Name          : stm32f10x_adc.c
  3. * Author             : MCD Application Team
  4. * Version            : V2.0.2
  5. * Date               : 07/11/2008
  6. * Description        : This file provides all the ADC 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_adc.h"
  17. #include "stm32f10x_rcc.h"
  18. /* Private typedef -----------------------------------------------------------*/
  19. /* Private define ------------------------------------------------------------*/
  20. /* ADC DISCNUM mask */
  21. #define CR1_DISCNUM_Reset           ((u32)0xFFFF1FFF)
  22. /* ADC DISCEN mask */
  23. #define CR1_DISCEN_Set              ((u32)0x00000800)
  24. #define CR1_DISCEN_Reset            ((u32)0xFFFFF7FF)
  25. /* ADC JAUTO mask */
  26. #define CR1_JAUTO_Set               ((u32)0x00000400)
  27. #define CR1_JAUTO_Reset             ((u32)0xFFFFFBFF)
  28. /* ADC JDISCEN mask */
  29. #define CR1_JDISCEN_Set             ((u32)0x00001000)
  30. #define CR1_JDISCEN_Reset           ((u32)0xFFFFEFFF)
  31. /* ADC AWDCH mask */
  32. #define CR1_AWDCH_Reset             ((u32)0xFFFFFFE0)
  33. /* ADC Analog watchdog enable mode mask */
  34. #define CR1_AWDMode_Reset           ((u32)0xFF3FFDFF)
  35. /* CR1 register Mask */
  36. #define CR1_CLEAR_Mask              ((u32)0xFFF0FEFF)
  37. /* ADC ADON mask */
  38. #define CR2_ADON_Set                ((u32)0x00000001)
  39. #define CR2_ADON_Reset              ((u32)0xFFFFFFFE)
  40. /* ADC DMA mask */
  41. #define CR2_DMA_Set                 ((u32)0x00000100)
  42. #define CR2_DMA_Reset               ((u32)0xFFFFFEFF)
  43. /* ADC RSTCAL mask */
  44. #define CR2_RSTCAL_Set              ((u32)0x00000008)
  45. /* ADC CAL mask */
  46. #define CR2_CAL_Set                 ((u32)0x00000004)
  47. /* ADC SWSTART mask */
  48. #define CR2_SWSTART_Set             ((u32)0x00400000)
  49. /* ADC EXTTRIG mask */
  50. #define CR2_EXTTRIG_Set             ((u32)0x00100000)
  51. #define CR2_EXTTRIG_Reset           ((u32)0xFFEFFFFF)
  52. /* ADC Software start mask */
  53. #define CR2_EXTTRIG_SWSTART_Set     ((u32)0x00500000)
  54. #define CR2_EXTTRIG_SWSTART_Reset   ((u32)0xFFAFFFFF)
  55. /* ADC JEXTSEL mask */
  56. #define CR2_JEXTSEL_Reset           ((u32)0xFFFF8FFF)
  57. /* ADC JEXTTRIG mask */
  58. #define CR2_JEXTTRIG_Set            ((u32)0x00008000)
  59. #define CR2_JEXTTRIG_Reset          ((u32)0xFFFF7FFF)
  60. /* ADC JSWSTART mask */
  61. #define CR2_JSWSTART_Set            ((u32)0x00200000)
  62. /* ADC injected software start mask */
  63. #define CR2_JEXTTRIG_JSWSTART_Set   ((u32)0x00208000)
  64. #define CR2_JEXTTRIG_JSWSTART_Reset ((u32)0xFFDF7FFF)
  65. /* ADC TSPD mask */
  66. #define CR2_TSVREFE_Set             ((u32)0x00800000)
  67. #define CR2_TSVREFE_Reset           ((u32)0xFF7FFFFF)
  68. /* CR2 register Mask */
  69. #define CR2_CLEAR_Mask              ((u32)0xFFF1F7FD)
  70. /* ADC SQx mask */
  71. #define SQR3_SQ_Set                 ((u32)0x0000001F)
  72. #define SQR2_SQ_Set                 ((u32)0x0000001F)
  73. #define SQR1_SQ_Set                 ((u32)0x0000001F)
  74. /* SQR1 register Mask */
  75. #define SQR1_CLEAR_Mask             ((u32)0xFF0FFFFF)
  76. /* ADC JSQx mask */
  77. #define JSQR_JSQ_Set                ((u32)0x0000001F)
  78. /* ADC JL mask */
  79. #define JSQR_JL_Set                 ((u32)0x00300000)
  80. #define JSQR_JL_Reset               ((u32)0xFFCFFFFF)
  81. /* ADC SMPx mask */
  82. #define SMPR1_SMP_Set               ((u32)0x00000007)
  83. #define SMPR2_SMP_Set               ((u32)0x00000007)
  84. /* ADC JDRx registers offset */
  85. #define JDR_Offset                  ((u8)0x28)
  86. /* ADC1 DR register base address */
  87. #define DR_ADDRESS                  ((u32)0x4001244C)
  88. /* Private macro -------------------------------------------------------------*/
  89. /* Private variables ---------------------------------------------------------*/
  90. /* Private function prototypes -----------------------------------------------*/
  91. /* Private functions ---------------------------------------------------------*/
  92. /*******************************************************************************
  93. * Function Name  : ADC_DeInit
  94. * Description    : Deinitializes the ADCx peripheral registers to their default
  95. *                  reset values.
  96. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  97. * Output         : None
  98. * Return         : None
  99. *******************************************************************************/
  100. void ADC_DeInit(ADC_TypeDef* ADCx)
  101. {
  102.   /* Check the parameters */
  103.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  104.   switch (*(u32*)&ADCx)
  105.   {
  106.     case ADC1_BASE:
  107.       /* Enable ADC1 reset state */
  108.       RCC_APB2PeriphResetCmd(RCC_APB2Periph_ADC1, ENABLE);
  109.       /* Release ADC1 from reset state */
  110.       RCC_APB2PeriphResetCmd(RCC_APB2Periph_ADC1, DISABLE);
  111.       break;
  112.     
  113.     case ADC2_BASE:
  114.       /* Enable ADC2 reset state */
  115.       RCC_APB2PeriphResetCmd(RCC_APB2Periph_ADC2, ENABLE);
  116.       /* Release ADC2 from reset state */
  117.       RCC_APB2PeriphResetCmd(RCC_APB2Periph_ADC2, DISABLE);
  118.       break;
  119.       
  120.     case ADC3_BASE:
  121.       /* Enable ADC3 reset state */
  122.       RCC_APB2PeriphResetCmd(RCC_APB2Periph_ADC3, ENABLE);
  123.       /* Release ADC3 from reset state */
  124.       RCC_APB2PeriphResetCmd(RCC_APB2Periph_ADC3, DISABLE);
  125.       break; 
  126.     default:
  127.       break;
  128.   }
  129. }
  130. /*******************************************************************************
  131. * Function Name  : ADC_Init
  132. * Description    : Initializes the ADCx peripheral according to the specified parameters
  133. *                  in the ADC_InitStruct.
  134. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  135. *                  - ADC_InitStruct: pointer to an ADC_InitTypeDef structure that
  136. *                    contains the configuration information for the specified
  137. *                    ADC peripheral.
  138. * Output         : None
  139. * Return         : None
  140. ******************************************************************************/
  141. void ADC_Init(ADC_TypeDef* ADCx, ADC_InitTypeDef* ADC_InitStruct)
  142. {
  143.   u32 tmpreg1 = 0;
  144.   u8 tmpreg2 = 0;
  145.   /* Check the parameters */
  146.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  147.   assert_param(IS_ADC_MODE(ADC_InitStruct->ADC_Mode));
  148.   assert_param(IS_FUNCTIONAL_STATE(ADC_InitStruct->ADC_ScanConvMode));
  149.   assert_param(IS_FUNCTIONAL_STATE(ADC_InitStruct->ADC_ContinuousConvMode));       
  150.   assert_param(IS_ADC_EXT_TRIG(ADC_InitStruct->ADC_ExternalTrigConv));   
  151.   assert_param(IS_ADC_DATA_ALIGN(ADC_InitStruct->ADC_DataAlign)); 
  152.   assert_param(IS_ADC_REGULAR_LENGTH(ADC_InitStruct->ADC_NbrOfChannel));
  153.   /*---------------------------- ADCx CR1 Configuration -----------------*/
  154.   /* Get the ADCx CR1 value */
  155.   tmpreg1 = ADCx->CR1;
  156.   /* Clear DUALMOD and SCAN bits */
  157.   tmpreg1 &= CR1_CLEAR_Mask;
  158.   /* Configure ADCx: Dual mode and scan conversion mode */
  159.   /* Set DUALMOD bits according to ADC_Mode value */
  160.   /* Set SCAN bit according to ADC_ScanConvMode value */
  161.   tmpreg1 |= (u32)(ADC_InitStruct->ADC_Mode | ((u32)ADC_InitStruct->ADC_ScanConvMode << 8));
  162.   /* Write to ADCx CR1 */
  163.   ADCx->CR1 = tmpreg1;
  164.   /*---------------------------- ADCx CR2 Configuration -----------------*/
  165.   /* Get the ADCx CR2 value */
  166.   tmpreg1 = ADCx->CR2;
  167.   /* Clear CONT, ALIGN and EXTSEL bits */
  168.   tmpreg1 &= CR2_CLEAR_Mask;
  169.   /* Configure ADCx: external trigger event and continuous conversion mode */
  170.   /* Set ALIGN bit according to ADC_DataAlign value */
  171.   /* Set EXTSEL bits according to ADC_ExternalTrigConv value */
  172.   /* Set CONT bit according to ADC_ContinuousConvMode value */
  173.   tmpreg1 |= (u32)(ADC_InitStruct->ADC_DataAlign | ADC_InitStruct->ADC_ExternalTrigConv |
  174.             ((u32)ADC_InitStruct->ADC_ContinuousConvMode << 1));
  175.   /* Write to ADCx CR2 */
  176.   ADCx->CR2 = tmpreg1;
  177.   /*---------------------------- ADCx SQR1 Configuration -----------------*/
  178.   /* Get the ADCx SQR1 value */
  179.   tmpreg1 = ADCx->SQR1;
  180.   /* Clear L bits */
  181.   tmpreg1 &= SQR1_CLEAR_Mask;
  182.   /* Configure ADCx: regular channel sequence length */
  183.   /* Set L bits according to ADC_NbrOfChannel value */
  184.   tmpreg2 |= (ADC_InitStruct->ADC_NbrOfChannel - 1);
  185.   tmpreg1 |= ((u32)tmpreg2 << 20);
  186.   /* Write to ADCx SQR1 */
  187.   ADCx->SQR1 = tmpreg1;
  188. }
  189. /*******************************************************************************
  190. * Function Name  : ADC_StructInit
  191. * Description    : Fills each ADC_InitStruct member with its default value.
  192. * Input          : ADC_InitStruct : pointer to an ADC_InitTypeDef structure
  193. *                  which will be initialized.
  194. * Output         : None
  195. * Return         : None
  196. *******************************************************************************/
  197. void ADC_StructInit(ADC_InitTypeDef* ADC_InitStruct)
  198. {
  199.   /* Reset ADC init structure parameters values */
  200.   /* Initialize the ADC_Mode member */
  201.   ADC_InitStruct->ADC_Mode = ADC_Mode_Independent;
  202.   /* initialize the ADC_ScanConvMode member */
  203.   ADC_InitStruct->ADC_ScanConvMode = DISABLE;
  204.   /* Initialize the ADC_ContinuousConvMode member */
  205.   ADC_InitStruct->ADC_ContinuousConvMode = DISABLE;
  206.   /* Initialize the ADC_ExternalTrigConv member */
  207.   ADC_InitStruct->ADC_ExternalTrigConv = ADC_ExternalTrigConv_T1_CC1;
  208.   /* Initialize the ADC_DataAlign member */
  209.   ADC_InitStruct->ADC_DataAlign = ADC_DataAlign_Right;
  210.   /* Initialize the ADC_NbrOfChannel member */
  211.   ADC_InitStruct->ADC_NbrOfChannel = 1;
  212. }
  213. /*******************************************************************************
  214. * Function Name  : ADC_Cmd
  215. * Description    : Enables or disables the specified ADC peripheral.
  216. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  217. *                  - NewState: new state of the ADCx peripheral. This parameter
  218. *                    can be: ENABLE or DISABLE.
  219. * Output         : None
  220. * Return         : None
  221. *******************************************************************************/
  222. void ADC_Cmd(ADC_TypeDef* ADCx, FunctionalState NewState)
  223. {
  224.   /* Check the parameters */
  225.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  226.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  227.   if (NewState != DISABLE)
  228.   {
  229.     /* Set the ADON bit to wake up the ADC from power down mode */
  230.     ADCx->CR2 |= CR2_ADON_Set;
  231.   }
  232.   else
  233.   {
  234.     /* Disable the selected ADC peripheral */
  235.     ADCx->CR2 &= CR2_ADON_Reset;
  236.   }
  237. }
  238. /*******************************************************************************
  239. * Function Name  : ADC_DMACmd
  240. * Description    : Enables or disables the specified ADC DMA request.
  241. * Input          : - ADCx: where x can be 1 or 3 to select the ADC peripheral.
  242. *                    Note: ADC2 hasn't a DMA capability.
  243. *                  - NewState: new state of the selected ADC DMA transfer.
  244. *                    This parameter can be: ENABLE or DISABLE.
  245. * Output         : None
  246. * Return         : None
  247. *******************************************************************************/
  248. void ADC_DMACmd(ADC_TypeDef* ADCx, FunctionalState NewState)
  249. {
  250.   /* Check the parameters */
  251.   assert_param(IS_ADC_DMA_PERIPH(ADCx));
  252.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  253.   if (NewState != DISABLE)
  254.   {
  255.     /* Enable the selected ADC DMA request */
  256.     ADCx->CR2 |= CR2_DMA_Set;
  257.   }
  258.   else
  259.   {
  260.     /* Disable the selected ADC DMA request */
  261.     ADCx->CR2 &= CR2_DMA_Reset;
  262.   }
  263. }
  264. /*******************************************************************************
  265. * Function Name  : ADC_ITConfig
  266. * Description    : Enables or disables the specified ADC interrupts.
  267. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  268. *                  - ADC_IT: specifies the ADC interrupt sources to be enabled
  269. *                    or disabled. 
  270. *                    This parameter can be any combination of the following values:
  271. *                       - ADC_IT_EOC: End of conversion interrupt mask
  272. *                       - ADC_IT_AWD: Analog watchdog interrupt mask
  273. *                       - ADC_IT_JEOC: End of injected conversion interrupt mask
  274. *                  - NewState: new state of the specified ADC interrupts.
  275. *                    This parameter can be: ENABLE or DISABLE.
  276. * Output         : None
  277. * Return         : None
  278. *******************************************************************************/
  279. void ADC_ITConfig(ADC_TypeDef* ADCx, u16 ADC_IT, FunctionalState NewState)
  280. {
  281.   u8 itmask = 0;
  282.   /* Check the parameters */
  283.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  284.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  285.   assert_param(IS_ADC_IT(ADC_IT));
  286.   /* Get the ADC IT index */
  287.   itmask = (u8)ADC_IT;
  288.   if (NewState != DISABLE)
  289.   {
  290.     /* Enable the selected ADC interrupts */
  291.     ADCx->CR1 |= itmask;
  292.   }
  293.   else
  294.   {
  295.     /* Disable the selected ADC interrupts */
  296.     ADCx->CR1 &= (~(u32)itmask);
  297.   }
  298. }
  299. /*******************************************************************************
  300. * Function Name  : ADC_ResetCalibration
  301. * Description    : Resets the selected ADC calibration registers.
  302. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  303. * Output         : None
  304. * Return         : None
  305. *******************************************************************************/
  306. void ADC_ResetCalibration(ADC_TypeDef* ADCx)
  307. {
  308.   /* Check the parameters */
  309.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  310.   /* Resets the selected ADC calibartion registers */  
  311.   ADCx->CR2 |= CR2_RSTCAL_Set;
  312. }
  313. /*******************************************************************************
  314. * Function Name  : ADC_GetResetCalibrationStatus
  315. * Description    : Gets the selected ADC reset calibration registers status.
  316. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  317. * Output         : None
  318. * Return         : The new state of ADC reset calibration registers (SET or RESET).
  319. *******************************************************************************/
  320. FlagStatus ADC_GetResetCalibrationStatus(ADC_TypeDef* ADCx)
  321. {
  322.   FlagStatus bitstatus = RESET;
  323.   /* Check the parameters */
  324.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  325.   /* Check the status of RSTCAL bit */
  326.   if ((ADCx->CR2 & CR2_RSTCAL_Set) != (u32)RESET)
  327.   {
  328.     /* RSTCAL bit is set */
  329.     bitstatus = SET;
  330.   }
  331.   else
  332.   {
  333.     /* RSTCAL bit is reset */
  334.     bitstatus = RESET;
  335.   }
  336.   /* Return the RSTCAL bit status */
  337.   return  bitstatus;
  338. }
  339. /*******************************************************************************
  340. * Function Name  : ADC_StartCalibration
  341. * Description    : Starts the selected ADC calibration process.
  342. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  343. * Output         : None
  344. * Return         : None
  345. *******************************************************************************/
  346. void ADC_StartCalibration(ADC_TypeDef* ADCx)
  347. {
  348.   /* Check the parameters */
  349.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  350.   /* Enable the selected ADC calibration process */  
  351.   ADCx->CR2 |= CR2_CAL_Set;
  352. }
  353. /*******************************************************************************
  354. * Function Name  : ADC_GetCalibrationStatus
  355. * Description    : Gets the selected ADC calibration status.
  356. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  357. * Output         : None
  358. * Return         : The new state of ADC calibration (SET or RESET).
  359. *******************************************************************************/
  360. FlagStatus ADC_GetCalibrationStatus(ADC_TypeDef* ADCx)
  361. {
  362.   FlagStatus bitstatus = RESET;
  363.   /* Check the parameters */
  364.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  365.   /* Check the status of CAL bit */
  366.   if ((ADCx->CR2 & CR2_CAL_Set) != (u32)RESET)
  367.   {
  368.     /* CAL bit is set: calibration on going */
  369.     bitstatus = SET;
  370.   }
  371.   else
  372.   {
  373.     /* CAL bit is reset: end of calibration */
  374.     bitstatus = RESET;
  375.   }
  376.   /* Return the CAL bit status */
  377.   return  bitstatus;
  378. }
  379. /*******************************************************************************
  380. * Function Name  : ADC_SoftwareStartConvCmd
  381. * Description    : Enables or disables the selected ADC software start conversion .
  382. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  383. *                  - NewState: new state of the selected ADC software start conversion.
  384. *                    This parameter can be: ENABLE or DISABLE.
  385. * Output         : None
  386. * Return         : None
  387. *******************************************************************************/
  388. void ADC_SoftwareStartConvCmd(ADC_TypeDef* ADCx, FunctionalState NewState)
  389. {
  390.   /* Check the parameters */
  391.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  392.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  393.   if (NewState != DISABLE)
  394.   {
  395.     /* Enable the selected ADC conversion on external event and start the selected
  396.        ADC conversion */
  397.     ADCx->CR2 |= CR2_EXTTRIG_SWSTART_Set;
  398.   }
  399.   else
  400.   {
  401.     /* Disable the selected ADC conversion on external event and stop the selected
  402.        ADC conversion */
  403.     ADCx->CR2 &= CR2_EXTTRIG_SWSTART_Reset;
  404.   }
  405. }
  406. /*******************************************************************************
  407. * Function Name  : ADC_GetSoftwareStartConvStatus
  408. * Description    : Gets the selected ADC Software start conversion Status.
  409. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  410. * Output         : None
  411. * Return         : The new state of ADC software start conversion (SET or RESET).
  412. *******************************************************************************/
  413. FlagStatus ADC_GetSoftwareStartConvStatus(ADC_TypeDef* ADCx)
  414. {
  415.   FlagStatus bitstatus = RESET;
  416.   /* Check the parameters */
  417.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  418.   /* Check the status of SWSTART bit */
  419.   if ((ADCx->CR2 & CR2_SWSTART_Set) != (u32)RESET)
  420.   {
  421.     /* SWSTART bit is set */
  422.     bitstatus = SET;
  423.   }
  424.   else
  425.   {
  426.     /* SWSTART bit is reset */
  427.     bitstatus = RESET;
  428.   }
  429.   /* Return the SWSTART bit status */
  430.   return  bitstatus;
  431. }
  432. /*******************************************************************************
  433. * Function Name  : ADC_DiscModeChannelCountConfig
  434. * Description    : Configures the discontinuous mode for the selected ADC regular
  435. *                  group channel.
  436. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  437. *                  - Number: specifies the discontinuous mode regular channel
  438. *                    count value. This number must be between 1 and 8.
  439. * Output         : None
  440. * Return         : None
  441. *******************************************************************************/
  442. void ADC_DiscModeChannelCountConfig(ADC_TypeDef* ADCx, u8 Number)
  443. {
  444.   u32 tmpreg1 = 0;
  445.   u32 tmpreg2 = 0;
  446.   /* Check the parameters */
  447.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  448.   assert_param(IS_ADC_REGULAR_DISC_NUMBER(Number));
  449.   /* Get the old register value */
  450.   tmpreg1 = ADCx->CR1;
  451.   /* Clear the old discontinuous mode channel count */
  452.   tmpreg1 &= CR1_DISCNUM_Reset;
  453.   /* Set the discontinuous mode channel count */
  454.   tmpreg2 = Number - 1;
  455.   tmpreg1 |= tmpreg2 << 13;
  456.   /* Store the new register value */
  457.   ADCx->CR1 = tmpreg1;
  458. }
  459. /*******************************************************************************
  460. * Function Name  : ADC_DiscModeCmd
  461. * Description    : Enables or disables the discontinuous mode on regular group
  462. *                  channel for the specified ADC
  463. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  464. *                  - NewState: new state of the selected ADC discontinuous mode
  465. *                    on regular group channel.
  466. *                    This parameter can be: ENABLE or DISABLE.
  467. * Output         : None
  468. * Return         : None
  469. *******************************************************************************/
  470. void ADC_DiscModeCmd(ADC_TypeDef* ADCx, FunctionalState NewState)
  471. {
  472.   /* Check the parameters */
  473.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  474.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  475.   if (NewState != DISABLE)
  476.   {
  477.     /* Enable the selected ADC regular discontinuous mode */
  478.     ADCx->CR1 |= CR1_DISCEN_Set;
  479.   }
  480.   else
  481.   {
  482.     /* Disable the selected ADC regular discontinuous mode */
  483.     ADCx->CR1 &= CR1_DISCEN_Reset;
  484.   }
  485. }
  486. /*******************************************************************************
  487. * Function Name  : ADC_RegularChannelConfig
  488. * Description    : Configures for the selected ADC regular channel its corresponding
  489. *                  rank in the sequencer and its sample time.
  490. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  491. *                  - ADC_Channel: the ADC channel to configure. 
  492. *                    This parameter can be one of the following values:
  493. *                       - ADC_Channel_0: ADC Channel0 selected
  494. *                       - ADC_Channel_1: ADC Channel1 selected
  495. *                       - ADC_Channel_2: ADC Channel2 selected
  496. *                       - ADC_Channel_3: ADC Channel3 selected
  497. *                       - ADC_Channel_4: ADC Channel4 selected
  498. *                       - ADC_Channel_5: ADC Channel5 selected
  499. *                       - ADC_Channel_6: ADC Channel6 selected
  500. *                       - ADC_Channel_7: ADC Channel7 selected
  501. *                       - ADC_Channel_8: ADC Channel8 selected
  502. *                       - ADC_Channel_9: ADC Channel9 selected
  503. *                       - ADC_Channel_10: ADC Channel10 selected
  504. *                       - ADC_Channel_11: ADC Channel11 selected
  505. *                       - ADC_Channel_12: ADC Channel12 selected
  506. *                       - ADC_Channel_13: ADC Channel13 selected
  507. *                       - ADC_Channel_14: ADC Channel14 selected
  508. *                       - ADC_Channel_15: ADC Channel15 selected
  509. *                       - ADC_Channel_16: ADC Channel16 selected
  510. *                       - ADC_Channel_17: ADC Channel17 selected
  511. *                  - Rank: The rank in the regular group sequencer. This parameter
  512. *                    must be between 1 to 16.
  513. *                  - ADC_SampleTime: The sample time value to be set for the
  514. *                    selected channel. 
  515. *                    This parameter can be one of the following values:
  516. *                       - ADC_SampleTime_1Cycles5: Sample time equal to 1.5 cycles
  517. *                       - ADC_SampleTime_7Cycles5: Sample time equal to 7.5 cycles
  518. *                       - ADC_SampleTime_13Cycles5: Sample time equal to 13.5 cycles
  519. *                       - ADC_SampleTime_28Cycles5: Sample time equal to 28.5 cycles
  520. *                       - ADC_SampleTime_41Cycles5: Sample time equal to 41.5 cycles
  521. *                       - ADC_SampleTime_55Cycles5: Sample time equal to 55.5 cycles
  522. *                       - ADC_SampleTime_71Cycles5: Sample time equal to 71.5 cycles
  523. *                       - ADC_SampleTime_239Cycles5: Sample time equal to 239.5 cycles
  524. * Output         : None
  525. * Return         : None
  526. *******************************************************************************/
  527. void ADC_RegularChannelConfig(ADC_TypeDef* ADCx, u8 ADC_Channel, u8 Rank, u8 ADC_SampleTime)
  528. {
  529.   u32 tmpreg1 = 0, tmpreg2 = 0;
  530.   /* Check the parameters */
  531.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  532.   assert_param(IS_ADC_CHANNEL(ADC_Channel));
  533.   assert_param(IS_ADC_REGULAR_RANK(Rank));
  534.   assert_param(IS_ADC_SAMPLE_TIME(ADC_SampleTime));
  535.   /* if ADC_Channel_10 ... ADC_Channel_17 is selected */
  536.   if (ADC_Channel > ADC_Channel_9)
  537.   {
  538.     /* Get the old register value */
  539.     tmpreg1 = ADCx->SMPR1;
  540.     /* Calculate the mask to clear */
  541.     tmpreg2 = SMPR1_SMP_Set << (3 * (ADC_Channel - 10));
  542.     /* Clear the old discontinuous mode channel count */
  543.     tmpreg1 &= ~tmpreg2;
  544.     /* Calculate the mask to set */
  545.     tmpreg2 = (u32)ADC_SampleTime << (3 * (ADC_Channel - 10));
  546.     /* Set the discontinuous mode channel count */
  547.     tmpreg1 |= tmpreg2;
  548.     /* Store the new register value */
  549.     ADCx->SMPR1 = tmpreg1;
  550.   }
  551.   else /* ADC_Channel include in ADC_Channel_[0..9] */
  552.   {
  553.     /* Get the old register value */
  554.     tmpreg1 = ADCx->SMPR2;
  555.     /* Calculate the mask to clear */
  556.     tmpreg2 = SMPR2_SMP_Set << (3 * ADC_Channel);
  557.     /* Clear the old discontinuous mode channel count */
  558.     tmpreg1 &= ~tmpreg2;
  559.     /* Calculate the mask to set */
  560.     tmpreg2 = (u32)ADC_SampleTime << (3 * ADC_Channel);
  561.     /* Set the discontinuous mode channel count */
  562.     tmpreg1 |= tmpreg2;
  563.     /* Store the new register value */
  564.     ADCx->SMPR2 = tmpreg1;
  565.   }
  566.   /* For Rank 1 to 6 */
  567.   if (Rank < 7)
  568.   {
  569.     /* Get the old register value */
  570.     tmpreg1 = ADCx->SQR3;
  571.     /* Calculate the mask to clear */
  572.     tmpreg2 = SQR3_SQ_Set << (5 * (Rank - 1));
  573.     /* Clear the old SQx bits for the selected rank */
  574.     tmpreg1 &= ~tmpreg2;
  575.     /* Calculate the mask to set */
  576.     tmpreg2 = (u32)ADC_Channel << (5 * (Rank - 1));
  577.     /* Set the SQx bits for the selected rank */
  578.     tmpreg1 |= tmpreg2;
  579.     /* Store the new register value */
  580.     ADCx->SQR3 = tmpreg1;
  581.   }
  582.   /* For Rank 7 to 12 */
  583.   else if (Rank < 13)
  584.   {
  585.     /* Get the old register value */
  586.     tmpreg1 = ADCx->SQR2;
  587.     /* Calculate the mask to clear */
  588.     tmpreg2 = SQR2_SQ_Set << (5 * (Rank - 7));
  589.     /* Clear the old SQx bits for the selected rank */
  590.     tmpreg1 &= ~tmpreg2;
  591.     /* Calculate the mask to set */
  592.     tmpreg2 = (u32)ADC_Channel << (5 * (Rank - 7));
  593.     /* Set the SQx bits for the selected rank */
  594.     tmpreg1 |= tmpreg2;
  595.     /* Store the new register value */
  596.     ADCx->SQR2 = tmpreg1;
  597.   }
  598.   /* For Rank 13 to 16 */
  599.   else
  600.   {
  601.     /* Get the old register value */
  602.     tmpreg1 = ADCx->SQR1;
  603.     /* Calculate the mask to clear */
  604.     tmpreg2 = SQR1_SQ_Set << (5 * (Rank - 13));
  605.     /* Clear the old SQx bits for the selected rank */
  606.     tmpreg1 &= ~tmpreg2;
  607.     /* Calculate the mask to set */
  608.     tmpreg2 = (u32)ADC_Channel << (5 * (Rank - 13));
  609.     /* Set the SQx bits for the selected rank */
  610.     tmpreg1 |= tmpreg2;
  611.     /* Store the new register value */
  612.     ADCx->SQR1 = tmpreg1;
  613.   }
  614. }
  615. /*******************************************************************************
  616. * Function Name  : ADC_ExternalTrigConvCmd
  617. * Description    : Enables or disables the ADCx conversion through external trigger.
  618. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  619. *                  - NewState: new state of the selected ADC external trigger
  620. *                    start of conversion.
  621. *                    This parameter can be: ENABLE or DISABLE.
  622. * Output         : None
  623. * Return         : None
  624. *******************************************************************************/
  625. void ADC_ExternalTrigConvCmd(ADC_TypeDef* ADCx, FunctionalState NewState)
  626. {
  627.   /* Check the parameters */
  628.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  629.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  630.   if (NewState != DISABLE)
  631.   {
  632.     /* Enable the selected ADC conversion on external event */
  633.     ADCx->CR2 |= CR2_EXTTRIG_Set;
  634.   }
  635.   else
  636.   {
  637.     /* Disable the selected ADC conversion on external event */
  638.     ADCx->CR2 &= CR2_EXTTRIG_Reset;
  639.   }
  640. }
  641. /*******************************************************************************
  642. * Function Name  : ADC_GetConversionValue
  643. * Description    : Returns the last ADCx conversion result data for regular channel.
  644. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  645. * Output         : None
  646. * Return         : The Data conversion value.
  647. *******************************************************************************/
  648. u16 ADC_GetConversionValue(ADC_TypeDef* ADCx)
  649. {
  650.   /* Check the parameters */
  651.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  652.   /* Return the selected ADC conversion value */
  653.   return (u16) ADCx->DR;
  654. }
  655. /*******************************************************************************
  656. * Function Name  : ADC_GetDualModeConversionValue
  657. * Description    : Returns the last ADC1 and ADC2 conversion result data in dual mode.
  658. * Output         : None
  659. * Return         : The Data conversion value.
  660. *******************************************************************************/
  661. u32 ADC_GetDualModeConversionValue(void)
  662. {
  663.   /* Return the dual mode conversion value */
  664.   return (*(vu32 *) DR_ADDRESS);
  665. }
  666. /*******************************************************************************
  667. * Function Name  : ADC_AutoInjectedConvCmd
  668. * Description    : Enables or disables the selected ADC automatic injected group
  669. *                  conversion after regular one.
  670. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  671. *                  - NewState: new state of the selected ADC auto injected
  672. *                    conversion
  673. *                    This parameter can be: ENABLE or DISABLE.
  674. * Output         : None
  675. * Return         : None
  676. *******************************************************************************/
  677. void ADC_AutoInjectedConvCmd(ADC_TypeDef* ADCx, FunctionalState NewState)
  678. {
  679.   /* Check the parameters */
  680.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  681.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  682.   if (NewState != DISABLE)
  683.   {
  684.     /* Enable the selected ADC automatic injected group conversion */
  685.     ADCx->CR1 |= CR1_JAUTO_Set;
  686.   }
  687.   else
  688.   {
  689.     /* Disable the selected ADC automatic injected group conversion */
  690.     ADCx->CR1 &= CR1_JAUTO_Reset;
  691.   }
  692. }
  693. /*******************************************************************************
  694. * Function Name  : ADC_InjectedDiscModeCmd
  695. * Description    : Enables or disables the discontinuous mode for injected group
  696. *                  channel for the specified ADC
  697. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  698. *                  - NewState: new state of the selected ADC discontinuous mode
  699. *                    on injected group channel.
  700. *                    This parameter can be: ENABLE or DISABLE.
  701. * Output         : None
  702. * Return         : None
  703. *******************************************************************************/
  704. void ADC_InjectedDiscModeCmd(ADC_TypeDef* ADCx, FunctionalState NewState)
  705. {
  706.   /* Check the parameters */
  707.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  708.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  709.   if (NewState != DISABLE)
  710.   {
  711.     /* Enable the selected ADC injected discontinuous mode */
  712.     ADCx->CR1 |= CR1_JDISCEN_Set;
  713.   }
  714.   else
  715.   {
  716.     /* Disable the selected ADC injected discontinuous mode */
  717.     ADCx->CR1 &= CR1_JDISCEN_Reset;
  718.   }
  719. }
  720. /*******************************************************************************
  721. * Function Name  : ADC_ExternalTrigInjectedConvConfig
  722. * Description    : Configures the ADCx external trigger for injected channels conversion.
  723. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  724. *                  - ADC_ExternalTrigInjecConv: specifies the ADC trigger to
  725. *                    start injected conversion. 
  726. *                    This parameter can be one of the following values:
  727. *                       - ADC_ExternalTrigInjecConv_T1_TRGO: Timer1 TRGO event 
  728. *                         selected (for ADC1, ADC2 and ADC3)
  729. *                       - ADC_ExternalTrigInjecConv_T1_CC4: Timer1 capture
  730. *                         compare4 selected (for ADC1, ADC2 and ADC3)
  731. *                       - ADC_ExternalTrigInjecConv_T2_TRGO: Timer2 TRGO event
  732. *                         selected (for ADC1 and ADC2)
  733. *                       - ADC_External TrigInjecConv_T2_CC1: Timer2 capture
  734. *                         compare1 selected (for ADC1 and ADC2)
  735. *                       - ADC_ExternalTrigInjecConv_T3_CC4: Timer3 capture
  736. *                         compare4 selected (for ADC1 and ADC2)
  737. *                       - ADC_ExternalTrigInjecConv_T4_TRGO: Timer4 TRGO event
  738. *                         selected (for ADC1 and ADC2)
  739. *                       - ADC_ExternalTrigInjecConv_Ext_IT15_TIM8_CC4: External
  740. *                         interrupt line 15 or Timer8 capture compare4 event selected
  741. *                         (for ADC1 and ADC2)                       
  742. *                       - ADC_External TrigInjecConv_T4_CC3: Timer4 capture
  743. *                         compare3 selected (for ADC3 only)
  744. *                       - ADC_External TrigInjecConv_T8_CC2: Timer8 capture
  745. *                         compare2 selected (for ADC3 only)                         
  746. *                       - ADC_External TrigInjecConv_T8_CC4: Timer8 capture
  747. *                         compare4 selected (for ADC3 only)
  748. *                       - ADC_ExternalTrigInjecConv_T5_TRGO: Timer5 TRGO event
  749. *                         selected (for ADC3 only)                         
  750. *                       - ADC_External TrigInjecConv_T5_CC4: Timer5 capture
  751. *                         compare4 selected (for ADC3 only)                        
  752. *                       - ADC_ExternalTrigInjecConv_None: Injected conversion
  753. *                         started by software and not by external trigger (for 
  754. *                         ADC1, ADC2 and ADC3)
  755. * Output         : None
  756. * Return         : None
  757. *******************************************************************************/
  758. void ADC_ExternalTrigInjectedConvConfig(ADC_TypeDef* ADCx, u32 ADC_ExternalTrigInjecConv)
  759. {
  760.   u32 tmpreg = 0;
  761.   /* Check the parameters */
  762.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  763.   assert_param(IS_ADC_EXT_INJEC_TRIG(ADC_ExternalTrigInjecConv));
  764.   /* Get the old register value */
  765.   tmpreg = ADCx->CR2;
  766.   /* Clear the old external event selection for injected group */
  767.   tmpreg &= CR2_JEXTSEL_Reset;
  768.   /* Set the external event selection for injected group */
  769.   tmpreg |= ADC_ExternalTrigInjecConv;
  770.   /* Store the new register value */
  771.   ADCx->CR2 = tmpreg;
  772. }
  773. /*******************************************************************************
  774. * Function Name  : ADC_ExternalTrigInjectedConvCmd
  775. * Description    : Enables or disables the ADCx injected channels conversion
  776. *                  through external trigger
  777. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  778. *                  - NewState: new state of the selected ADC external trigger
  779. *                    start of injected conversion.
  780. *                    This parameter can be: ENABLE or DISABLE.
  781. * Output         : None
  782. * Return         : None
  783. *******************************************************************************/
  784. void ADC_ExternalTrigInjectedConvCmd(ADC_TypeDef* ADCx, FunctionalState NewState)
  785. {
  786.   /* Check the parameters */
  787.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  788.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  789.   if (NewState != DISABLE)
  790.   {
  791.     /* Enable the selected ADC external event selection for injected group */
  792.     ADCx->CR2 |= CR2_JEXTTRIG_Set;
  793.   }
  794.   else
  795.   {
  796.     /* Disable the selected ADC external event selection for injected group */
  797.     ADCx->CR2 &= CR2_JEXTTRIG_Reset;
  798.   }
  799. }
  800. /*******************************************************************************
  801. * Function Name  : ADC_SoftwareStartInjectedConvCmd
  802. * Description    : Enables or disables the selected ADC start of the injected 
  803. *                  channels conversion.
  804. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  805. *                  - NewState: new state of the selected ADC software start
  806. *                    injected conversion.
  807. *                    This parameter can be: ENABLE or DISABLE.
  808. * Output         : None
  809. * Return         : None
  810. *******************************************************************************/
  811. void ADC_SoftwareStartInjectedConvCmd(ADC_TypeDef* ADCx, FunctionalState NewState)
  812. {
  813.   /* Check the parameters */
  814.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  815.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  816.   if (NewState != DISABLE)
  817.   {
  818.     /* Enable the selected ADC conversion for injected group on external event and start the selected
  819.        ADC injected conversion */
  820.     ADCx->CR2 |= CR2_JEXTTRIG_JSWSTART_Set;
  821.   }
  822.   else
  823.   {
  824.     /* Disable the selected ADC conversion on external event for injected group and stop the selected
  825.        ADC injected conversion */
  826.     ADCx->CR2 &= CR2_JEXTTRIG_JSWSTART_Reset;
  827.   }
  828. }
  829. /*******************************************************************************
  830. * Function Name  : ADC_GetSoftwareStartInjectedConvCmdStatus
  831. * Description    : Gets the selected ADC Software start injected conversion Status.
  832. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  833. * Output         : None
  834. * Return         : The new state of ADC software start injected conversion (SET or RESET).
  835. *******************************************************************************/
  836. FlagStatus ADC_GetSoftwareStartInjectedConvCmdStatus(ADC_TypeDef* ADCx)
  837. {
  838.   FlagStatus bitstatus = RESET;
  839.   /* Check the parameters */
  840.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  841.   /* Check the status of JSWSTART bit */
  842.   if ((ADCx->CR2 & CR2_JSWSTART_Set) != (u32)RESET)
  843.   {
  844.     /* JSWSTART bit is set */
  845.     bitstatus = SET;
  846.   }
  847.   else
  848.   {
  849.     /* JSWSTART bit is reset */
  850.     bitstatus = RESET;
  851.   }
  852.   /* Return the JSWSTART bit status */
  853.   return  bitstatus;
  854. }
  855. /*******************************************************************************
  856. * Function Name  : ADC_InjectedChannelConfig
  857. * Description    : Configures for the selected ADC injected channel its corresponding
  858. *                  rank in the sequencer and its sample time.
  859. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  860. *                  - ADC_Channel: the ADC channel to configure. 
  861. *                    This parameter can be one of the following values:
  862. *                       - ADC_Channel_0: ADC Channel0 selected
  863. *                       - ADC_Channel_1: ADC Channel1 selected
  864. *                       - ADC_Channel_2: ADC Channel2 selected
  865. *                       - ADC_Channel_3: ADC Channel3 selected
  866. *                       - ADC_Channel_4: ADC Channel4 selected
  867. *                       - ADC_Channel_5: ADC Channel5 selected
  868. *                       - ADC_Channel_6: ADC Channel6 selected
  869. *                       - ADC_Channel_7: ADC Channel7 selected
  870. *                       - ADC_Channel_8: ADC Channel8 selected
  871. *                       - ADC_Channel_9: ADC Channel9 selected
  872. *                       - ADC_Channel_10: ADC Channel10 selected
  873. *                       - ADC_Channel_11: ADC Channel11 selected
  874. *                       - ADC_Channel_12: ADC Channel12 selected
  875. *                       - ADC_Channel_13: ADC Channel13 selected
  876. *                       - ADC_Channel_14: ADC Channel14 selected
  877. *                       - ADC_Channel_15: ADC Channel15 selected
  878. *                       - ADC_Channel_16: ADC Channel16 selected
  879. *                       - ADC_Channel_17: ADC Channel17 selected
  880. *                  - Rank: The rank in the injected group sequencer. This parameter
  881. *                    must be between 1 to 4.
  882. *                  - ADC_SampleTime: The sample time value to be set for the
  883. *                    selected channel. 
  884. *                    This parameter can be one of the following values:
  885. *                       - ADC_SampleTime_1Cycles5: Sample time equal to 1.5 cycles
  886. *                       - ADC_SampleTime_7Cycles5: Sample time equal to 7.5 cycles
  887. *                       - ADC_SampleTime_13Cycles5: Sample time equal to 13.5 cycles
  888. *                       - ADC_SampleTime_28Cycles5: Sample time equal to 28.5 cycles
  889. *                       - ADC_SampleTime_41Cycles5: Sample time equal to 41.5 cycles
  890. *                       - ADC_SampleTime_55Cycles5: Sample time equal to 55.5 cycles
  891. *                       - ADC_SampleTime_71Cycles5: Sample time equal to 71.5 cycles
  892. *                       - ADC_SampleTime_239Cycles5: Sample time equal to 239.5 cycles
  893. * Output         : None
  894. * Return         : None
  895. *******************************************************************************/
  896. void ADC_InjectedChannelConfig(ADC_TypeDef* ADCx, u8 ADC_Channel, u8 Rank, u8 ADC_SampleTime)
  897. {
  898.   u32 tmpreg1 = 0, tmpreg2 = 0, tmpreg3 = 0;
  899.   /* Check the parameters */
  900.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  901.   assert_param(IS_ADC_CHANNEL(ADC_Channel));
  902.   assert_param(IS_ADC_INJECTED_RANK(Rank));
  903.   assert_param(IS_ADC_SAMPLE_TIME(ADC_SampleTime));
  904.   /* if ADC_Channel_10 ... ADC_Channel_17 is selected */
  905.   if (ADC_Channel > ADC_Channel_9)
  906.   {
  907.     /* Get the old register value */
  908.     tmpreg1 = ADCx->SMPR1;
  909.     /* Calculate the mask to clear */
  910.     tmpreg2 = SMPR1_SMP_Set << (3*(ADC_Channel - 10));
  911.     /* Clear the old discontinuous mode channel count */
  912.     tmpreg1 &= ~tmpreg2;
  913.     /* Calculate the mask to set */
  914.     tmpreg2 = (u32)ADC_SampleTime << (3*(ADC_Channel - 10));
  915.     /* Set the discontinuous mode channel count */
  916.     tmpreg1 |= tmpreg2;
  917.     /* Store the new register value */
  918.     ADCx->SMPR1 = tmpreg1;
  919.   }
  920.   else /* ADC_Channel include in ADC_Channel_[0..9] */
  921.   {
  922.     /* Get the old register value */
  923.     tmpreg1 = ADCx->SMPR2;
  924.     /* Calculate the mask to clear */
  925.     tmpreg2 = SMPR2_SMP_Set << (3 * ADC_Channel);
  926.     /* Clear the old discontinuous mode channel count */
  927.     tmpreg1 &= ~tmpreg2;
  928.     /* Calculate the mask to set */
  929.     tmpreg2 = (u32)ADC_SampleTime << (3 * ADC_Channel);
  930.     /* Set the discontinuous mode channel count */
  931.     tmpreg1 |= tmpreg2;
  932.     /* Store the new register value */
  933.     ADCx->SMPR2 = tmpreg1;
  934.   }
  935.   /* Rank configuration */
  936.   /* Get the old register value */
  937.   tmpreg1 = ADCx->JSQR;
  938.   /* Get JL value: Number = JL+1 */
  939.   tmpreg3 =  (tmpreg1 & JSQR_JL_Set)>> 20;
  940.   /* Calculate the mask to clear: ((Rank-1)+(4-JL-1)) */
  941.   tmpreg2 = JSQR_JSQ_Set << (5 * (u8)((Rank + 3) - (tmpreg3 + 1)));
  942.   /* Clear the old JSQx bits for the selected rank */
  943.   tmpreg1 &= ~tmpreg2;
  944.   /* Calculate the mask to set: ((Rank-1)+(4-JL-1)) */
  945.   tmpreg2 = (u32)ADC_Channel << (5 * (u8)((Rank + 3) - (tmpreg3 + 1)));
  946.   /* Set the JSQx bits for the selected rank */
  947.   tmpreg1 |= tmpreg2;
  948.   /* Store the new register value */
  949.   ADCx->JSQR = tmpreg1;
  950. }
  951. /*******************************************************************************
  952. * Function Name  : ADC_InjectedSequencerLengthConfig
  953. * Description    : Configures the sequencer length for injected channels
  954. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  955. *                  - Length: The sequencer length. 
  956. *                    This parameter must be a number between 1 to 4.
  957. * Output         : None
  958. * Return         : None
  959. *******************************************************************************/
  960. void ADC_InjectedSequencerLengthConfig(ADC_TypeDef* ADCx, u8 Length)
  961. {
  962.   u32 tmpreg1 = 0;
  963.   u32 tmpreg2 = 0;
  964.   /* Check the parameters */
  965.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  966.   assert_param(IS_ADC_INJECTED_LENGTH(Length));
  967.   
  968.   /* Get the old register value */
  969.   tmpreg1 = ADCx->JSQR;
  970.   /* Clear the old injected sequnence lenght JL bits */
  971.   tmpreg1 &= JSQR_JL_Reset;
  972.   /* Set the injected sequnence lenght JL bits */
  973.   tmpreg2 = Length - 1; 
  974.   tmpreg1 |= tmpreg2 << 20;
  975.   /* Store the new register value */
  976.   ADCx->JSQR = tmpreg1;
  977. }
  978. /*******************************************************************************
  979. * Function Name  : ADC_SetInjectedOffset
  980. * Description    : Set the injected channels conversion value offset
  981. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  982. *                  - ADC_InjectedChannel: the ADC injected channel to set its
  983. *                    offset. 
  984. *                    This parameter can be one of the following values:
  985. *                       - ADC_InjectedChannel_1: Injected Channel1 selected
  986. *                       - ADC_InjectedChannel_2: Injected Channel2 selected
  987. *                       - ADC_InjectedChannel_3: Injected Channel3 selected
  988. *                       - ADC_InjectedChannel_4: Injected Channel4 selected
  989. *                  - Offset: the offset value for the selected ADC injected channel
  990. *                    This parameter must be a 12bit value.
  991. * Output         : None
  992. * Return         : None
  993. *******************************************************************************/
  994. void ADC_SetInjectedOffset(ADC_TypeDef* ADCx, u8 ADC_InjectedChannel, u16 Offset)
  995. {
  996.   /* Check the parameters */
  997.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  998.   assert_param(IS_ADC_INJECTED_CHANNEL(ADC_InjectedChannel));
  999.   assert_param(IS_ADC_OFFSET(Offset));  
  1000.   /* Set the selected injected channel data offset */
  1001.   *((vu32 *)((*(u32*)&ADCx) + ADC_InjectedChannel)) = (u32)Offset;
  1002. }
  1003. /*******************************************************************************
  1004. * Function Name  : ADC_GetInjectedConversionValue
  1005. * Description    : Returns the ADC injected channel conversion result
  1006. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  1007. *                  - ADC_InjectedChannel: the converted ADC injected channel.
  1008. *                    This parameter can be one of the following values:
  1009. *                       - ADC_InjectedChannel_1: Injected Channel1 selected
  1010. *                       - ADC_InjectedChannel_2: Injected Channel2 selected
  1011. *                       - ADC_InjectedChannel_3: Injected Channel3 selected
  1012. *                       - ADC_InjectedChannel_4: Injected Channel4 selected
  1013. * Output         : None
  1014. * Return         : The Data conversion value.
  1015. *******************************************************************************/
  1016. u16 ADC_GetInjectedConversionValue(ADC_TypeDef* ADCx, u8 ADC_InjectedChannel)
  1017. {
  1018.   /* Check the parameters */
  1019.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  1020.   assert_param(IS_ADC_INJECTED_CHANNEL(ADC_InjectedChannel));
  1021.   /* Returns the selected injected channel conversion data value */
  1022.   return (u16) (*(vu32*) (((*(u32*)&ADCx) + ADC_InjectedChannel + JDR_Offset)));
  1023. }
  1024. /*******************************************************************************
  1025. * Function Name  : ADC_AnalogWatchdogCmd
  1026. * Description    : Enables or disables the analog watchdog on single/all regular
  1027. *                  or injected channels
  1028. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  1029. *                  - ADC_AnalogWatchdog: the ADC analog watchdog configuration.
  1030. *                    This parameter can be one of the following values:
  1031. *                       - ADC_AnalogWatchdog_SingleRegEnable: Analog watchdog on
  1032. *                         a single regular channel
  1033. *                       - ADC_AnalogWatchdog_SingleInjecEnable: Analog watchdog on
  1034. *                         a single injected channel
  1035. *                       - ADC_AnalogWatchdog_SingleRegOrInjecEnable: Analog 
  1036. *                         watchdog on a single regular or injected channel
  1037. *                       - ADC_AnalogWatchdog_AllRegEnable: Analog watchdog on
  1038. *                         all regular channel
  1039. *                       - ADC_AnalogWatchdog_AllInjecEnable: Analog watchdog on
  1040. *                         all injected channel
  1041. *                       - ADC_AnalogWatchdog_AllRegAllInjecEnable: Analog watchdog
  1042. *                         on all regular and injected channels
  1043. *                       - ADC_AnalogWatchdog_None: No channel guarded by the
  1044. *                         analog watchdog
  1045. * Output         : None
  1046. * Return         : None   
  1047. *******************************************************************************/
  1048. void ADC_AnalogWatchdogCmd(ADC_TypeDef* ADCx, u32 ADC_AnalogWatchdog)
  1049. {
  1050.   u32 tmpreg = 0;
  1051.   /* Check the parameters */
  1052.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  1053.   assert_param(IS_ADC_ANALOG_WATCHDOG(ADC_AnalogWatchdog));
  1054.   /* Get the old register value */
  1055.   tmpreg = ADCx->CR1;
  1056.   /* Clear AWDEN, AWDENJ and AWDSGL bits */
  1057.   tmpreg &= CR1_AWDMode_Reset;
  1058.   /* Set the analog watchdog enable mode */
  1059.   tmpreg |= ADC_AnalogWatchdog;
  1060.   /* Store the new register value */
  1061.   ADCx->CR1 = tmpreg;
  1062. }
  1063. /*******************************************************************************
  1064. * Function Name  : ADC_AnalogWatchdogThresholdsConfig
  1065. * Description    : Configures the high and low thresholds of the analog watchdog.
  1066. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  1067. *                  - HighThreshold: the ADC analog watchdog High threshold value.
  1068. *                    This parameter must be a 12bit value.
  1069. *                  - LowThreshold: the ADC analog watchdog Low threshold value.
  1070. *                    This parameter must be a 12bit value.
  1071. * Output         : None
  1072. * Return         : None
  1073. *******************************************************************************/
  1074. void ADC_AnalogWatchdogThresholdsConfig(ADC_TypeDef* ADCx, u16 HighThreshold,
  1075.                                         u16 LowThreshold)
  1076. {
  1077.   /* Check the parameters */
  1078.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  1079.   assert_param(IS_ADC_THRESHOLD(HighThreshold));
  1080.   assert_param(IS_ADC_THRESHOLD(LowThreshold));
  1081.   /* Set the ADCx high threshold */
  1082.   ADCx->HTR = HighThreshold;
  1083.   /* Set the ADCx low threshold */
  1084.   ADCx->LTR = LowThreshold;
  1085. }
  1086. /*******************************************************************************
  1087. * Function Name  : ADC_AnalogWatchdogSingleChannelConfig
  1088. * Description    : Configures the analog watchdog guarded single channel
  1089. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  1090. *                  - ADC_Channel: the ADC channel to configure for the analog
  1091. *                    watchdog. 
  1092. *                    This parameter can be one of the following values:
  1093. *                       - ADC_Channel_0: ADC Channel0 selected
  1094. *                       - ADC_Channel_1: ADC Channel1 selected
  1095. *                       - ADC_Channel_2: ADC Channel2 selected
  1096. *                       - ADC_Channel_3: ADC Channel3 selected
  1097. *                       - ADC_Channel_4: ADC Channel4 selected
  1098. *                       - ADC_Channel_5: ADC Channel5 selected
  1099. *                       - ADC_Channel_6: ADC Channel6 selected
  1100. *                       - ADC_Channel_7: ADC Channel7 selected
  1101. *                       - ADC_Channel_8: ADC Channel8 selected
  1102. *                       - ADC_Channel_9: ADC Channel9 selected
  1103. *                       - ADC_Channel_10: ADC Channel10 selected
  1104. *                       - ADC_Channel_11: ADC Channel11 selected
  1105. *                       - ADC_Channel_12: ADC Channel12 selected
  1106. *                       - ADC_Channel_13: ADC Channel13 selected
  1107. *                       - ADC_Channel_14: ADC Channel14 selected
  1108. *                       - ADC_Channel_15: ADC Channel15 selected
  1109. *                       - ADC_Channel_16: ADC Channel16 selected
  1110. *                       - ADC_Channel_17: ADC Channel17 selected
  1111. * Output         : None
  1112. * Return         : None
  1113. *******************************************************************************/
  1114. void ADC_AnalogWatchdogSingleChannelConfig(ADC_TypeDef* ADCx, u8 ADC_Channel)
  1115. {
  1116.   u32 tmpreg = 0;
  1117.   /* Check the parameters */
  1118.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  1119.   assert_param(IS_ADC_CHANNEL(ADC_Channel));
  1120.   /* Get the old register value */
  1121.   tmpreg = ADCx->CR1;
  1122.   /* Clear the Analog watchdog channel select bits */
  1123.   tmpreg &= CR1_AWDCH_Reset;
  1124.   /* Set the Analog watchdog channel */
  1125.   tmpreg |= ADC_Channel;
  1126.   /* Store the new register value */
  1127.   ADCx->CR1 = tmpreg;
  1128. }
  1129. /*******************************************************************************
  1130. * Function Name  : ADC_TempSensorVrefintCmd
  1131. * Description    : Enables or disables the temperature sensor and Vrefint channel.
  1132. * Input          : - NewState: new state of the temperature sensor.
  1133. *                    This parameter can be: ENABLE or DISABLE.
  1134. * Output         : None
  1135. * Return         : None
  1136. *******************************************************************************/
  1137. void ADC_TempSensorVrefintCmd(FunctionalState NewState)
  1138. {
  1139.   /* Check the parameters */
  1140.   assert_param(IS_FUNCTIONAL_STATE(NewState));
  1141.   if (NewState != DISABLE)
  1142.   {
  1143.     /* Enable the temperature sensor and Vrefint channel*/
  1144.     ADC1->CR2 |= CR2_TSVREFE_Set;
  1145.   }
  1146.   else
  1147.   {
  1148.     /* Disable the temperature sensor and Vrefint channel*/
  1149.     ADC1->CR2 &= CR2_TSVREFE_Reset;
  1150.   }
  1151. }
  1152. /*******************************************************************************
  1153. * Function Name  : ADC_GetFlagStatus
  1154. * Description    : Checks whether the specified ADC flag is set or not.
  1155. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  1156. *                  - ADC_FLAG: specifies the flag to check. 
  1157. *                    This parameter can be one of the following values:
  1158. *                       - ADC_FLAG_AWD: Analog watchdog flag
  1159. *                       - ADC_FLAG_EOC: End of conversion flag
  1160. *                       - ADC_FLAG_JEOC: End of injected group conversion flag
  1161. *                       - ADC_FLAG_JSTRT: Start of injected group conversion flag
  1162. *                       - ADC_FLAG_STRT: Start of regular group conversion flag
  1163. * Output         : None
  1164. * Return         : The new state of ADC_FLAG (SET or RESET).
  1165. *******************************************************************************/
  1166. FlagStatus ADC_GetFlagStatus(ADC_TypeDef* ADCx, u8 ADC_FLAG)
  1167. {
  1168.   FlagStatus bitstatus = RESET;
  1169.   /* Check the parameters */
  1170.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  1171.   assert_param(IS_ADC_GET_FLAG(ADC_FLAG));
  1172.   /* Check the status of the specified ADC flag */
  1173.   if ((ADCx->SR & ADC_FLAG) != (u8)RESET)
  1174.   {
  1175.     /* ADC_FLAG is set */
  1176.     bitstatus = SET;
  1177.   }
  1178.   else
  1179.   {
  1180.     /* ADC_FLAG is reset */
  1181.     bitstatus = RESET;
  1182.   }
  1183.   /* Return the ADC_FLAG status */
  1184.   return  bitstatus;
  1185. }
  1186. /*******************************************************************************
  1187. * Function Name  : ADC_ClearFlag
  1188. * Description    : Clears the ADCx's pending flags.
  1189. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  1190. *                  - ADC_FLAG: specifies the flag to clear. 
  1191. *                    This parameter can be any combination of the following values:
  1192. *                       - ADC_FLAG_AWD: Analog watchdog flag
  1193. *                       - ADC_FLAG_EOC: End of conversion flag
  1194. *                       - ADC_FLAG_JEOC: End of injected group conversion flag
  1195. *                       - ADC_FLAG_JSTRT: Start of injected group conversion flag
  1196. *                       - ADC_FLAG_STRT: Start of regular group conversion flag
  1197. * Output         : None
  1198. * Return         : None
  1199. *******************************************************************************/
  1200. void ADC_ClearFlag(ADC_TypeDef* ADCx, u8 ADC_FLAG)
  1201. {
  1202.   /* Check the parameters */
  1203.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  1204.   assert_param(IS_ADC_CLEAR_FLAG(ADC_FLAG));
  1205.   /* Clear the selected ADC flags */
  1206.   ADCx->SR = ~(u32)ADC_FLAG;
  1207. }
  1208. /*******************************************************************************
  1209. * Function Name  : ADC_GetITStatus
  1210. * Description    : Checks whether the specified ADC interrupt has occurred or not.
  1211. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  1212. *                  - ADC_IT: specifies the ADC interrupt source to check. 
  1213. *                    This parameter can be one of the following values:
  1214. *                       - ADC_IT_EOC: End of conversion interrupt mask
  1215. *                       - ADC_IT_AWD: Analog watchdog interrupt mask
  1216. *                       - ADC_IT_JEOC: End of injected conversion interrupt mask
  1217. * Output         : None
  1218. * Return         : The new state of ADC_IT (SET or RESET).
  1219. *******************************************************************************/
  1220. ITStatus ADC_GetITStatus(ADC_TypeDef* ADCx, u16 ADC_IT)
  1221. {
  1222.   ITStatus bitstatus = RESET;
  1223.   u32 itmask = 0, enablestatus = 0;
  1224.   /* Check the parameters */
  1225.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  1226.   assert_param(IS_ADC_GET_IT(ADC_IT));
  1227.   /* Get the ADC IT index */
  1228.   itmask = ADC_IT >> 8;
  1229.   /* Get the ADC_IT enable bit status */
  1230.   enablestatus = (ADCx->CR1 & (u8)ADC_IT) ;
  1231.   /* Check the status of the specified ADC interrupt */
  1232.   if (((ADCx->SR & itmask) != (u32)RESET) && enablestatus)
  1233.   {
  1234.     /* ADC_IT is set */
  1235.     bitstatus = SET;
  1236.   }
  1237.   else
  1238.   {
  1239.     /* ADC_IT is reset */
  1240.     bitstatus = RESET;
  1241.   }
  1242.   /* Return the ADC_IT status */
  1243.   return  bitstatus;
  1244. }
  1245. /*******************************************************************************
  1246. * Function Name  : ADC_ClearITPendingBit
  1247. * Description    : Clears the ADCx抯 interrupt pending bits.
  1248. * Input          : - ADCx: where x can be 1, 2 or 3 to select the ADC peripheral.
  1249. *                  - ADC_IT: specifies the ADC interrupt pending bit to clear.
  1250. *                    This parameter can be any combination of the following values:
  1251. *                       - ADC_IT_EOC: End of conversion interrupt mask
  1252. *                       - ADC_IT_AWD: Analog watchdog interrupt mask
  1253. *                       - ADC_IT_JEOC: End of injected conversion interrupt mask
  1254. * Output         : None
  1255. * Return         : None
  1256. *******************************************************************************/
  1257. void ADC_ClearITPendingBit(ADC_TypeDef* ADCx, u16 ADC_IT)
  1258. {
  1259.   u8 itmask = 0;
  1260.   /* Check the parameters */
  1261.   assert_param(IS_ADC_ALL_PERIPH(ADCx));
  1262.   assert_param(IS_ADC_IT(ADC_IT));
  1263.   /* Get the ADC IT index */
  1264.   itmask = (u8)(ADC_IT >> 8);
  1265.   /* Clear the selected ADC interrupt pending bits */
  1266.   ADCx->SR = ~(u32)itmask;
  1267. }
  1268. /******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/