📄 uart.h
字号:
#ifndef UART__H__
#define UART__H__
#include <stdint.h>
#include <avr/io.h>
#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <avr/interrupt.h>
void Uart_Init(uint16_t UART_BAUD);
void Uart_Send(uint8_t len);
void Uart_Recv(uint8_t len);
uint8_t Is_Recv_Complete(void);
uint8_t Is_Send_Complete(void);
SIGNAL(USART_TXC_vect);
SIGNAL(USART_RXC_vect);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -