在线看毛片网站电影-亚洲国产欧美日韩精品一区二区三区,国产欧美乱夫不卡无乱码,国产精品欧美久久久天天影视,精品一区二区三区视频在线观看,亚洲国产精品人成乱码天天看,日韩久久久一区,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)用 > AVR的uart串口通信程序

            AVR的uart串口通信程序

            作者: 時間:2018-09-14 來源:網(wǎng)絡(luò) 收藏

            //1、使用ICC的終端調(diào)試窗口(Terminal),進(jìn)行通信調(diào)試。
            //2、對ICC的終端調(diào)試窗口進(jìn)行設(shè)置,設(shè)置串口為com1或com2
            //通信波特率為19200(Tools->EnvironmentOptions...)。
            //3、將PC屏幕光標(biāo)定位于調(diào)試窗口中。
            #include
            #definefosc8000000//晶振8MHZ
            #definebaud19200//波特率
            #defineosc_address0x1ff0
            externunsignedcharread_flash(unsignedintadd);

            voidputchar(unsignedcharc)
            {
            while(!(UCSRA(1UDR=c;
            }

            unsignedchargetchar(void)
            {
            while(!(UCSRA(1returnUDR;
            }

            intputs(char*s)
            {
            while(*s)
            {
            putchar(*s);
            s++;
            }
            putchar(0x0a);//回車換行
            putchar(0x0d);
            return1;
            }

            voidputstr(char*s)
            {
            while(*s)
            {
            putchar(*s);
            s++;
            }
            }

            void_init(void)
            {
            OSCCAL=read_flash(osc_address);
            UCSRB=(1UBRRL=(fosc/16/(baud+1))%6;
            UBRRH=(fosc/16/(baud+1))/256;
            UCSRC=(1}

            voidmain(void)
            {
            unsignedchari;
            _init();
            puts(廣州天河雙龍電子公司RS232通信演示程序);
            puts(HTTP://WWW.SL.COM.CN);
            puts([email protected]);
            while(1)
            {
            i=getchar();
            if(i!=0)//按PC鍵盤開始測試
            {
            putstr(當(dāng)前按鍵是:);
            putchar(i);
            putchar(0x0a);
            putchar(0x0d);
            puts(廣州天河雙龍電子公司RS232通信演示程序);
            puts(HTTP://WWW.SL.COM.CN);
            puts([email protected]);
            putchar(0x0a);
            putchar(0x0d);
            }
            }
            }

            本文引用地址:http://www.biyoush.com/article/201809/389164.htm


            關(guān)鍵詞: AVR uart 串口通信

            評論


            相關(guān)推薦

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

            關(guān)閉