串行通信中断方式子程序
2016-01-07 来源:eefocus
*文件描述:本文件包含了串行通信的4子程序,分别为:
*(1)SCISend1:串行发送1字节
*(2)SCISendN:串行发送n字节
*(3)SCIRe1:串行接收1字节
*(4)SCIReN:串行接收n字节
//[以下为子程序源代码]
//[包含头文件]
#include 'SCI.h'
/*SCISend1:串行发送1个字节-----------------------------*
*功
*参
*返
*-----------------------------------------------------*/
void SCISend1(unsigned char o)
/*SCISendN:串行发送N个字节-----------------------------*
*功
*参
*返
*-----------------------------------------------------*/
void SCISendN(unsigned char n,unsigned char ch[])
/*SCIRe1:串行收一个字节数据----------------------------*
*功
*参
*返
*说
*-----------------------------------------------------*/
unsigned char SCIRe1(unsigned char *p)
/*SCIReN:HC08串行接收N个字节---------------------------*
*功
*参
*返
*-----------------------------------------------------*/
unsigned char SCIReN(unsigned char n,unsigned char ch[])
上一篇:单片机有中断机制的理由