• Stm32_标准库_13_串口&蓝牙模块_手机与蓝牙模块通信


    代码:

    #include "stm32f10x.h"                  // Device header
    #include "Delay.h"
    #include "OLED.h"
    #include "Serial.h"
     
    
    char News[100] = "";
    
    uint8_t flag = 1;
    
    void Get_Hc05News(char *a){
    	   uint32_t i = 0, j = 0;
    	  
    	      while(j < 10000){//等待中断
    			
    	      while(Serial_GetRxFlag() == 1){//获取一个字节
    	         //查看标志位并清除
    			       
    					    News[i] =  Serial_GetRxData();//传入数据
    					    i ++;
    				      j = 0;
    					    flag = 0;
    		     }
    		 
    		     j ++;
    		    }
    	 }
    
     
    
    	
    int main(void)
    {
    	OLED_Init();
      Serial_Init();//开启串口
    	 
     
    	 while(1){
    		     Get_Hc05News(News);
    		     if(flag == 0){//有数据再输出
    		    
    		       OLED_ShowString(1, 1, News);
    					 flag = 1;
    				 }
    	 }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47

    其中 Serial.c

    代码:

    #include "stm32f10x.h"                  // Device header
    #include 
    #include 
    #include "Delay.h"
    
    uint8_t TEMP;
    uint8_t Serial_RxData;
    uint8_t Serial_RxFlag;
    GPIO_InitTypeDef GPIO_InitStructu;
    USART_InitTypeDef USART_InitStructure;
    NVIC_InitTypeDef NVIC_InitStructure;
    
    void Serial_Init(void)
    {
    	RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
    	RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
    	
    	 
    	GPIO_InitStructu.GPIO_Mode = GPIO_Mode_AF_PP;
    	GPIO_InitStructu.GPIO_Pin = GPIO_Pin_9;
    	GPIO_InitStructu.GPIO_Speed = GPIO_Speed_50MHz;
    	GPIO_Init(GPIOA, &GPIO_InitStructu);
    	
    	GPIO_InitStructu.GPIO_Mode = GPIO_Mode_IPU;
    	GPIO_InitStructu.GPIO_Pin = GPIO_Pin_10;
    	GPIO_InitStructu.GPIO_Speed = GPIO_Speed_50MHz;
    	GPIO_Init(GPIOA, &GPIO_InitStructu);
    	
    	
    	 
    	USART_InitStructure.USART_BaudRate = 9600;
    	USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
    	USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
    	USART_InitStructure.USART_Parity = USART_Parity_No;
    	USART_InitStructure.USART_StopBits = USART_StopBits_1;
    	USART_InitStructure.USART_WordLength = USART_WordLength_8b;
    	USART_Init(USART1, &USART_InitStructure);
    	
    	
    	
    	//中断开启
    	USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
    	
    	NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);//通道
    	
    	 
    	NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;//中断通道
    	NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
    	NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
    	NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
    	NVIC_Init(&NVIC_InitStructure);
    	
    	USART_Cmd(USART1, ENABLE);
    }
    
    void Serial_SendByte(uint8_t Byte)//传递数据至TDR
    {
    	USART_SendData(USART1, Byte);
    	while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
    }
    
    void Serial_SendArray(uint8_t *Array, uint16_t Length)//传数组
    {
    	uint16_t i;
    	for (i = 0; i < Length; i ++)
    	{
    		Serial_SendByte(Array[i]);
    	}
    }
    
    void Serial_SendString(char *String)//传字符串
    {
    	uint8_t i;
    	for (i = 0; String[i] != '\0'; i ++)
    	{
    		Serial_SendByte(String[i]);
    	}
    }
    
    uint32_t Serial_Pow(uint32_t X, uint32_t Y)//pow函数
    {
    	uint32_t Result = 1;
    	while (Y --)
    	{
    		Result *= X;
    	}
    	return Result;
    }
    
    void Serial_SendNumber(uint32_t Number, uint8_t Length)//传递无符号数字
    {
    	uint8_t i;
    	for (i = 0; i < Length; i ++)
    	{
    		Serial_SendByte(Number / Serial_Pow(10, Length - i - 1) % 10 + '0');
    	}
    }
    
    int fputc(int ch, FILE *f)
    {
    	Serial_SendByte(ch);
    	return ch;
    }
    
    void Serial_Printf(char *format, ...)
    {
    	char String[100];
    	va_list arg;
    	va_start(arg, format);
    	vsprintf(String, format, arg);
    	va_end(arg);
    	Serial_SendString(String);
    }
    
    uint8_t Serial_GetRxFlag(void)//读取标志位后自动青除
    {
    	if (Serial_RxFlag == 1)
    	{
    		Serial_RxFlag = 0;
    		return 1;
    	}
    	return 0;
    }
    
    void Serial_GetRxFlag_SET(void){
    	   Serial_RxFlag = 1;
    }
    uint8_t Serial_GetRxData(void)//返回一个字节
    {
    	 
      TEMP = Serial_RxData;
    	//Serial_RxData = '#';//消除传输数据
    	return TEMP;
    }
    
    void USART1_IRQHandler(void)//中断函数
    {
    	
    	if (USART_GetITStatus(USART1, USART_IT_RXNE) == SET)
    	{
    		Serial_RxData = USART_ReceiveData(USART1);//读数据
    		Serial_SendByte(Serial_RxData);
    	 
    		Serial_RxFlag = 1;
    		USART_ClearITPendingBit(USART1, USART_IT_RXNE);
    	}
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148

    Serial.h

    代码:

    #ifndef __SERIAL_H
    #define __SERIAL_H
    #include "stm32f10x.h"  
    #include 
    
    void Serial_Init(void);
    void Serial_SendByte(uint8_t Byte);
    void Serial_SendArray(uint8_t *Array, uint16_t Length);
    void Serial_SendString(char *String);
    void Serial_SendNumber(uint32_t Number, uint8_t Length);
    void Serial_Printf(char *format, ...);
    
    uint8_t Serial_GetRxFlag(void);
    uint8_t Serial_GetRxData(void);
    
    void Serial_GetRxFlag_SET(void);
    
    #endif
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    效果:

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

  • 相关阅读:
    使用 Postman 工具高效管理和测试 SAP ABAP OData 服务的试读版
    UI自动化
    四个,Word提高效率小技巧
    面试记录_
    机器学习案例(十):新闻分类
    python之df.index.to_native_types()应用举例
    Kotlin filterIsInstance filterNotNull forEach
    循环神经网络时间序列预测
    微服务远程调用组件Feign的使用详解
    Python之Xlwings操作excel
  • 原文地址:https://blog.csdn.net/xyint/article/details/133847815