serial.h

来自「Code C Serial with AT89s52」· C头文件 代码 · 共 19 行

H
19
字号
//---------------------------------------
// Example read and write DS1820
// for AT89S52
// KEIL C51 v7.5
// www.GetMicro.com
//---------------------------------------
#include <AT89X52.H>
#ifndef _SERIAL_H
#define _SERIAL_H

extern void InitSerial(void);

extern void send_data(char uart_data);

extern void send_string(char my_data[]);

#endif

⌨️ 快捷键说明

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