iMX23.JLinkScript 1.3 KB

12345678910111213141516171819202122232425262728
  1. /*********************************************************************
  2. * SEGGER Microcontroller GmbH *
  3. * Solutions for real time microcontroller applications *
  4. **********************************************************************
  5. * *
  6. * (c) 1995 - 2018 SEGGER Microcontroller GmbH *
  7. * *
  8. * www.segger.com Support: support@segger.com *
  9. * *
  10. **********************************************************************
  11. ----------------------------------------------------------------------
  12. File : TMS570.JLinkScript
  13. Purpose : J-Link target setup file for Freescale iMX23.
  14. ---------------------------END-OF-HEADER------------------------------
  15. */
  16. /*********************************************************************
  17. *
  18. * InitTarget
  19. */
  20. void InitTarget(void) {
  21. Report("iMX23 (ARM926EJ-S core) J-Link script");
  22. JTAG_ResetPin = 0;
  23. SYS_Sleep(50);
  24. JTAG_ResetPin = 1;
  25. SYS_Sleep(400); // We need to wait for 400 ms
  26. JTAG_AllowTAPReset=1;
  27. }