求助!CH32V307 定時器觸發(fā)ADC ADC無法啟動

#include "debug.h"http:// 包含 CH32V307 的頭文件,C 標準單元庫和delay()函數(shù)

#define Num 4096

/* Global Variable */

volatile uint16_t ADC_ConvertedValue;

u16 TxBuf[Num];

s16 Calibrattion_Val = 0;


void TIM2_Init(u32 Per,u32 Prescaler)

{

? ? TIM_TimeBaseInitTypeDef? TIM_TimeBaseStructure;

? ? TIM_OCInitTypeDef TIM_OCInitStructure;

? ? RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2, ENABLE);


? ? TIM_TimeBaseStructInit(&TIM_TimeBaseStructure);

? ? TIM_TimeBaseStructure.TIM_Period = Per;

? ? TIM_TimeBaseStructure.TIM_Prescaler =Prescaler;

? ? TIM_TimeBaseStructure.TIM_ClockDivision = TIM_CKD_DIV1;

? ? TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;

? ? TIM_TimeBaseInit(TIM2, &TIM_TimeBaseStructure);


? ? TIM_OCInitStructure.TIM_OCMode=TIM_OCMode_PWM1;

? ? TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;//TIM_OutputState_Disable;

? ? TIM_OCInitStructure.TIM_Pulse = 1000;

? ? TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_Low;//如果是PWM1要為Low,PWM2則為High

? ? TIM_OC2Init(TIM2, & TIM_OCInitStructure);


? ? TIM_Cmd(TIM2, ENABLE);? ? ? ? ? //使能TIMx

? ? TIM_CtrlPWMOutputs(TIM2, ENABLE);

}


/********************************************************************

* 函 數(shù) 名? ? ? ?: DMA1_Init

* 函數(shù)功能? ? : DMA 初始化

* 輸? ? 入? ? ? ? ? :

* 輸? ? 出? ? ? ? ? : 無

********************************************************************/

void DMA1_Init()

{

? ? DMA_InitTypeDef DMA_InitStructure;

? ? NVIC_InitTypeDef NVIC_InitStructure;


? ? RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1,ENABLE);? ? ? ? ? ? ? ?//使能ADC1通道時鐘


? ? ? ? //DMA1初始化

? ? DMA_DeInit(DMA1_Channel1);

? ? DMA_InitStructure.DMA_PeripheralBaseAddr = (u32)&ADC1->RDATAR;? ? ? ? ? ? ?//ADC1地址

? ? DMA_InitStructure.DMA_MemoryBaseAddr = (uint32_t)&ADC_ConvertedValue;? ? ? ?//內(nèi)存地址

? ? DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralSRC;? ? ? ? ? ? ? //方向(從外設到內(nèi)存)

? ? DMA_InitStructure.DMA_BufferSize = 1;? ? ? ? ? ? ? ? ? ? ? ?//傳輸內(nèi)容的大小

? ? DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable;? ? ? ? //外設地址固定

? ? DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Disable;? ? ? ? ? ? //內(nèi)存地址固定

? ? DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_HalfWord ; //外設數(shù)據(jù)單位

? ? DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_HalfWord ;? ? //內(nèi)存數(shù)據(jù)單位

? ? DMA_InitStructure.DMA_Mode = DMA_Mode_Circular? ;? ? ? ?//DMA模式:循環(huán)傳輸

? ? DMA_InitStructure.DMA_Priority = DMA_Priority_High ;? ? ? ? //優(yōu)先級:高

? ? DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;? ? ? ? //禁止內(nèi)存到內(nèi)存的傳輸

? ? DMA_Init(DMA1_Channel1, &DMA_InitStructure);? //配置DMA1


? ? DMA_ITConfig(DMA1_Channel1,DMA_IT_TC, ENABLE);? ? ? //使能傳輸完成中斷


? ? NVIC_InitStructure.NVIC_IRQChannel = DMA1_Channel1_IRQn;

? ? NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;

? ? NVIC_InitStructure.NVIC_IRQChannelSubPriority = 2;

? ? NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;

? ? NVIC_Init(&NVIC_InitStructure);


? ? DMA_Cmd(DMA1_Channel1,ENABLE);


}

void? DMA1_Channel1__IRQHandler(void)? ?__attribute__((interrupt("WCH-Interrupt-fast")));

void? DMA1_Channel1__IRQHandler(void)

{

? ? if(DMA_GetITStatus(DMA1_IT_TC1)!=RESET){

? ? ? ? //中斷處理代碼


? ? ? ? printf("The current value =%d \r\n",ADC_ConvertedValue);

? ? ? ? DMA_ClearITPendingBit(DMA1_IT_TC1);

? ? }

}

/********************************************************************

* 函 數(shù) 名? ? ? ?: ADC_Function_Init

* 函數(shù)功能? ? : 初始化ADC

* 輸? ? 入? ? ? ? ? : 無

* 輸? ? 出? ? ? ? ? : 無

********************************************************************/

void ADC_Function_Init(void)

{


? ? ADC_InitTypeDef ADC_InitStructure;

? ? GPIO_InitTypeDef GPIO_InitStructure;


? ? TIM2_Init(1000, 144-1);

? ? DMA1_Init();

? ? RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE );

? ? RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1, ENABLE );

? ? RCC_ADCCLKConfig(RCC_PCLK2_Div8);? ? ? ? ? ? ? ?//初始化ADC時鐘,設置時鐘為PCLK2的8分頻


? ? GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;

? ? GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;

? ? GPIO_Init(GPIOA, &GPIO_InitStructure);? ? ? ? ? //配置PA1口為AD輸入口


? ? ADC_DeInit(ADC1);

? ? ADC_InitStructure.ADC_Mode = ADC_Mode_Independent;? //設置AD模式為單獨模式,只使用ADC1

? ? ADC_InitStructure.ADC_ScanConvMode = DISABLE;? ? ? ?//禁用多通道模式,啟用單通道模式

? ? ADC_InitStructure.ADC_ContinuousConvMode = DISABLE;? //不啟動連續(xù)轉換模式

? ? ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_T2_CC2; //定時器2觸發(fā)

? ? ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;? //數(shù)據(jù)右對齊

? ? ADC_InitStructure.ADC_NbrOfChannel = 1;? ? ?//要轉換通道數(shù)量

? ? ADC_Init(ADC1, &ADC_InitStructure);


? ? ADC_RegularChannelConfig(ADC1, ADC_Channel_1, 1, ADC_SampleTime_1Cycles5 );

? ? ADC_DMACmd(ADC1, ENABLE); //啟動DMA

? ? ADC_Cmd(ADC1, ENABLE);? ? ? ? ? //使能ADC


? ? ADC_BufferCmd(ADC1, DISABLE);? ?//disable buffer

? ? ADC_ResetCalibration(ADC1);

? ? while(ADC_GetResetCalibrationStatus(ADC1));

? ? ADC_StartCalibration(ADC1);

? ? while(ADC_GetCalibrationStatus(ADC1));

? ? Calibrattion_Val = Get_CalibrationValue(ADC1);

? ? ADC_BufferCmd(ADC1, ENABLE);? ?//enable buffer

? ? ADC_ExternalTrigConvCmd(ADC1, ENABLE);

}



/*******************************************************************************

* Function Name? : main

* Description? ? : Main program.

* Input? ? ? ? ? : None

* Return? ? ? ? ?: None

*******************************************************************************/

int main(void)

{

? ? Delay_Init();

? ? USART_Printf_Init(115200);

? ? printf("SystemClk:%d\r\n",SystemCoreClock);



? ? ADC_Function_Init();

? ? printf("CalibrattionValue:%d\n", Calibrattion_Val);

? ? while(1);

}


您好,附件例程為CH32V203定時器觸發(fā)ADC例程,可以參考一下,CH32V307和這基本是差不多的

icon_rar.gifCH32V203 定時器觸發(fā)ADC.zip



只有登錄才能回復,可以選擇微信賬號登錄

国产91精品新入口,国产成人综合网在线播放,九热这里只有精品,本道在线观看,美女视频a美女视频,韩国美女激情视频,日本美女pvp视频