deep

a Cross Development Platform for Java

User Tools

Site Tools


first_example

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
first_example [2019/11/06 14:05] ursgraffirst_example [2020/12/01 14:24] – [Running Demo Programs] ursgraf
Line 1: Line 1:
 ====== First Example ====== ====== First Example ======
-===== Using System.out on a mpc555 Board =====+===== Hello World with System.out ===== 
 +  * [[first_example_mpc555| Hello World on the NTB mpc555 Board]] 
 +  * [[first_example_mpc5200| Hello World on the Phytec phyCore mpc5200 board]] 
 +  * [[first_example_microzed| Hello World on the Avnet MicroZed board]]   
 +  * [[first_example_zybo| 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 mpc555 target platform. For other platforms see at the bottom of this page. +===== Developing on the Avnet MicroZed Board ===== 
- +As this board contains FPGA which must be loaded with a suitable configuration, you have to carefully select one of the following methods. 
-  - Start eclipse, choose new workspace and open the deep perspective with //Window -> Open Perspective -> Other -> Deep//. +  * [[first_example_microzed_sysdevSystem Developer]]  
-  - Create new deep project with //File// -> //New// -> select //Project...Deep -> //select// Deep Project//. \\ {{:newdeepproject.png?300|}} +  * [[first_example_microzed_appdevApplication Developer]]  
-  - On the Target Library wizard page you have to choose where the deep target runtime library is locatedYou can use the default library path or uncheck the box and browse to the location where you've installed the library. You can always set the default library path in [[eclipse:perspective#Setting_Deep_Preferences|deep Perspective and deep Preferences]]. Click //Next//. \\ {{targetlibrary.png?300|}}  +  * [[first_example_microzed_deploy| Deploying]]  
-   - Target Configuration: +===== Running Demo Programs ===== 
-    - Select a board: //NTB MPC555 header board// +The deep runtime library offers couple of demo programse.gusing serial output or flashing a ledCreate new project as given above and open the //deep// project fileNavigate to //Referenced Libraries// entry in the //Package Explorer// and find a suitable demo program, e.g. ch.ntb.inf.runtime.zynq7000.microzed.demo.Blinker 
-    - Select programmer: //NTB MPC555 USB-BDI// +{{:demoprograms.png?250|}}
-    - Select a operating System: //NTB Simple Tasking System for PPC// +
-    - If you like to have an image fileyou can select the corresponding checkboxThis option is not necessary if you use the //NTB MPC555 USB-BDI// to download to the target\\ {{targetconfiguration555.png?300|}} +
-  - Project name: +
-    - Choose a project name (no spaces, no special characters such as "umlauts"+
-    - Use default location or choose a location \\ {{{{projectname.png?300|}} +
-  - //Finish// creates the project +
-  - The empty project will show on the left side in the package explorer.\\ {{emptyproject.png?150|}} +
-  - By right-clicking on the source folder (src) in the package explorer choose //New// -> //Package// and add package name, e.g. //test//. +
-  - By right-clicking on the newly created package choose //New// -> //Class// and enter class name //HelloWorld//+
-  - Open class and enter source code:<code java> +
-import java.io.PrintStream; +
-import ch.ntb.inf.deep.runtime.mpc555.driver.SCI; +
- +
-public class HelloWorld { +
- static { +
- // 1) Initialize SCI1 (9600 8N1) +
- SCI sci1 = SCI.getInstance(SCI.pSCI1); +
- sci1.start(9600, SCI.NO_PARITY, (short)8); +
-  +
- // 2) Use SCI1 for stdout +
- System.out = new PrintStream(sci1.out); +
-  +
- // 3) Say hello to the world +
- System.out.println("Hello world"); +
- } +
-} +
-</code> +
-  - Open deep project file //HelloWorld.deep//. This file can be found in the root of the project. +
-  - Add the newly created class to //rootclasses//. It should then look like this:<code> +
-#deep-1 +
- +
-meta { +
- version = "Mon Jan 05 12:40:12 CET 2015"; +
- description = "deep project file for HelloWorld"; +
-+
- +
-project HelloWorld { +
- libpath = "I:\deep\lib"; +
- boardtype = ntbMpc555HB; +
- ostype = ntbSTS_ppc; +
- programmertype = ntbMpc555UsbBdi;+
  
 +Edit the //rootclasses// entry in the //deep// project file as follows
 +<code>
 # enter names of rootclasses, e.g. # enter names of rootclasses, e.g.
 # rootclasses = "test.MyFirstTestClass","other.MySecondTestClass"; # rootclasses = "test.MyFirstTestClass","other.MySecondTestClass";
- rootclasses = "test.HelloWorld"; + rootclasses = "org.deepjava.runtime.zynq7000.microzed.demo.Blinker";
- +
-# imgfile = "M:\Workspace\HelloWorld\HelloWorld.bin"; +
-# imgformat = BIN; +
-}+
 </code> </code>
-  - Connect the hardware to your host PC by an USB cable and apply power to the target. 
-  - Open a terminal program such as ''putty'' or ''realterm''. Alternatively open a terminal program as an eclipse view. Select the appropriate serial port number. Check your host operating settings for this number. 
-  - Create a new run configuration by marking the project file //HelloWorld.deep//. Then, right-click on it and choose //Run As -> Deep Application// or select from the pulldown menu of the run-button. \\ {{runas_context.png?280|}} {{ runas_pulldown.png?280|}}  
-  - //Run// will compile, link and download the program. 
-  - The terminal window will show //Hello, World//. 
-  - With {{run.jpg}} you can recompile and rerun the programm. 
-  - See [[eclipse:flashing|Flashing your Program]] for how to write your program to permanent flash memory. 
- 
-===== Example on mpc5200 ===== 
-If you use a mpc5200 platform the following steps have to be altered: 
- 
-4. Target Configuration 
-    - Select a board, e.g.: //Phytec PhiCORE-MPC5200io// 
-    - Select a programmer: //none// 
-    - Select a operating System: //NTB Simple tasking system// 
-    - 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. 
- 
-10. The source code changes to : <code java> 
-import java.io.PrintStream; 
-import ch.ntb.inf.deep.runtime.mpc5200.driver.UART3; 
- 
-public class HelloWorld { 
- static { 
- // Initialize UART (9600 8N1) 
- UART3.start(9600, UART3.NO_PARITY, (short)8); 
-  
- // Use the UART3 for stdout 
- System.out = new PrintStream(UART3.out); 
-  
- // Print a string to the stdout 
- System.out.println("Hello world"); 
- } 
-} 
-</code> 
- 
-12. The project file will look like <code> 
-#deep-1 
- 
-meta { 
- version = "Mon Jan 05 12:40:12 CET 2015"; 
- description = "deep project file for HelloWorld"; 
-} 
- 
-project HelloWorld { 
- libpath = "I:\deep\lib"; 
- boardtype = phyCoreMpc5200io; 
- ostype = ntbSTS; 
-# programmertype = ; 
- 
-# enter names of rootclasses, e.g. 
-# rootclasses = "test.MyFirstTestClass","other.MySecondTestClass"; 
- rootclasses = "test.HelloWorld"; 
- 
- imgfile = "M:\Workspace\HelloWorld\HelloWorld.bin"; 
- imgformat = BIN; 
-} 
-</code> 
- 
-16. //Run// will compile, link and create the image file. Use an external debugging device such as an [[http://wiki.ntb.ch/infoportal/embedded_systems/abatron_bdi/start|Abatron BDI]] to download the program. 
- 
-If the boot loader //uBoot// is present on the board, it will start up and configure the memory and clocks. Now, it's possible to download a program without using an Abatron device. For this, you have to choose in step 4 the target configuration //Phytec PhiCORE-MPC5200uBoot//. This configuration is valid for the //tiny// and the //io// board.   
-Connect a terminal program on PSC3 with 115200, no parity, 8 bit. Also connect the Ethernet of the board to your local server, which must have a TFTP server running. Run the following command: <code>tftp 0x400000 myDir/test.bin bin</code> 
-Please make sure that your image file resides in the right directory on your TFTP server. Finally start your program with <code>go 0x400100</code> 
  
 +Create a run configuration and run the program as given in [[first_example|Hello World with System.out]]. Be aware of the fact that all the examples using //flink// devices (which are implemented in the FPGA) need a suitable configuration loaded into the FPGA at startup.