myUart.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #include "myUart.h"
  2. #include "stm32f10x_rcc.h"
  3. #include "stm32f10x_usart.h"
  4. #include "misc.h"
  5. UART_CALLBACK uartCallBack;
  6. uint8_t USART_RX_BUF[USART_REC_LEN]; //
  7. uint16_t USART_RX_STA=0; //接收状态标记
  8. void myUart1_init(uint32_t baudrate, UART_CALLBACK cb)
  9. {
  10. GPIO_InitTypeDef GPIO_InitStructure;
  11. USART_InitTypeDef USART_InitStructure;
  12. NVIC_InitTypeDef NVIC_InitStructure;
  13. RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE); //使能USART1,GPIOA时钟
  14. //USART1_TX GPIOA.9
  15. GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; //PA.9
  16. GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  17. GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //复用推挽输出
  18. GPIO_Init(GPIOA, &GPIO_InitStructure);//初始化GPIOA.9
  19. //USART1_RX GPIOA.10初始化
  20. GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;//PA10
  21. GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;//浮空输入
  22. GPIO_Init(GPIOA, &GPIO_InitStructure);//初始化GPIOA.10
  23. //Usart1 NVIC 配置
  24. NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
  25. NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=3 ;//抢占优先级3
  26. NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3; //子优先级3
  27. NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; //IRQ通道使能
  28. NVIC_Init(&NVIC_InitStructure); //根据指定的参数初始化VIC寄存器
  29. //USART 初始化设置
  30. USART_InitStructure.USART_BaudRate = baudrate;//串口波特率
  31. USART_InitStructure.USART_WordLength = USART_WordLength_8b;//字长为8位数据格式
  32. USART_InitStructure.USART_StopBits = USART_StopBits_1;//一个停止位
  33. USART_InitStructure.USART_Parity = USART_Parity_No;//无奇偶校验位
  34. USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;//无硬件数据流控制
  35. USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; //收发模式
  36. USART_Init(USART1, &USART_InitStructure); //初始化串口1
  37. USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);//开启串口接受中断
  38. USART_ITConfig(USART1, USART_IT_IDLE, ENABLE);//开启串口接受中断
  39. // USART_ITConfig(USART1, USART_IT_TC, ENABLE);// 使能串口发送完成中断
  40. USART_Cmd(USART1, ENABLE); //使能串口1
  41. uartCallBack = cb;
  42. }
  43. void myUart1_sendByte(uint8_t src)
  44. {
  45. while(!USART_GetFlagStatus(USART1, USART_FLAG_TC));
  46. USART_SendData(USART1, src);
  47. }
  48. void myUart1_sendArray(uint8_t *src, uint16_t srclen)
  49. {
  50. while(srclen --)
  51. {
  52. myUart1_sendByte(*src);
  53. src ++;
  54. }
  55. }
  56. void USART1_IRQHandler(void) //串口1中断服务程序
  57. {
  58. uint8_t Res;
  59. if(USART_GetITStatus(USART1, USART_IT_IDLE) != RESET)
  60. {
  61. Res =USART_ReceiveData(USART1); //读取接收到的数据
  62. uartCallBack(USART_RX_BUF, USART_RX_STA);
  63. memset(USART_RX_BUF, 0, sizeof(USART_RX_BUF));
  64. USART_RX_STA=0;
  65. }
  66. if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET) //
  67. {
  68. Res =USART_ReceiveData(USART1); //读取接收到的数据
  69. USART_RX_BUF[USART_RX_STA] = Res ;
  70. USART_RX_STA++;
  71. if(USART_RX_STA > (USART_REC_LEN - 1))
  72. {
  73. USART_RX_STA=0;//接收数据错误,重新开始接收
  74. }
  75. }
  76. }
  77. //////////////////////////////////////////////////////////////////
  78. //加入以下代码,支持printf函数,而不需要选择use MicroLIB
  79. #if 1
  80. #pragma import(__use_no_semihosting)
  81. //标准库需要的支持函数
  82. struct __FILE
  83. {
  84. int handle;
  85. };
  86. FILE __stdout;
  87. //定义_sys_exit()以避免使用半主机模式
  88. _sys_exit(int x)
  89. {
  90. x = x;
  91. }
  92. //重定义fputc函数
  93. int fputc(int ch, FILE *f)
  94. {
  95. while((USART1->SR&0X40)==0);//循环发送,直到发送完毕
  96. USART1->DR = (uint8_t) ch;
  97. return ch;
  98. }
  99. #endif