This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| firstexample:first_example_zybo [2020/12/09 21:25] – ursgraf | firstexample:first_example_zybo [2022/12/20 15:55] (current) – ursgraf | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Hello World on the Digilent Zybo Board ====== | ====== Hello World on the Digilent Zybo 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. \\ {{targetconfigurationzybo.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. \\ {{targetconfigurationzybo.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 47: | Line 47: | ||
| project HelloWorld { | project HelloWorld { | ||
| - | libpath = "I:\deep\lib"; | + | libpath = "\\ost.ch\dfs\bsc.sys\public-programme\deep\lib"; |
| boardtype = Zybo; | boardtype = Zybo; | ||
| ostype = sts_arm; | ostype = sts_arm; | ||
| Line 53: | Line 53: | ||
| programmeropts = localhost_4444; | programmeropts = localhost_4444; | ||
| imgfile = " | imgfile = " | ||
| - | imgformat = BIN; | ||
| # pl_file = none; | # pl_file = none; | ||
| Line 61: | Line 60: | ||
| } | } | ||
| </ | </ | ||
| - | - Connect the hardware to your host machine by an USB cable (J11). This applies power to the target. | + | - Connect the hardware to your host machine by an USB cable (J11). This applies power to the target |
| - | - Make sure that you select the proper driver for your adapter | + | * USB Serial Converter (JTAG adapter) |
| + | * USB to UART Bridge (COM port) | ||
| + | - Make sure that you select the proper driver for your serial converter | ||
| - Start OpenOCD, see [[openocd: | - Start OpenOCD, see [[openocd: | ||
| - | - 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 image file. For downloading and debugging [[openocd: | - //Run// will compile, link and download the image file. For downloading and debugging [[openocd: | ||
| - | - The terminal window will show //Hello, World//. | + | - The terminal window will show // |
| - With {{run.jpg}} you can recompile and rerun the program. | - With {{run.jpg}} you can recompile and rerun the program. | ||