micro_climate/Drivers/Shell/shell_uart.h

13 lines
180 B
C

#ifndef SHELL_UART_H
#define SHELL_UART_H
#include "uart_dev.h"
#include <yfuns.h>
//发送一个字符
void dev_uart_out_char(char c);
//读取一个字符
char dev_uart_in_char();
#endif