⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uart.h

📁 stm32+ucos-ii
💻 H
字号:
#ifndef __UART_H
#define __UART_H


#include "stm32f10x.h"
#include "includes.h"
void USART1_GPIO_Configuration(void);

void UART1_SendByte(INT8U TxData);

void USART1_SendString(u8* TxString);

void USART1_Configuration(void);

void USART1_NVIC_Configuration(void);

void USART1_RCC_Configuration(void);

void USART1_Init(void);
void USART1_Isr(void);
INT8U USART1_GetByte(INT8U *temp);
void USART1_RXLoop(INT8U temp);

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -