怎么在ubuntu18上烧写51

2019-07-22  本文已影响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
    是让你重启单片机的意思

想我尽早更新的方法之一

上一篇下一篇

猜你喜欢

热点阅读