ARM技术论坛
直播中

mintsy

8年用户 1487经验值
擅长:MEMS/传感技术
私信 关注
[经验]

串口DMA接收发送+接收超时中断实现不定长字节接收

使用DMA收发串口数据能提高MCU的处理效率,本来打算使用DMA接收+IDLE中断的,但初步实验了下IDLE中断在实际使用中的问题:

1.idle中断空闲只要有1个字节空闲时间就中断,貌似很多M内核芯片都是这样设置的。

2.实验GD32F427R发现idle中断只要空闲1个字符就会进入,正常是IDLE中断发生后清除只有接收到一个字符后芯片再自动重新开启idle中断,找了GD32F4的手册也没有发现相关的描述,虽然能通过接收字符判断但中断太频繁了。

GD32作为国内M核大厂,希望在软件和手册上还是需要加强。最后不断查找发现有一个接收超时中断,但是接收超时中断只能usart使用。GD32F4为usart_periph: USARTx(x=0,1,2,5)。

并且超时的字节数可以配置,这样使用起来还是挺爽的,基本处理都在中断中,实际使用可以使用接收完成标志在程序中轮训处理收到的数据并进行DMA发送。我使用的是USART2,关键代码如下:

1.串口初始化:

  rcu_periph_clock_enable(GD32_COM2_CLK);

  /* enable USART clock */

  rcu_periph_clock_enable(GD32_COM2_GPIO_CLK);

  /* connect port to USARTx_Tx */

  gpio_af_set(GD32_COM2_GPIO_PORT, GD32_COM2_AF,
GD32_COM2_TX_PIN);

  /* connect port to USARTx_Rx */

  gpio_af_set(GD32_COM2_GPIO_PORT, GD32_COM2_AF,
GD32_COM2_RX_PIN);

  /* configure USART Tx as alternate function push-pull */

  gpio_mode_set(GD32_COM2_GPIO_PORT, GPIO_MODE_AF,
GPIO_PUPD_PULLUP,GD32_COM2_TX_PIN);

  gpio_output_options_set(GD32_COM2_GPIO_PORT, GPIO_OTYPE_PP,
GPIO_OSPEED_50MHZ,GD32_COM2_TX_PIN);

  /* configure USART Rx as alternate function push-pull */

  gpio_mode_set(GD32_COM2_GPIO_PORT, GPIO_MODE_AF,
GPIO_PUPD_PULLUP,GD32_COM2_RX_PIN);

  gpio_output_options_set(GD32_COM2_GPIO_PORT, GPIO_OTYPE_PP,
GPIO_OSPEED_50MHZ,GD32_COM2_RX_PIN);

  /* USART configure */

  usart_deinit(com);

  usart_oversample_config(com, USART_OVSMOD_8);

  usart_baudrate_set(com,baudrate); //波特率

  usart_parity_config(com, USART_PM_NONE); //校验位:NONE

  usart_word_length_set(com, USART_WL_8BIT); //数据位:8

  usart_stop_bit_set(com, USART_STB_1BIT); //停止位:1

  usart_receive_config(com, USART_RECEIVE_ENABLE);

  usart_transmit_config(com, USART_TRANSMIT_ENABLE);

  //--接收超时设置

  usart_receiver_timeout_threshold_config(com,10);//字节数,与波特率无关

  usart_interrupt_enable(com,USART_INT_RT);

  usart_receiver_timeout_enable(com);

  usart_enable(com);

  usart_dma_transmit_config(com, USART_DENT_ENABLE); // 使能串口DMA发送

  /* USART interrupt configuration */

  nvic_irq_enable(USART2_IRQn, 1, 1);

  /*uart dma rx set*/

  dma_single_data_parameter_struct dma_init_struct;

  /* enable DMA0 */

  rcu_periph_clock_enable(RCU_DMA0);

  /* deinitialize DMA channel */

  dma_deinit(DMA0, DMA_CH1);

  dma_init_struct.direction = DMA_PERIPH_TO_MEMORY;

  //存储器地址

  dma_init_struct.memory0_addr = (uint32_t)rxbuffer;

  dma_init_struct.memory_inc = DMA_MEMORY_INCREASE_ENABLE;

  dma_init_struct.periph_memory_width = DMA_PERIPH_WIDTH_8BIT;

  dma_init_struct.number = 300;

  dma_init_struct.periph_addr =
(uint32_t)&USART_DATA(GD32_COM2);

  dma_init_struct.periph_inc = DMA_PERIPH_INCREASE_DISABLE;

  dma_init_struct.priority = DMA_PRIORITY_MEDIUM;

  dma_single_data_mode_init(DMA0, DMA_CH1, &dma_init_struct);

  /* configure DMA mode */

  // dma_circulation_disable(DMA0, DMA_CH1);

  dma_circulation_enable(DMA0, DMA_CH1); //循环模式

  dma_channel_subperipheral_select(DMA0, DMA_CH1, DMA_SUBPERI4);

  //放在使能通道前,使能通道后不可写

  dma_transfer_number_config(DMA0, DMA_CH1, 300);

  //使能通道

  dma_channel_enable(DMA0, DMA_CH1);

  usart_dma_receive_config(USART2, USART_DENR_ENABLE);

  /* enable DMA1 channel2 transfer complete interrupt */

  dma_interrupt_enable(DMA0, DMA_CH1, DMA_CHXCTL_FTFIE);

  nvic_irq_enable(DMA0_Channel1_IRQn, 0, 1);

2.DMA发送

  void USART_SendString_DMA(uint8_t * str, uint32_t len)

  {

  dma_single_data_parameter_struct dma_struct = {0};

  /* enable DMA1 */

  rcu_periph_clock_enable(RCU_DMA0);

  /* deinitialize DMA channel7(USART2 TX) */

  dma_deinit(DMA0, DMA_CH3);

  dma_struct.direction = DMA_MEMORY_TO_PERIPH; // 内存到外设

  dma_struct.memory0_addr = (uint32_t)str; // 内存基地址

  dma_struct.memory_inc = DMA_MEMORY_INCREASE_ENABLE; // 开启内存自增

  dma_struct.periph_memory_width = DMA_MEMORY_WIDTH_8BIT; //
内存数据宽度8bit

  dma_struct.number = len; // len个数据

  dma_struct.periph_addr =
(uint32_t)&USART_DATA(GD32_COM2);//(uint32_t)0x40013804; // 串口缓冲区基地址

  dma_struct.periph_inc = DMA_PERIPH_INCREASE_DISABLE; // 关闭外设地址自增

  //dma_struct.periph_width = DMA_PERIPHERAL_WIDTH_8BIT; //
外设数据宽度8bit

  dma_struct.priority = DMA_PRIORITY_HIGH; // 优先级高

  dma_single_data_mode_init(DMA0, DMA_CH3, &dma_struct);

  dma_circulation_disable(DMA0, DMA_CH3); // 关闭循环模式

  dma_flag_clear(DMA0, DMA_CH3, DMA_FLAG_FTF); // 清除DMA传输完成标志位

  dma_channel_subperipheral_select(DMA0, DMA_CH3, DMA_SUBPERI4);

  /* enable DMA1 channel2 transfer complete interrupt */

  dma_interrupt_enable(DMA0, DMA_CH3, DMA_CHXCTL_FTFIE);

  uart_state = 0;

  dma_channel_enable(DMA0, DMA_CH3); // 使能DMA传输

  }

3.DMA发送完成中断

  void DMA0_Channel3_IRQHandler(void)

  {

  if(dma_interrupt_flag_get(DMA0, DMA_CH3, DMA_INT_FLAG_FTF)) {

  dma_interrupt_flag_clear(DMA0, DMA_CH3, DMA_INT_FLAG_FTF);

  uart_state = 1;

  dma_channel_disable(DMA0, DMA_CH3); // 关闭DMA发送传输

  /*打开DMA接收传输*/

  Receive_DataStart(GD32_COM4);

  }

  }

4.USART接收超时中断

  void USART2_IRQHandler(void)

  {

  //接收超时中断(也可以使用IDLE中断实现)

  if(usart_interrupt_flag_get(GD32_COM4,USART_INT_FLAG_RT))

  {

  //清除中断标志

  usart_interrupt_flag_clear(GD32_COM4,USART_INT_FLAG_RT);

  EventStopB(0);//测试中断间隔时间

  Receive_DataPack(GD32_COM4);

  EventStartB(0);

  }

  }

5.DMA接收完成进行DMA发送

  void Receive_DataPack(uint32_t com){

  // dma_single_data_parameter_struct dma_init_struct;

  /* 关闭DMA,防止干扰 */

  dma_channel_disable(DMA0, DMA_CH1);

  /* 清DMA标志位 */

  dma_flag_clear(DMA0, DMA_CH1, DMA_INTF_FTFIF);

  /* 获取接收到的数据长度,单位:字节 */

  int len = 300 - dma_transfer_number_get(DMA0, DMA_CH1);

  if(len 》 0)

  {

  memcpy(txbuffer,rxbuffer,len);

  USART_SendString_DMA(txbuffer,len);

  }

  Receive_DataStart(GD32_COM4);

  }

6.重新开启接收DMA

  void Receive_DataStart(uint32_t com){

  dma_single_data_parameter_struct dma_init_struct;

  /* deinitialize DMA channel */

  dma_deinit(DMA0, DMA_CH1);

  dma_init_struct.direction = DMA_PERIPH_TO_MEMORY;

  //设置存储器地址

  dma_init_struct.memory0_addr = (uint32_t)rxbuffer;

  dma_init_struct.memory_inc = DMA_MEMORY_INCREASE_ENABLE;

  dma_init_struct.periph_memory_width = DMA_PERIPH_WIDTH_8BIT;

  dma_init_struct.number = 300;

  dma_init_struct.periph_addr =
(uint32_t)&USART_DATA(GD32_COM2);

  dma_init_struct.periph_inc = DMA_PERIPH_INCREASE_DISABLE;

  dma_init_struct.priority = DMA_PRIORITY_MEDIUM;

  dma_single_data_mode_init(DMA0, DMA_CH1, &dma_init_struct);

  /* configure DMA mode */

  // dma_circulation_disable(DMA0, DMA_CH1);

  dma_circulation_enable(DMA0, DMA_CH1); //循环模式

  dma_channel_subperipheral_select(DMA0, DMA_CH1, DMA_SUBPERI4);

  /* 重新赋值计数值 */

  dma_transfer_number_config(DMA0, DMA_CH1, 300);

  // dma_interrupt_flag_clear(DMA0, DMA_CH2, DMA_INT_FLAG_FTF);

  /* 重新打开DMA */

  dma_channel_enable(DMA0, DMA_CH1);

  usart_dma_receive_config(USART2, USART_DENR_ENABLE);

  /* enable DMA1 channel2 transfer complete interrupt */

  dma_interrupt_enable(DMA0, DMA_CH1, DMA_CHXCTL_FTFIE);

  nvic_irq_enable(DMA0_Channel1_IRQn, 0, 1);

  }

原作者:兆易创新GD32 MCU 汪阳

更多回帖

发帖
×
20
完善资料,
赚取积分