This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Reset button from IDE

Hi,

Is there a button to reset the microcontroller? After program it sometimes is necessary perform a reset more than one time to debug or any reason and is more comfortable to do it from keil instead of power cycling.

Thanks

Parents
  • Buy a SEGGER J-Link or use one that you currently own.

    Run J-Link Commander from the Start Menu or JLink.exe from a command prompt.

    J-Link>connect ; connect to the J-Link Device
    
    J-Link>r0  ; will drive the reset line low on the J-Link
    J-Link>r1  ; will drive the reset line high on the J-Link
    

    My guess is most JTAG devices have a simple control program that you could do something similar with.

Reply
  • Buy a SEGGER J-Link or use one that you currently own.

    Run J-Link Commander from the Start Menu or JLink.exe from a command prompt.

    J-Link>connect ; connect to the J-Link Device
    
    J-Link>r0  ; will drive the reset line low on the J-Link
    J-Link>r1  ; will drive the reset line high on the J-Link
    

    My guess is most JTAG devices have a simple control program that you could do something similar with.

Children