This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
firstexample:first_example_mpc5200 [2020/12/09 20:46] – ursgraf | firstexample:first_example_mpc5200 [2022/12/20 15:55] (current) – ursgraf | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Hello World on the Phytec phiCore mpc5200 Board ====== | ====== Hello World on the Phytec phiCore mpc5200 Board ====== | ||
- | This example will demonstrate how to use the deep compiler to translate a simple Java program and run it on a [[https:// | + | This example will demonstrate how to use the deep compiler to translate a simple Java program and run it on a [[https:// |
- Start eclipse, choose a new workspace and open the deep perspective with //Window -> Open Perspective -> Other -> Deep//. | - Start eclipse, choose a new workspace and open the deep perspective with //Window -> Open Perspective -> Other -> Deep//. | ||
Line 13: | Line 13: | ||
- Select the checkbox //Create image file// and choose the location to save the image file and the desired image file format, preferably //BIN//. Default save location is the project folder. Please make sure that the file path does not include spaces or hyphens. \\ {{targetconfiguration5200.png? | - Select the checkbox //Create image file// and choose the location to save the image file and the desired image file format, preferably //BIN//. Default save location is the project folder. Please make sure that the file path does not include spaces or hyphens. \\ {{targetconfiguration5200.png? | ||
- Project name: | - Project name: | ||
- | - Choose a project name (no spaces, no special characters such as " | + | - Choose a project name (no spaces, no dashes, no special characters such as " |
- Use default location or choose a location \\ {{{{projectname.png? | - Use default location or choose a location \\ {{{{projectname.png? | ||
- //Finish// creates the project | - //Finish// creates the project | ||
Line 46: | Line 46: | ||
project HelloWorld { | project HelloWorld { | ||
- | libpath = "I:\deep\lib"; | + | libpath = "\\ost.ch\dfs\bsc.sys\public-programme\deep\lib"; |
boardtype = MicroZed; | boardtype = MicroZed; | ||
ostype = sts_arm; | ostype = sts_arm; | ||
Line 52: | Line 52: | ||
programmeropts = bdi3000inf01; | programmeropts = bdi3000inf01; | ||
imgfile = " | imgfile = " | ||
- | imgformat = BIN; | ||
# pl_file = none; | # pl_file = none; | ||
Line 61: | Line 60: | ||
} | } | ||
</ | </ | ||
- | - Connect the target through an external debugging device such as an [[http:// | + | - Connect the target through an external debugging device such as an [[http:// |
- Open a terminal program such as '' | - Open a terminal program such as '' | ||
- | - Create a new run configuration by marking the project file // | + | - Create a new run configuration by marking the project file // |
- //Run// will compile, link and download the program. | - //Run// will compile, link and download the program. | ||
- | - The terminal window will show //Hello, World//. | + | - The terminal window will show // |
- With {{run.jpg}} you can recompile and rerun the programm. | - With {{run.jpg}} you can recompile and rerun the programm. | ||