美文网首页
怎么在ubuntu18上烧写51

怎么在ubuntu18上烧写51

作者: 今日你学左米啊 | 来源:发表于2019-07-22 10:33 被阅读0次

    怎么在ubuntu18上烧写51

    1. 安装编译工具:sdcc
    sudo apt-get install sdcc 
    

    sdcc官网

    1. 安装下载工具:stcgal
    pip3 insyall stcgal
    

    stcgal的giuhub地址

    1. 例程(一个简单的流水灯:hello.c)
    #include "8052.h"
    
    #define uint unsigned int 
    #define uchar unsigned char 
    uchar tab[8] = {0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80};
    
    void Delay(uint xms)
    {
            uint i,j;
            for(i=xms;i>0;i--)
            for(j=110;j>0;j--);
    }
    
    void main()
    {
            uchar i;
            while(1)
            {
                    for(i=0;i<8;i++)
                    {
                            P2 = tab[i];
                            Delay(100);
                    }
            }
    }
    

    终端下:

    sdcc hello.c
    stcgal hello.ihx
    

    如果出现什么问题,或者需要其他选项的时候可以看看上面两个工具的文档.

    1. waitting for cycle power
      是让你重启单片机的意思

    想我尽早更新的方法之一

    相关文章

      网友评论

          本文标题:怎么在ubuntu18上烧写51

          本文链接:https://www.haomeiwen.com/subject/dsjblctx.html