在Linux下没有像keli那样好用的IDE来开发51单片机,开发环境只能自己搭建了。
第一步:安装交叉编译工具
a) 安装SDCC
sudo apt-get install sdcc
b)测试SDCC是否可用,这是个网上找的简单的流水灯代码 test.c, 用来测试
#include "8051.h" #define uint unsigned int
#define uchar unsigned char
uchar tab[] = {0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80}; void Delay(uint xms){
uint i,j;
for(i=xms;i>;i--)
for(j=;j>;j--);
} void main(){
uchar i;
while(){
for(i=;i<;i++){
P1 = tab[i];
Delay();
}
}
}
编译它:
sdcc test.c
会生成这么多的文件(我们只需要其中的 test.ihx):
test.lk test.map test.rel test.sym test.asm test.ihx test.lst test.mem test.rst
packihx file.ihx >file.hex 转换为hex文件
接着下载hex2bin文件,网址(http://sourceforge.net/projects/hex2bin/files/latest/download)。
hex2bin sourcefile.hex。之后就会生成sourcefile.bin文件。
注意:为了方便以后调用hex2bin,可以将路径加入到 .bashrc文件在~/.bashrc最后一行加上Hex2bin 所在的文件夹位置:
PATH=$PATH:/home/jikexianfeng/-demo/Hex2bin-2.5
可以写个makefile文件,编译方便些
这是我写的makefile:
test.hex : test.c
sdcc test.c
packihx test.ihx > test.hex
hex2bin test.hex
clean:
rm -rf *.asm *.lst *.mem *.rst *.lnk *.rel *.sym *.ihx *.hex *.map
第二步:安装烧写工具
a)下载stcflash: http://github.com/laborer/stcflash ,这是个用python写的向单片机烧写bin文件的软件
b)安装环境:sudo apt-get install python-serial
c)烧写 : sudo python ./stcflash.py test.bin
解决 ImportError: No module named 'serial' 问题
Traceback (most recent call last):
File "/home/jikexianfeng/51-demo/.stcflash/stcflash.py", line , in <module>
import serial
ImportError: No module named serial
解决办法(安装 serial module,这里区分python2和 python3):
sudo apt install python-pip //python2
sudo apt install python3-pip //python3
安装python3的 pip3的时候,如果时国内的软件源可能安装不上,(当时用中国科学技术大学的软件源,python3-pip下载有问题),换成ubuntu官网成功下载。
安装pyserial:
pip install pyserial //python2
pip3 install pyserial //python3
可以从pyserial下载这里去获取源码进行熟悉和学习。