OpenEdv-开源电子网

 找回密码
 立即注册
正点原子全套STM32/Linux/FPGA开发资料,上千讲STM32视频教程免费下载...
查看: 7031|回复: 2

项目中的USART与DMA 的使用

[复制链接]

38

主题

109

帖子

0

精华

中级会员

Rank: 3Rank: 3

积分
294
金钱
294
注册时间
2014-8-1
在线时间
6 小时
发表于 2014-11-12 12:19:19 | 显示全部楼层 |阅读模式
         项目使用了串口1发送了和接收数据, 接收数据用的是中断,众所周知,在相同效果下,程序进入中断的次数越少越好。 原来有接收一张数据,8个字节,那就要进八次中断,现在使用DAM 串口接收,接收8个字节只需要进一次中断。
       
        结论:串口发送不宜使用DMA,不方便, 串口接收应考虑使用DMA。  下面贴上DMA 程序函数。
      
 void STM32_Shenzhou_COMInit(USART_InitTypeDef* USART_InitStruct)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE); /* Enable GPIO clock */
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE); /* Enable UART clock */
GPIO_PinAFConfig(GPIOA, GPIO_PinSource9, GPIO_AF_USART1); /* Connect PXx to USARTx_Tx*/

/* Connect PXx to USARTx_Rx*/
GPIO_PinAFConfig(GPIOA, GPIO_PinSource10, GPIO_AF_USART1);

/* Configure USART Tx as alternate function  */
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;

GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);

/* Configure USART Rx as alternate function  */
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_Init(GPIOA, &GPIO_InitStructure);

USART_Init(USART1, USART_InitStruct); /* USART configuration */ 
USART_Cmd(USART1, ENABLE); /* Enable USART */
while(USART_GetFlagStatus(USART1, USART_FLAG_TC)==RESET);
USART_ClearFlag(USART1,USART_FLAG_TC);
}

void Printf_Init(void)
{
USART_InitTypeDef USART_InitStructure;   
USART_InitStructure.USART_BaudRate = 115200;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
STM32_Shenzhou_COMInit(&USART_InitStructure);
}

void MYDMA_Config_Rx()

DMA_InitTypeDef  DMA_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_DMA2,ENABLE);
DMA_DeInit(DMA2_Stream5);
while (DMA_GetCmdStatus(DMA2_Stream5) != DISABLE){}

DMA_InitStructure.DMA_Channel = DMA_Channel_4;  
DMA_InitStructure.DMA_PeripheralBaseAddr = (uint32_t)USART1_DR_ADDRESS;
DMA_InitStructure.DMA_Memory0BaseAddr = (uint32_t)Rx_Buffer;
DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralToMemory;
DMA_InitStructure.DMA_BufferSize = 5;
DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;
DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte;
DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte;
DMA_InitStructure.DMA_Mode = DMA_Mode_Circular;
DMA_InitStructure.DMA_Priority = DMA_Priority_Medium;
DMA_InitStructure.DMA_FIFOMode = DMA_FIFOMode_Disable;         
DMA_InitStructure.DMA_FIFOThreshold = DMA_FIFOThreshold_Full;
DMA_InitStructure.DMA_MemoryBurst = DMA_MemoryBurst_Single;
DMA_InitStructure.DMA_PeripheralBurst = DMA_PeripheralBurst_Single;
DMA_Init(DMA2_Stream5, &DMA_InitStructure);//??????DMA Stream

DMA_Cmd(DMA2_Stream5, DISABLE);
DMA_ITConfig(DMA2_Stream5, DMA_IT_TC, ENABLE);  
DMA_ClearITPendingBit(DMA2_Stream5, DMA_IT_TCIF5);    

USART_DMACmd(USART1,USART_DMAReq_Rx,ENABLE); 
DMA_Cmd(DMA2_Stream5, ENABLE);
DMA_NVIC_Configuration();


void USART1_TX_01 (u16 ID)
{
u8 i=0;
Tx_Buffer[i++]=0xAA;
Tx_Buffer[i++]=0x70;
Tx_Buffer[i++]=(u8)(ID>>8);
Tx_Buffer[i++]=(u8)(ID);
Tx_Buffer[i++]=0xCC;
Tx_Buffer[i++]=0x33;
Tx_Buffer[i++]=0xC3;
Tx_Buffer[i++]=0x3C;
 for(i=0;i<8;i++)
{    
USART_SendData(USART1,Tx_Buffer);
while( USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET );
}
}
void USART1_TX_02 (u8 timer)
{
u8 i=0;
Tx_Buffer[i++]=0xAA;
Tx_Buffer[i++]=0x70;
    Tx_Buffer[i++]=timer;
Tx_Buffer[i++]=0xCC;
Tx_Buffer[i++]=0x33;
Tx_Buffer[i++]=0xC3;
Tx_Buffer[i++]=0x3C;
 for(i=0;i<8;i++)
{    
 USART_SendData(USART1,Tx_Buffer);
while( USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET );
}
}

int main(void)
{
flag_rx=0;
Printf_Init();
MYDMA_Config_Rx(); 
USART1_TX_02 (100);
USART1_TX_01(1);
while(1)
{
if(flag_rx==1)
{
flag_rx=0;
printf("\r\n STM32F407ZGT \r\n");
        }
    }
return(0);  
}

void DMA2_Stream5_IRQHandler(void)
{
if(DMA_GetITStatus(DMA2_Stream5, DMA_IT_TCIF5))  
{
flag_rx=1;
DMA_ClearITPendingBit(DMA2_Stream5, DMA_IT_TCIF5) ;
}
}



正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

28

主题

1489

帖子

0

精华

论坛大神

Rank: 7Rank: 7Rank: 7

积分
1656
金钱
1656
注册时间
2013-7-24
在线时间
1 小时
发表于 2014-11-12 17:55:28 | 显示全部楼层
接收应该考虑长度未知,楼主怎么解决的?
于20150522停用该账号:http://www.microstar.club
回复 支持 反对

使用道具 举报

38

主题

109

帖子

0

精华

中级会员

Rank: 3Rank: 3

积分
294
金钱
294
注册时间
2014-8-1
在线时间
6 小时
 楼主| 发表于 2014-11-12 18:53:54 | 显示全部楼层
回复【2楼】styleno1:
---------------------------------
这方面 网友有提议用串口空闲总线中断
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则



关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-11-23 04:43

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表