本文主要是介绍ubuntu10.04下使用openocd,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
软件的安装
一.安装libusb-0.1.12.tar.gz
1. tar xvzf libusb-0.1.12.tar.gz
2. cd libusb-0.1.12
3. ./configure
4. make
5. make install
二.安装openocd-0.4.0.tar.gz
1 tar xvzf openocd-0.4.0.tar.gz
2 cd openocd-0.4.0
3. ./configure --prefix=/usr/opt --enable-jlink //target is jlink
4. make
5. make install
运行
注意这里运行openocd需要较高的权限 并且需要一个openocd.cfg
1. cd /opt/openocd/bin
2. sudo ./openocd openocd.cfg
基于2410的openocd.cfg的下载:
说明:这里的openocd.cfg需要根据实际的目标写 这里我的板子是基于2410的
我是参考网上的一份以及openocd下的mini2440.cfg合成(能运行 但有bug)
新开一个终端
1. telnet localhost 4444
参考blog:
http://www.eetop.cn/blog/html/01/148101-13772.html
http://blog.ednchina.com/panasonic_lin/280777/message.aspx
http://yutoufishhead.spaces.live.com/blog/cns!4FF22CD714478E54!361.entry
运行截图
这篇关于ubuntu10.04下使用openocd的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!