Altera_Cyclone_V.JLinkScript 1.0 KB

123456789101112131415161718192021222324252627282930
  1. /*********************************************************************
  2. * (c) SEGGER Microcontroller GmbH & Co. KG *
  3. * The Embedded Experts *
  4. * www.segger.com *
  5. **********************************************************************
  6. -------------------------- END-OF-HEADER -----------------------------
  7. File : Altera_Cyclone_V.JLinkScript
  8. Purpose : Script file for Cyclone V series devices
  9. Literature:
  10. [1] J-Link User Guide
  11. Additional information:
  12. For more information about public functions that can be implemented in order to customize J-Link actions, please refer to [1]
  13. */
  14. /*********************************************************************
  15. *
  16. * ConfigTargetSettings
  17. */
  18. int ConfigTargetSettings(void) {
  19. //
  20. // For the Cyclone V device to work with J-Link the Core type needs to be set manually.
  21. //
  22. CPU = CORTEX_A9;
  23. return 0;
  24. }
  25. /*************************** end of file ****************************/