Changes between Version 2 and Version 3 of Exercises/13_4/IntroToSDK


Ignore:
Timestamp:
Aug 3, 2012, 2:54:26 PM (12 years ago)
Author:
chunter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Exercises/13_4/IntroToSDK

    v2 v3  
    55First, we briefly describe the tools that will be used in this exercise.
    66
    7 == Xilinx Platform Studio (XPS) ==
     7=== Xilinx Platform Studio (XPS) ===
    88Simply put, XPS is the tool that lets you connect your own custom FPGA designs to the custom constraints of the WARP v3 hardware. It also lets you draw from a library of Xilinx-provided peripheral cores (known as pcores) to use in your design. For example, to use the Ethernet hardware on WARP v3, the XPS project you use will need to instantiate an Ethernet MAC peripheral. For our designs, we use the Tri-Mode Ethernet Media Access Controller (TEMAC) to accomplish this. Also, XPS lets you instantiate a processor for running custom software known as MicroBlaze. To write code for MicroBlaze, a different tool known as the Software Development Kit (SDK) is used.
    99
    1010
    11 == Software Development Kit (SDK) ==
     11=== Software Development Kit (SDK) ===
    1212The SDK will look very familiar to users who are comfortable with the [http://www.eclipse.org/ Eclipse IDE]
     13
     14== Instructions ==
     15
     161. Download either the [wiki:HardwareUsersGuides/WARPv3/TemplateProjects WARP v3 Template Project] or the [wiki:HardwareUsersGuides/WARPv2/TemplateProjects WARP v2 Template Project] according to the which hardware you are using.
     171. Extract the archive into a folder on your hard drive. Note: this folder '''must not''' contain any spaces in the path (this includes the the Windows desktop, as that lives in a folder known as "Documents and Settings").
     181. Rename the folder to remove the "_cleaned" suffix and replace it with "_helloworld."