STM32F405,用的USART3+Clock变成了UART模式
在没加DMA之前,通讯十分正常
但是DMA加了就不对
因为我现在做的程序对中断特别敏感,就是因为在不用DMA的情况下中断对其他模块有挺大的影响
所以想把串口和I2C什么的都移到DMA里面,并且不适用DMA的中断之类的东西。
但是并不能找到什么好办法。。。。
核心程序我先贴出来:
[mw_shl_code=c,true]//DMA部分
DMA_InitTypeDef DMA_USART3_InitStruction;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_DMA1,ENABLE);
DMA_USART3_InitStruction.DMA_PeripheralBaseAddr = USART3_BASE + 0x04 ;
DMA_USART3_InitStruction.DMA_Memory0BaseAddr = (u32)SendData;
DMA_USART3_InitStruction.DMA_DIR = DMA_DIR_MemoryToPeripheral;
DMA_USART3_InitStruction.DMA_BufferSize = 20;
DMA_USART3_InitStruction.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
DMA_USART3_InitStruction.DMA_MemoryInc = DMA_MemoryInc_Disable;
DMA_USART3_InitStruction.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte;
DMA_USART3_InitStruction.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte;
DMA_USART3_InitStruction.DMA_Mode = DMA_Mode_Circular;
DMA_USART3_InitStruction.DMA_Priority = DMA_Priority_Medium;
DMA_USART3_InitStruction.DMA_Channel =DMA_Channel_7;
DMA_Init(DMA1_Stream4,&DMA_USART3_InitStruction);
DMA_Cmd(DMA1_Stream4,ENABLE);
//UART部分
GPIO_InitTypeDef GPIO_InitStruct;
USART_InitTypeDef USART_InitStruct;
USART_ClockInitTypeDef USART_ClockInitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB, ENABLE);
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);
GPIO_PinAFConfig(GPIOB, GPIO_PinSource10, GPIO_AF_USART3);
GPIO_PinAFConfig(GPIOB, GPIO_PinSource11, GPIO_AF_USART3);
/* USART1 Tx PB10 */ /* USART1 Rx PB11 */
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_10 | GPIO_Pin_11;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStruct.GPIO_OType = GPIO_OType_PP;
GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStruct);
USART_InitStruct.USART_BaudRate = 115200;
USART_InitStruct.USART_WordLength = USART_WordLength_8b;
USART_InitStruct.USART_StopBits = USART_StopBits_1;
USART_InitStruct.USART_Parity = USART_Parity_No;
USART_InitStruct.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStruct.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_Init(USART3, &USART_InitStruct);
USART_ClockInitStructure.USART_Clock = USART_Clock_Enable;
USART_ClockInitStructure.USART_CPOL = USART_CPOL_Low;
USART_ClockInitStructure.USART_CPHA = USART_CPHA_2Edge;
USART_ClockInitStructure.USART_LastBit = USART_LastBit_Disable;
USART_ClockInit(USART3, &USART_ClockInitStructure);
USART_DMACmd(USART3,USART_DMAReq_Tx,ENABLE);
USART_Cmd(USART3,ENABLE);
[/mw_shl_code]
我想问问大家:
我理解的DMA的工作方式,用TX举例,是把要发送的数据放到SendData内存中,然后在循环模式下,不断的将SendData中的内容放到USART的DR寄存器中发送出去。所以我把原来F4库函数的USART_SendData函数中的USARTx->DR = Data这一语句换成了把Data赋值到SendData中
但是结果出来的在115200波特率下数据不对,并且我用调试模式下发现实际Data赋值之后,SendData中的成员数据依旧是0x00没变化。。。
不知道我这样理解有什么错误么
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>