zoukankan      html  css  js  c++  java
  • jlink commander使用

    1.将JLink.exe拷贝到某个文件夹底下

    2.建立bat文件,内容如下:

    JLink.exe -device Cortex-A7 -if JTAG -speed 4000 -jtagconf -1,-1 -autoconnect 1 -CommandFile E:CommandFile.jlink

    3.建立命令行文件CommandFile.jlink,内容如下:

    h
    loadbin E:5_Project56_procixxProcixx_prjfmql_sdk1030_prc201910281217_releaseuboot_bit_imagefsbl.bin 0x20000
    setPC 0x20000
    g
    waithalt
    loadbin E:5_Project56_procixxProcixx_prjfmql_sdk1030_prc201910281217_releaseuboot_bit_imageu-boot.bin 0x4000000
    setPC 0x4000000
    g

    readme

    JLink.exe -device Cortex-A7 -if JTAG -speed 4000 -jtagconf -1,-1 -autoconnect 1 -CommandFile E:3_Work32_PSOC3226_jlinkCommandFile.jlink

    -device Cortex-A7        Pre-selects the device J-Link Commander shall connect to.
    -if JTAG                 Selects the target interface J-Link shall use to connect to the target.
    -speed 4000             This command sets the speed for communication with the CPU core. in kHz.
    -jtagconf -1,-1         Passes IRPre and DRPre in order to select a specific device in a JTAG-chain. “-1,-1” can be
    used to let J-Link select a device automatically.
    -autoconnect 1             let J-Link Commander automatically start the connect sequence
    for connecting to the target when entering interactive mode.
    -CommandFile            Selects a command file and starts J-Link Commander in batch mode.


    h
    loadbin E:5_Project56_procixxProcixx_prjfmql_sdk1030_prc201910281217_releaseuboot_bit_imagefsbl.bin 0x20000
    setPC 0x20000
    g
    waithalt
    h
    loadbin E:5_Project56_procixxProcixx_prjfmql_sdk1030_prc201910281217_releaseuboot_bit_imageu-boot.bin 0x4000000
    setPC 0x4000000
    g


    h--->halt
    loadbin <filename>, <addr>--->Load *.bin file into target memory.
    SetPC <Addr>--->Sets the PC to the specified value.
    g--->Starts the CPU.
    waithalt-->WaitHalt   Waits until the CPU is halted or the given timeout is exceeded.
                 Syntax: WaitHalt <TimeoutMs>  Default timeout is 1000 ms

  • 相关阅读:
    缠中说禅 摘选
    laravel中不使用 remember_token时退出报错,如何解决?
    关于Ubuntu拒绝root用户ssh远程登录
    laravel中类似于thinkPHP中trace功能
    js原生语法实现表格操作
    使用clear来清除localStorage保存对象的全部数据
    JS设置CSS样式的集中方式
    thinkphp两表联查并且分页
    生于忧患,死于安乐 (先秦:孟子及其弟子)
    在对年轻人最不友好的环境中,刘裕起于阡陌,成就霸业
  • 原文地址:https://www.cnblogs.com/idyllcheung/p/11846793.html
Copyright © 2011-2022 走看看