请使用标准库函数并且使用中断处理函数实现通过USART1给stm32f407单片机发送一个数,然后能接收到USART1发送出来的10个数的程序,并且不许使用打印函数
时间: 2023-12-03 16:45:44 浏览: 81
这是一个比较复杂的程序,需要涉及到中断处理函数和USART的配置。以下是参考代码:
```c
#include "stm32f4xx.h"
#include <stdlib.h>
#define MAX_COUNT 10
volatile uint8_t rx_buffer[MAX_COUNT];
volatile uint8_t rx_count = 0;
void USART1_IRQHandler(void) {
if (USART_GetITStatus(USART1, USART_IT_RXNE) != RESET) {
rx_buffer[rx_count++] = USART_ReceiveData(USART1);
if (rx_count >= MAX_COUNT) {
USART_ITConfig(USART1, USART_IT_RXNE, DISABLE);
}
}
}
void USART1_Init(void) {
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
NVIC_InitTypeDef NVIC_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
GPIO_PinAFConfig(GPIOB, GPIO_PinSource6, GPIO_AF_USART1); // USART1_TX
GPIO_PinAFConfig(GPIOB, GPIO_PinSource7, GPIO_AF_USART1); // USART1_RX
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOB, &GPIO_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_Rx | USART_Mode_Tx;
USART_Init(USART1, &USART_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);
USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
USART_Cmd(USART1, ENABLE);
}
void USART1_Send(uint8_t data) {
while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
USART_SendData(USART1, data);
}
int main(void) {
USART1_Init();
int num = 1234;
char num_str[5];
itoa(num, num_str, 10);
for (int i = 0; i < 5; i++) {
USART1_Send(num_str[i]);
}
while (rx_count < MAX_COUNT);
for (int i = 0; i < MAX_COUNT; i++) {
USART1_Send(rx_buffer[i]);
}
while (1);
}
```
在这个程序中,首先我们定义了一个 `rx_buffer` 数组来保存接收到的数据,并且定义了一个 `rx_count` 变量来记录已经接收到的字节数。然后我们实现了一个 `USART1_IRQHandler` 中断处理函数来处理 USART1 的接收中断。当接收到数据时,我们将其存储到 `rx_buffer` 数组中,并且在接收到足够的数据后禁用接收中断。最后,我们通过 `USART1_Send` 函数来发送数据,然后等待接收到足够的数据后再通过 USART1 发送数据。
在 `main` 函数中,我们首先调用 `USART1_Init` 函数来初始化 USART1。然后我们将一个整数转换成字符串,并且通过 USART1 发送每一个字符。接着我们通过一个循环等待接收到足够的数据,然后将接收到的数据通过 USART1 发送出去。最后我们进入一个死循环来等待。
阅读全文