ARTIK05X.JLinkScript 550 B

123456789101112131415161718
  1. void InitTarget(void) {
  2. Report("Connect to S5JT200 with JTAG");
  3. JTAG_DRPre = 0;
  4. JTAG_DRPost = 0;
  5. JTAG_IRPre = 0;
  6. JTAG_IRPost = 0;
  7. JTAG_IRLen = 4;
  8. CPU = CORTEX_R4;
  9. JTAG_AllowTAPReset = 1;
  10. //
  11. // Base address of debug registers differs from device to device, so this needs to be adapted
  12. //
  13. CORESIGHT_CoreBaseAddr = 0x801E0000; // Base address of debug registers
  14. //
  15. // Manually configure which APs are present on the CoreSight device
  16. //
  17. }