RISC-V MCU中文社区

【分享】 USART1、USART2、UART3的串口使用

发表于 GD32VF103 MCU 2021-04-05 15:01:56
0
6264
8

本人用蓝牙测试通过了三个串口模块,其中USART1需要重映射配置。USART0我暂时没有启用!

下图是USART1的使用,相关接口映射可以查找“用户指南”,代码在文末(重映射需要开启AF时钟——感谢胡灿老师!)

另外我重写了delay_1ms函数,改为了delay_1us,后续会用到。


  1. //参考文件
  2. // ~/Nuclei/SoC/gd32vf103/Board/gd32vf103v_eval/Include/gd32vf103v_eval.h
  3. //USART2 UART3可以直接正常使用,USART1需要重映射
  4. //由于用户手册上没找到USART0的接收端口,所以目前没有测试使用过
  5. #include
  6. #include "nuclei_sdk_hal.h"
  7. #include "gd32vf103_usart.h"
  8. #include "gd32vf103_gpio.h"
  9. #include "gd32vf103_exti.h"
  10. #include "nuclei_sdk_soc.h"
  11. #define COMn (4U)
  12. #define GD32_COM0 USART0
  13. #define GD32_COM0_CLK RCU_USART0
  14. #define GD32_COM0_TX_PIN GPIO_PIN_9
  15. #define GD32_COM0_RX_PIN GPIO_PIN_10
  16. #define GD32_COM0_GPIO_PORT GPIOA
  17. #define GD32_COM0_GPIO_CLK RCU_GPIOA
  18. #define GD32_COM1 USART1
  19. #define GD32_COM1_CLK RCU_USART1
  20. #define GD32_COM1_TX_PIN GPIO_PIN_5
  21. #define GD32_COM1_RX_PIN GPIO_PIN_6
  22. #define GD32_COM1_GPIO_PORT GPIOD
  23. #define GD32_COM1_GPIO_CLK RCU_GPIOD
  24. #define GD32_COM2 USART2
  25. #define GD32_COM2_CLK RCU_USART2
  26. #define GD32_COM2_TX_PIN GPIO_PIN_10
  27. #define GD32_COM2_RX_PIN GPIO_PIN_11
  28. #define GD32_COM2_GPIO_PORT GPIOB
  29. #define GD32_COM2_GPIO_CLK RCU_GPIOB
  30. #define GD32_COM3 UART3
  31. #define GD32_COM3_CLK RCU_UART3
  32. #define GD32_COM3_TX_PIN GPIO_PIN_10
  33. #define GD32_COM3_RX_PIN GPIO_PIN_11
  34. #define GD32_COM3_GPIO_PORT GPIOC
  35. #define GD32_COM3_GPIO_CLK RCU_GPIOC
  36. /* private variables */
  37. static rcu_periph_enum COM_CLK[COMn] = {GD32_COM0_CLK, GD32_COM1_CLK,GD32_COM2_CLK,GD32_COM3_CLK};
  38. static uint32_t COM_TX_PIN[COMn] = {GD32_COM0_TX_PIN, GD32_COM1_TX_PIN,GD32_COM2_TX_PIN,GD32_COM3_TX_PIN};
  39. static uint32_t COM_RX_PIN[COMn] = {GD32_COM0_RX_PIN, GD32_COM1_RX_PIN,GD32_COM2_RX_PIN,GD32_COM3_RX_PIN};
  40. static uint32_t COM_GPIO_PORT[COMn] = {GD32_COM0_GPIO_PORT, GD32_COM1_GPIO_PORT,GD32_COM2_GPIO_PORT,GD32_COM3_GPIO_PORT};
  41. static rcu_periph_enum COM_GPIO_CLK[COMn] = {GD32_COM0_GPIO_CLK, GD32_COM1_GPIO_CLK,GD32_COM2_GPIO_CLK,GD32_COM3_GPIO_CLK};
  42. void gd_com_init(uint32_t com);
  43. int USART_IRQHandler(uint32_t com);
  44. void delay_1us(uint32_t count);
  45. int main(void)
  46. {
  47. //select
  48. IRQn_Type IRQn=USART1_IRQn;
  49. uint32_t COM=GD32_COM1;
  50. //select end
  51. //initial
  52. gd_com_init(COM);
  53. usart_interrupt_enable(COM,USART_INT_RBNE); //使能接收中断
  54. ECLIC_Register_IRQ(IRQn,ECLIC_NON_VECTOR_INTERRUPT,ECLIC_LEVEL_TRIGGER,1,0,USART_IRQHandler(COM)); // 配置中断函数
  55. __enable_irq();
  56. usart_enable(COM);
  57. //initial end
  58. //transmit
  59. for (uint32_t i = 1; i <= 10; i ++) {
  60. usart_data_transmit(COM,i);
  61. while ( usart_flag_get(COM, USART_FLAG_TBE)== RESET){}; // 等待发送完成
  62. delay_1us(1000000);
  63. }
  64. //transmit end
  65. usart_interrupt_disable(COM,USART_INT_RBNE);
  66. return 0;
  67. }
  68. void gd_com_init(uint32_t com)
  69. {
  70. uint32_t com_id = 0U;
  71. if(GD32_COM0 == com){
  72. com_id = 0U;
  73. }else if(GD32_COM1 == com){
  74. com_id = 1U;
  75. /* enable AF clock */
  76. rcu_periph_clock_enable(RCU_AF);
  77. }else if(GD32_COM2 == com){
  78. com_id = 2U;
  79. }else if(GD32_COM3 == com){
  80. com_id = 3U;
  81. }
  82. /* enable GPIO clock */
  83. rcu_periph_clock_enable(COM_GPIO_CLK[com_id]);
  84. /* enable USART clock */
  85. rcu_periph_clock_enable(COM_CLK[com_id]);
  86. /* connect port to USARTx_Tx */
  87. gpio_init(COM_GPIO_PORT[com_id], GPIO_MODE_AF_PP, GPIO_OSPEED_50MHZ, COM_TX_PIN[com_id]);
  88. /* connect port to USARTx_Rx */
  89. gpio_init(COM_GPIO_PORT[com_id], GPIO_MODE_IN_FLOATING, GPIO_OSPEED_50MHZ, COM_RX_PIN[com_id]);
  90. /* USART configure */
  91. /////////////////////////////////////////////////////////////////
  92. //reconfig
  93. if(GD32_COM1 == com){
  94. gpio_pin_remap_config(GPIO_USART1_REMAP, ENABLE);
  95. }
  96. //reconfig end
  97. //////////////////////////////////////////////////////////////////
  98. usart_deinit(com);
  99. usart_baudrate_set(com, 9600U);
  100. usart_word_length_set(com, USART_WL_8BIT);
  101. usart_parity_config(com, USART_PM_NONE);
  102. usart_stop_bit_set(com, USART_STB_1BIT);
  103. usart_hardware_flow_rts_config(com, USART_RTS_DISABLE);
  104. usart_hardware_flow_cts_config(com, USART_CTS_DISABLE);
  105. usart_receive_config(com, USART_RECEIVE_ENABLE);
  106. usart_transmit_config(com, USART_TRANSMIT_ENABLE);
  107. //usart_enable(com);
  108. }
  109. int USART_IRQHandler(uint32_t com){
  110. if(usart_interrupt_flag_get(com, USART_INT_FLAG_RBNE) != RESET){
  111. uint8_t serial_recv = usart_data_receive(com);
  112. printf("%d",serial_recv);
  113. }
  114. return 0;
  115. }
  116. void delay_1us(uint32_t count)
  117. {
  118. uint64_t start_mtime, delta_mtime;
  119. //uint64_t delay_ticks = (SOC_TIMER_FREQ * (uint64_t)count) / 1000;
  120. uint64_t delay_ticks = (SOC_TIMER_FREQ * (uint64_t)count)/1000000;
  121. start_mtime = SysTimer_GetLoadValue();
  122. do {
  123. delta_mtime = SysTimer_GetLoadValue() - start_mtime;
  124. } while (delta_mtime < delay_ticks);
  125. }


喜欢8
用户评论
宇宙无敌

宇宙无敌 实名认证

懒的都不写签名

积分
问答
粉丝
关注
  • RV-STAR 开发板
  • RISC-V处理器设计系列课程
  • 培养RISC-V大学土壤 共建RISC-V教育生态
RV-STAR 开发板