基于HAL库ECB02蓝牙通过串口2串口透传, 实现串口2接收中断int类型数据,串口1打印
时间: 2023-12-31 13:05:27 浏览: 79
蓝牙串口透传
4星 · 用户满意度95%
可以参考以下代码实现:
```c
#include "stm32f10x.h"
#define BUF_SIZE 128
uint8_t rx_buf[BUF_SIZE];
uint8_t tx_buf[BUF_SIZE];
volatile uint8_t rx_pos = 0;
void USART1_Init(void)
{
// 启动 USART1 时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
// 配置 USART1 引脚
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置 USART1 参数
USART_InitTypeDef USART_InitStructure;
USART_InitStructure.USART_BaudRate = 115200;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
USART_Init(USART1, &USART_InitStructure);
// 配置 USART1 中断
NVIC_InitTypeDef NVIC_InitStructure;
NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_Init(&NVIC_InitStructure);
// 启动 USART1 接收中断
USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
// 启动 USART1
USART_Cmd(USART1, ENABLE);
}
void USART2_Init(void)
{
// 启动 USART2 时钟
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
// 配置 USART2 引脚
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置 USART2 参数
USART_InitTypeDef USART_InitStructure;
USART_InitStructure.USART_BaudRate = 9600;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
USART_Init(USART2, &USART_InitStructure);
// 启动 USART2
USART_Cmd(USART2, ENABLE);
}
void USART1_IRQHandler(void)
{
if (USART_GetITStatus(USART1, USART_IT_RXNE) != RESET)
{
uint8_t data = USART_ReceiveData(USART1);
rx_buf[rx_pos++] = data;
if (rx_pos >= BUF_SIZE)
{
rx_pos = 0;
}
}
}
int main(void)
{
USART1_Init();
USART2_Init();
while (1)
{
if (rx_pos > 0)
{
USART_SendData(USART1, rx_buf[0]);
USART_SendData(USART2, rx_buf[0]);
for (uint8_t i = 1; i < rx_pos; i++)
{
USART_SendData(USART2, rx_buf[i]);
}
rx_pos = 0;
}
}
}
```
这段代码中,我们使用了 STM32F10x 的 HAL 库来配置串口。我们使用了 USART1 和 USART2,其中 USART1 接收中断用来接收数据,USART2 发送数据。当 USART1 接收到数据时,将数据存储到 rx_buf 中,并通过 USART1 和 USART2 发送出去。USART1 接收到的数据会通过串口2传到另外一个设备,而 USART1 通过串口1将数据打印出来。
需要注意的是,这里的代码仅供参考,可能需要根据实际情况作出修改。例如,串口参数需要根据实际情况进行配置,以及中断优先级需要根据实际情况进行设置。同时,为了防止数据丢失,可能需要加入缓冲区以及数据校验等功能。
阅读全文