avr isp:uisp

原文链接:http://www.cnblogs.com/van9ogh/archive/2012/05/05/2484840.html

Avr系列烧写程序,使用的工具为uisp,这个可以在每次使用

make micaz install mib520,/dev/ttyUSB0

看到,输出如下:

cp build/micaz/main.srec build/micaz/main.srec.out
    installing micaz binary using mib510
uisp -dprog=mib510 -dserial=/dev/ttyUSB0 --wr_fuse_h=0xd9 -dpart=ATmega128  --wr_fuse_e=ff   --erase --upload if=build/micaz/main.srec.out --verify
Firmware Version: 1.8 

Fuse High Byte set to 0xd9

Fuse Extended Byte set to 0xff
rm -f build/micaz/main.exe.out build/micaz/main.srec.out

表示isp首先复制一份main.srec -> main.srec.out,准备安装到micaz节点,对应的平台为mib510,完成之后删除main.srec.out

这里烧写应用程序用的工具为uisp,参数可以通过man来查看

 

参考:[1].http://www.nongnu.org/uisp/index.html 官方网站

        [2].http://en.wikipedia.org/wiki/In-system_programming 介绍ISP

转载于:https://www.cnblogs.com/van9ogh/archive/2012/05/05/2484840.html

上一篇:接口隔离原则 (ISP:Interface Segregation Principle)


下一篇:Anconda使用