近日,我在做串口的DMA发送和接收功能的实现,在调试时发现,每次置485的收发端口为低电平时,竟然会引发串口空闲中断(IDLE置1),置485收发端口为高电平时,会导致串口SR寄存器中FE(帧错误)置位,这使得我在处理串口空闲中断时发生矛盾,明明没有接收数据却也进入空闲中断。 485电路原理图:
file:///C:Users牧羊犬AppDataRoamingTencentUsers376694493QQWinTempRichOle{1SCXCR0`M`V~CP130XPGOE.png
485电路原理图
下面是我的部分程序代码:
void USART3_GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure ;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9 ; //USART_EN
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT ;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz ;
GPIO_Init(GPIOB, &GPIO_InitStructure) ;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10 ; //USART3.TXD
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF ; //配置OK
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz ;
GPIO_Init(GPIOB, &GPIO_InitStructure) ;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11 ; //USART3.RXD
// GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN; //输入模式
/* 使用GPIO_Mode_AF ,会导致莫名其妙的错误,如FE帧错误等。 */
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL; //悬浮模式
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz ;
GPIO_Init(GPIOB, &GPIO_InitStructure) ;
GPIO_PinAFConfig(GPIOB, GPIO_PinSource10, GPIO_AF_USART3) ;
GPIO_PinAFConfig(GPIOB, GPIO_PinSource11, GPIO_AF_USART3) ;
GPIO_ResetBits(GPIOB,GPIO_Pin_9); //USART_EN = 0 接收数据状态
}
void USART3_Config (uint32_t baudrate)
{
USART_InitTypeDef USART_InitStructure;
USART_ClockInitTypeDef USART_CLK_InitStructure;
/* reset USART port */
USART_DeInit(USART3) ;
USART_Cmd(USART1, DISABLE);
/* config USART port parameter */
USART_InitStructure.USART_BaudRate = baudrate; //波特率设置
USART_InitStructure.USART_WordLength = USART_WordLength_8b; //字长为 8 位数据格式
USART_InitStructure.USART_StopBits = USART_StopBits_1; //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; //收发模式
USART_Init(USART3, &USART_InitStructure);
USART_CLK_InitStructure.USART_Clock = USART_Clock_Disable; //串口时钟禁止
USART_CLK_InitStructure.USART_CPOL = USART_CPOL_Low; //数据低电平有效
USART_CLK_InitStructure.USART_CPHA = USART_CPHA_2Edge; //配置CPHA使数据在第2个边沿的时候被捕获
USART_CLK_InitStructure.USART_LastBit = USART_LastBit_Disable; // 禁用最后一位,使对应的时钟脉冲不会再输出到SCLK引脚
USART_ClockInit(USART3, &USART_CLK_InitStructure);
/* USART port interrupt enable */
USART_ClearFlag(USART3, USART_FLAG_TC) ; /*串口配置好,如果直接Send,则第1个字节发送不出去,解决第1个字节无法正确发送出去的问题 */
USART_ClearFlag( USART3, USART_FLAG_RXNE) ;
USART_ClearFlag( USART3, USART_FLAG_IDLE) ;
// USART_ITConfig(USART3, USART_IT_RXNE, ENABLE);
// USART_ITConfig(USART3, USART_IT_TC, ENABLE);
USART_ITConfig(USART3, USART_IT_IDLE, ENABLE); //开启空闲中断
User_DMATxInit(&DMA_Tx,DMA1_Stream3,DMA_Channel_4,DMA_DIR_MemoryToPeripheral,(u32)&USART3->DR,(u32)Tx_buffer,10);
User_DMARxInit(&DMA_Rx,DMA1_Stream1,DMA_Channel_4,DMA_DIR_PeripheralToMemory,(u32)&USART3->DR,(u32)Rx_buffer,100);
USART_DMACmd(USART3, USART_DMAReq_Tx, ENABLE); //使能串口3的DMA发送
USART_DMACmd(USART3, USART_DMAReq_Rx, ENABLE); //使能串口3的DMA接收
/* enable the USART port */
USART_Cmd(USART3, ENABLE); //使能串口
BSP_IntVectSet(BSP_INT_ID_USART3, BSP_USART3_ISR_Handler) ;
BSP_IntEn(BSP_INT_ID_USART3) ;
}
void DMA_Config(USER_DMASTRUCTURE* MyDMA_Structure)
{
DMA_InitTypeDef DMA_InitStructure;
if (MyDMA_Structure->DMAy_Streamx < DMA2_Stream0)
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_DMA1, ENABLE); //DMA时钟使能
else
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_DMA2, ENABLE);
DMA_DeInit(MyDMA_Structure->DMAy_Streamx); //将DMA的通道寄存器重设为缺省值
while (DMA_GetCmdStatus(MyDMA_Structure->DMAy_Streamx) != DISABLE){}
DMA_InitStructure.DMA_Channel = MyDMA_Structure->DMAChannel; //通道设置
DMA_InitStructure.DMA_PeripheralBaseAddr = MyDMA_Structure->PerBaseAddr; //外设基地址
DMA_InitStructure.DMA_Memory0BaseAddr = MyDMA_Structure->MemBaseAddr; //存储器基地址
DMA_InitStructure.DMA_DIR = MyDMA_Structure->DIR; //数据传输方向
DMA_InitStructure.DMA_BufferSize = MyDMA_Structure->BufSize; //DMA缓存大小
DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable; //外设地址寄存器不变
DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable; //内存地址寄存器递增
DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte; //数据宽度为8位
DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte; //数据宽度为8位
DMA_InitStructure.DMA_Mode = DMA_Mode_Normal; //工作在正常模式
DMA_InitStructure.DMA_Priority = DMA_Priority_Medium; //DMA数据流x拥有中优先级
DMA_InitStructure.DMA_FIFOMode = DMA_FIFOMode_Disable; //FIFO模式关闭
DMA_InitStructure.DMA_FIFOThreshold = DMA_FIFOThreshold_1QuarterFull;
DMA_InitStructure.DMA_MemoryBurst = DMA_MemoryBurst_Single;
DMA_InitStructure.DMA_PeripheralBurst = DMA_PeripheralBurst_Single;
DMA_Init(MyDMA_Structure->DMAy_Streamx, &DMA_InitStructure); //初始化DMA配置
}
不知道是不是我的管脚配置问题,我将串口RXD口配置为GPIO_Mode_IN时,发送没有问题,改变485收发端口都没问题,但是接收就用不了了;配置成GPIO_Mode_AF时,又会莫名其妙的产生空闲中断。。。希望大家能够帮我看看,或者给点建议。
一周热门 更多>