📄 stm8s_adc2.c
字号:
/**
******************************************************************************
* @file stm8s_adc2.c
* @brief This file contains all the functions/macros for the ADC2 peripheral.
* @author STMicroelectronics - MCD Application Team
* @version V1.0.1
* @date 09/22/2008
******************************************************************************
*
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
* TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*
* <h2><center>© COPYRIGHT 2008 STMicroelectronics</center></h2>
* @image html logo.bmp
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "stm8s_adc2.h"
/* LINKER SECTIONS DEFINITION FOR THIS FILE ONLY */
#ifdef USE_COSMIC_SECTIONS
#pragma section (ADC2_CODE)
#pragma section const {ADC2_CONST}
#pragma section @near [ADC2_URAM]
#pragma section @near {ADC2_IRAM}
#pragma section @tiny [ADC2_UZRAM]
#pragma section @tiny {ADC2_IZRAM}
#endif
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/* Private functions ---------------------------------------------------------*/
/* Public functions ----------------------------------------------------------*/
/**
* @addtogroup ADC2_Public_Functions
* @{
*/
/**
* @brief Deinitializes the ADC2 peripheral registers to their default reset
* values.
* @par Parameters:
* None
* @retval None
* @par Required preconditions:
* None
* @par Called functions:
* None
* @par Example:
* Initializes ADC2 to its reset values.
* @code
* ADC2_DeInit();
* @endcode
*/
void ADC2_DeInit(void)
{
ADC2->CSR = ADC2_CSR_RESET_VALUE;
ADC2->CR1 = ADC2_CR1_RESET_VALUE;
ADC2->CR2 = ADC2_CR2_RESET_VALUE;
ADC2->TDRH = ADC2_TDRH_RESET_VALUE;
ADC2->TDRL = ADC2_TDRL_RESET_VALUE;
}
/**
* @brief Initializes the ADC2 peripheral according to the specified parameters
* @param[in] ADC2_ConversionMode: specifies the conversion mode
* can be one of the values of @ref ADC2_ConvMode_TypeDef.
* @param[in] ADC2_Channel: specifies the channel to convert
* can be one of the values of @ref ADC2_Channel_TypeDef.
* @param[in] ADC2_PrescalerSelection: specifies the ADC2 prescaler
* can be one of the values of @ref ADC2_PresSel_TypeDef.
* @param[in] ADC2_ExtTrigger: specifies the external trigger
* can be one of the values of @ref ADC2_ExtTrig_TypeDef.
* @param[in] ADC2_ExtTrigState: specifies the external trigger new state
* can be one of the values of @ref FunctionalState.
* @param[in] ADC2_Align: specifies the converted data alignement
* can be one of the values of @ref ADC2_Align_TypeDef.
* @param[in] ADC2_SchmittTriggerChannel: specifies the schmitt trigger channel
* can be one of the values of @ref ADC2_SchmittTrigg_TypeDef.
* @param[in] ADC2_SchmittTriggerState: specifies the schmitt trigger state
* can be one of the values of @ref FunctionalState.
* @retval void None
* @par Required preconditions:
* None
* @par Called functions:
* - ADC2_ConversionConfig()
* - ADC2_PrescalerConfig()
* - ADC2_ExternalTriggerConfig()
* - ADC2_SchmittTriggerConfig()
* - ADC2_Cmd()
* @par Example:
* Initializes ADC
* @code
* ADC2_Init(ADC2_CONVERSIONMODE_SINGLE, ADC2_CHANNEL_2, ADC2_PRESSEL_FCPU_D8, ADC2_EXTTRIG_TIM, DISABLE, ADC2_ALIGN_RIGHT, ADC2_SCHMITTTRIG_ALL, DISABLE);
* @endcode
*/
void ADC2_Init(ADC2_ConvMode_TypeDef ADC2_ConversionMode, ADC2_Channel_TypeDef ADC2_Channel, ADC2_PresSel_TypeDef ADC2_PrescalerSelection, ADC2_ExtTrig_TypeDef ADC2_ExtTrigger, FunctionalState ADC2_ExtTrigState, ADC2_Align_TypeDef ADC2_Align, ADC2_SchmittTrigg_TypeDef ADC2_SchmittTriggerChannel, FunctionalState ADC2_SchmittTriggerState)
{
/* Check the parameters */
assert_param(IS_ADC2_CONVERSIONMODE_OK(ADC2_ConversionMode));
assert_param(IS_ADC2_CHANNEL_OK(ADC2_Channel));
assert_param(IS_ADC2_PRESSEL_OK(ADC2_PrescalerSelection));
assert_param(IS_ADC2_EXTTRIG_OK(ADC2_ExtTrigger));
assert_param(IS_FUNCTIONALSTATE_OK(((ADC2_ExtTrigState))));
assert_param(IS_ADC2_ALIGN_OK(ADC2_Align));
assert_param(IS_ADC2_SCHMITTTRIG_OK(ADC2_SchmittTriggerChannel));
assert_param(IS_FUNCTIONALSTATE_OK(ADC2_SchmittTriggerState));
/*-----------------CR1 & CSR configuration --------------------*/
/* Configure the conversion mode and the channel to convert
respectively according to ADC2_ConversionMode & ADC2_Channel values & ADC2_Align values */
ADC2_ConversionConfig(ADC2_ConversionMode, ADC2_Channel, ADC2_Align);
/* Select the prescaler division factor according to ADC2_PrescalerSelection values */
ADC2_PrescalerConfig(ADC2_PrescalerSelection);
/*-----------------CR2 configuration --------------------*/
/* Configure the external trigger state and event respectively
according to ADC2_ExtTrigStatus, ADC2_ExtTrigger */
ADC2_ExternalTriggerConfig(ADC2_ExtTrigger, ADC2_ExtTrigState);
/*------------------TDR configuration ---------------------------*/
/* Configure the schmitt trigger channel and state respectively
according to ADC2_SchmittTriggerChannel & ADC2_SchmittTriggerNewState values */
ADC2_SchmittTriggerConfig(ADC2_SchmittTriggerChannel, ADC2_SchmittTriggerState);
/* Enable the ADC2 peripheral */
ADC2->CR1 |= ADC2_CR1_ADON;
}
/**
* @brief Enables or Disables the ADC2 peripheral.
* @param[in] NewState: specifies the peripheral enabled or disabled state.
* @retval void None
* @par Required preconditions:
* None
* @par Called functions:
* None
* @par Example:
* Enable the ADC2 peripheral.
* @code
* ADC2_Cmd(ENABLE);
* @endcode
*/
void ADC2_Cmd(FunctionalState NewState)
{
/* Check the parameters */
assert_param(IS_FUNCTIONALSTATE_OK(NewState));
if (NewState != DISABLE)
{
ADC2->CR1 |= ADC2_CR1_ADON;
}
else /* NewState == DISABLE */
{
ADC2->CR1 &= (u8)(~ADC2_CR1_ADON);
}
}
/**
* @brief Enables or disables the ADC2 interrupt.
* @param[in] ADC2_ITEnable specifies the name of the interrupt to enable or disable.
* This parameter can be one of the following values:
* - ADC2_IT_AWDITEN : Analog WDG interrupt enable
* - ADC2_IT_EOCITEN : EOC iterrupt enable
* @param[in] ADC2_ITEnable specifies the state of the interrupt to apply.
* @retval void None
* @par Required preconditions:
* None
* @par Called functions:
* None
* @par Example:
* Enable the ADC2 End Of Convertion (EOC) Interrupt.
* @code
* ADC2_ITConfig(ADC2_IT_EOCITEN, ENABLE);
* @endcode
*/
void ADC2_ITConfig(FunctionalState ADC2_ITEnable)
{
/* Check the parameters */
assert_param(IS_FUNCTIONALSTATE_OK(ADC2_ITEnable));
if (ADC2_ITEnable != DISABLE)
{
/* Enable the ADC2 interrupts */
ADC2->CSR |= (u8)ADC2_CSR_EOCIE;
}
else /*ADC2_ITEnable == DISABLE */
{
/* Disable the ADC2 interrupts */
ADC2->CSR &= (u8)(~ADC2_CSR_EOCIE);
}
}
/**
* @brief Configure the ADC2 prescaler division factor.
* @param[in] ADC2_Prescaler: the selected precaler.
* It can be one of the values of @ref ADC2_PresSel_TypeDef.
* @retval void None
* @par Required preconditions:
* None
* @par Called functions:
* None
* @par Example:
* Configure the prescaler with the value of fadc2 = fcpu/4
* @code
* ADC2_PrescalerConfig(ADC2_PRESSEL_FCPU_D4 );
* @endcode
*/
void ADC2_PrescalerConfig(ADC2_PresSel_TypeDef ADC2_Prescaler)
{
/* Check the parameter */
assert_param(IS_ADC2_PRESSEL_OK(ADC2_Prescaler));
/* Clear the SPSEL bits */
ADC2->CR1 &= (u8)(~ADC2_CR1_SPSEL);
/* Select the prescaler division factor according to ADC2_PrescalerSelection values */
ADC2->CR1 |= (u8)(ADC2_Prescaler);
}
/**
* @brief Enables or disables the ADC2 Schmitt Trigger on a selected channel.
* @param[in] ADC2_SchmittTriggerChannel specifies the desired Channel.
* It can be set of the values of @ref ADC2_SchmittTrigg_TypeDef.
* @param[in] ADC2_SchmittTriggerState specifies Channel new status.
* can have one of the values of @ref FunctionalState.
* @retval void None
* @par Required preconditions:
* None
* @par Called functions:
* None
* @par Example:
* Enables the schmitt trigger on the channel 8.
* @code
* ADC2_SchmittTriggerConfig(ADC2_SCHMITTTRIG_CHANNEL8,ENABLE);
* @endcode
*/
void ADC2_SchmittTriggerConfig(ADC2_SchmittTrigg_TypeDef ADC2_SchmittTriggerChannel, FunctionalState ADC2_SchmittTriggerState)
{
/* Check the parameters */
assert_param(IS_ADC2_SCHMITTTRIG_OK(ADC2_SchmittTriggerChannel));
assert_param(IS_FUNCTIONALSTATE_OK(ADC2_SchmittTriggerState));
if (ADC2_SchmittTriggerChannel == ADC2_SCHMITTTRIG_ALL)
{
if (ADC2_SchmittTriggerState != DISABLE)
{
ADC2->TDRL &= (u8)0x0;
ADC2->TDRH &= (u8)0x0;
}
else /* ADC2_SchmittState == DISABLE */
{
ADC2->TDRL |= (u8)0xFF;
ADC2->TDRH |= (u8)0xFF;
}
}
else if (ADC2_SchmittTriggerChannel < ADC2_SCHMITTTRIG_CHANNEL8)
{
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -