stm32单片机串口接收nbiot32库函数版
时间: 2023-08-07 21:08:15 浏览: 88
下面是 STM32 单片机串口接收 NB-IoT32 库函数版的示例代码,你可以根据自己的需求进行修改:
```c
#include "stm32f10x.h"
#include "nbiot32.h"
#define UART_PORT USART1
#define UART_BAUDRATE 9600
void UART_Config(void);
void NVIC_Config(void);
void Delay(__IO uint32_t nCount);
int main(void)
{
uint8_t rx_data;
uint8_t rx_buffer[32];
uint8_t rx_index = 0;
UART_Config();
NVIC_Config();
NB_Init(UART_PORT, UART_BAUDRATE);
while (1)
{
if (NB_RecvData(&rx_data)) // 接收到新数据
{
if (rx_data == '\n') // 接收到换行符,表示一条完整的数据已经接收完毕
{
rx_buffer[rx_index] = '\0'; // 在接收缓存区末尾添加结束符
// 处理接收到的数据(这里只是简单地将数据原样发送回去)
NB_SendData(rx_buffer, strlen(rx_buffer));
// 清空接收缓存区,准备接收下一条数据
memset(rx_buffer, 0, sizeof(rx_buffer));
rx_index = 0;
}
else
{
rx_buffer[rx_index++] = rx_data; // 将接收到的数据存入接收缓存区
}
}
}
}
void UART_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);
// 配置 USART1 TX(PA9) 引脚为推挽输出
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);
// 配置 USART1 RX(PA10) 引脚为浮空输入
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置 USART1 参数
USART_InitStructure.USART_BaudRate = UART_BAUDRATE;
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_Rx | USART_Mode_Tx;
USART_Init(UART_PORT, &USART_InitStructure);
USART_Cmd(UART_PORT, ENABLE);
}
void NVIC_Config(void)
{
NVIC_InitTypeDef NVIC_InitStructure;
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);
NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_Init(&NVIC_InitStructure);
USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
}
void Delay(__IO uint32_t nCount)
{
for(; nCount != 0; nCount--);
}
void USART1_IRQHandler(void)
{
if (USART_GetITStatus(USART1, USART_IT_RXNE) != RESET)
{
USART_ClearITPendingBit(USART1, USART_IT_RXNE);
}
}
```
注意,这里的 `NB_Init` 函数是 NB-IoT32 库封装的初始化函数,你需要将其加入你的工程中。此外,上述代码只是一个示例,你需要根据你的具体应用场景进行修改。
阅读全文