我是靠谱客的博主 踏实超短裙,最近开发中收集的这篇文章主要介绍单片机——串口中断,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本程序的功能是通过串口中断进行串口数据的收发
#include <reg52.h>
#include "./delay/delay.h"
void uart_init()
{
   SCON = 0x50;
   TMOD |= 0x20;
   TH1 = 0xfd;
   TR1 = 1;
}
void uart_send_byte(unsigned char byte)
{
   SBUF = byte;
   while(!TI);
  TI = 0;
}
void uart_send_str(unsigned char *s)
{
   while(*s)
  {
     uart_send_byte(*s);
     s++;
    }
}
void main()
{
   unsigned char tmp[10];
    unsigned char i = 0;
   uart_init();
   uart_send_str("please input a char:n");
   while(1)
  {
    //uart_send_byte(0x22);
    if(RI)
    {
    
     if(i >= 10)
     {
       break;
         }
     if(SBUF == ' ')
     {
        break;
         }
        tmp[i] = SBUF;
      i++;
      RI = 0;
       }
    }
  uart_send_str(" char:");
  uart_send_str(tmp);
    uart_send_str("rn");
}

最后

以上就是踏实超短裙为你收集整理的单片机——串口中断的全部内容,希望文章能够帮你解决单片机——串口中断所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部