在线看毛片网站电影-亚洲国产欧美日韩精品一区二区三区,国产欧美乱夫不卡无乱码,国产精品欧美久久久天天影视,精品一区二区三区视频在线观看,亚洲国产精品人成乱码天天看,日韩久久久一区,91精品国产91免费

<menu id="6qfwx"><li id="6qfwx"></li></menu>
    1. <menu id="6qfwx"><dl id="6qfwx"></dl></menu>

      <label id="6qfwx"><ol id="6qfwx"></ol></label><menu id="6qfwx"></menu><object id="6qfwx"><strike id="6qfwx"><noscript id="6qfwx"></noscript></strike></object>
        1. <center id="6qfwx"><dl id="6qfwx"></dl></center>

            新聞中心

            EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應(yīng)用 > 串行通信中斷方式子程序

            串行通信中斷方式子程序

            作者: 時間:2016-11-23 來源:網(wǎng)絡(luò) 收藏
            /*-----------------------------------------------------*

            *文件描述:本文件包含了串行通信的4子程序,分別為: *
            *(1)SCISend1:串行發(fā)送1字節(jié) *
            *(2)SCISendN:串行發(fā)送n字節(jié) *
            *(3)SCIRe1:串行接收1字節(jié) *
            *(4)SCIReN:串行接收n字節(jié) *
            //[以下為子程序源代碼]
            //[包含頭文件]
            #include "SCI.h"
            /*SCISend1:串行發(fā)送1個字節(jié)-----------------------------*
            *功 能:串行發(fā)送1個字節(jié) *
            *參 數(shù):要發(fā)送的數(shù)據(jù) *
            *返 回:無 *
            *-----------------------------------------------------*/
            void SCISend1(unsigned char o)
            {//判斷ReStatusR的第SendTestBit位是否為1,是1可以發(fā)送
            while(1)
            if ((ReSendStatusR & (1< { ReSendDataR=o;
            break;}
            }
            /*SCISendN:串行發(fā)送N個字節(jié)-----------------------------*
            *功 能:發(fā)送數(shù)組中的N個字節(jié)數(shù)據(jù) *
            *參 數(shù):待發(fā)送的數(shù)據(jù)字節(jié)數(shù)及其要存放的數(shù)組首地址 *
            *返 回:無 *
            *-----------------------------------------------------*/
            void SCISendN(unsigned char n,unsigned char ch[])
            {int i;
            for(i=0;i
            SCISend1(ch[i]);
            }
            /*SCIRe1:串行收一個字節(jié)數(shù)據(jù)----------------------------*
            *功 能:從串行口接收1個字節(jié)的數(shù)據(jù) *
            *參 數(shù):標(biāo)志指針p *
            *返 回:接收到的數(shù)據(jù)(若接收失敗,返回0xff) *
            *說 明:參數(shù)*p帶回接收標(biāo)志=0收到數(shù)據(jù),=1未收到數(shù)據(jù) *
            *-----------------------------------------------------*/
            unsigned char SCIRe1(unsigned char *p)
            { unsigned int k;
            unsigned char i;
            //ReStatusR第ReTestBit位為1表示可接收數(shù)據(jù)
            for(k=0;k<0xfbbb;k++)
            if ((ReSendStatusR & (1< {i=ReSendDataR;
            *p=0x00;
            break;}
            if(k>=0xfbbb)
            {i=0xff;
            *p=0x01;}
            return i; //返回接收到的數(shù)據(jù)
            }
            /*SCIReN:HC08串行接收N個字節(jié)---------------------------*
            *功 能:接收N個字節(jié)數(shù)據(jù),并存放在ch數(shù)組中 *
            *參 數(shù):待接收的數(shù)據(jù)字節(jié)數(shù)及其存放的數(shù)組首地址 *
            *返 回:接收標(biāo)志=0收到數(shù)據(jù),=1未收到數(shù)據(jù) *
            *-----------------------------------------------------*/
            unsigned char SCIReN(unsigned char n,unsigned char ch[])
            {int m;
            unsigned char fp;
            m=0;
            while (m{
            ch[m]=SCIRe1(&fp);
            if (fp==1) return 1;
            m++;
            }
            return 0;
            }

            本文引用地址:http://www.biyoush.com/article/201611/320536.htm


            關(guān)鍵詞: 串行通信中斷方式子程

            評論


            技術(shù)專區(qū)

            關(guān)閉