• RVDS4.0 + JLINK 调试 cortex-A9 分类: HI3531 2013-12-06 17:06 1285人阅读 评论(0) 收藏


    1、RVDS4.0的安装与破解


    参看http://blog.csdn.net/cp1300/article/details/7772645这位大神的帖子吧,写的很详细。


    2、JLINK驱动的安装


    这里安装JLINK_V4.10的驱动。

    本人曾经安装V4.22的版本,结果调试的时候程序一直跑飞,郁闷了N久,在“代码松鼠”的提醒下,更换为4.10版本的驱动,终于能够正常调试了。驱动下载地址:http://download.csdn.net/detail/csuwp02/5149235


    3、RVDS4.0的配置


    (1)首先安装zylincdt插件.

            点击‘帮助’ -------------- ‘SoftwareUpdates’ ---------------‘Find and Install’



               点开后选择下面的一个选项,下一步


               如下图界面


                 点击新建远程站点 ,右边的第一个

     


                           名称填写:  zylincdt

                           URL填写:         http://opensource.zylin.com/zylincdt

     

     

               勾选后点击完成,需要联网下载更新,按提示安装,中途可能会有警告,确认就行,安装完成后会自动重启RVDS的,完  成后在调试里面会多出zylin 相关的调试选项.


      (2)安装YAGARTO

               需要安装两个工具包YAGARTO Tools和 YAGARTO GNU ARM toolchain

       (3)终极配置


    1.   Debug菜单——> 调试配置代开如上图的窗口

    2. 点Debugger选项卡

                

                              在GDB调试器中选择上边安装的YAGARTO路径中的arm-none-eabi-gdb.exe

                c.选Commands选项卡的 “Initialize” Command中输入  


    # connect to the J-Link gdb server
    target remote localhost:2331
    # Set JTAG speed to 30 kHz
    monitor endian little
    monitor speed 30
    # Reset the target
    monitor reset
    monitor sleep 10
    # Setup GDB for faster downloads
    #set remote memory-write-packet-size 1024
    set remote memory-write-packet-size 4096
    set remote memory-write-packet-size fixed
    monitor speed 12000
    break _main
    load

    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    触摸屏网站开发系列(一)-ios web App应用程序(ios meta)
    jQuery Mobile 入门教程
    html的视频插件 (转)
    网页布局流式布局
    2.05-random-uesr-proxy
    2.04-proxy-handler
    2.03-handler_openner
    2.02-request_header_two
    2.01-request_header
    1.03-get_params2
  • 原文地址:https://www.cnblogs.com/mao0504/p/4706707.html
Copyright © 2020-2023  润新知