Dies ist eine alte Version des Dokuments!


Create deep projekt (Hello World for MPC555)

  1. As described in Erste Schritte start eclipse, open workspace, open deep perspektive.
  2. FileNew → select deep project.
  3. Target Configuration:
    1. Processor: MPC555
    2. Board: NTB MPC555 Headerboard
    3. Runtime system: Simple tasking system
    4. ✔ use default library path
  4. Project name:
    1. Choose any project name (no spaces, no „umlauts“)
    2. ✔ use default location
  5. Finish creates the project
  6. The empty project will show on the left side in the package explorer.
  7. By right-clicking on the source folder (src) in the package explorer choose NewPackage and add package name ch.ntb.stud.yourName.helloworld.
  8. By right-clicking on the newly created package choose NewClass and enter class name HelloWorld.
  9. Open class and enter source code:
    package ch.ntb.stud.yourName.helloworld;
     
    import java.io.PrintStream;
    import ch.ntb.inf.deep.runtime.mpc555.driver.SCI1;
     
    public class HelloWorld {
    	static {
    		// 1) Initialize SCI1 (9600 8N1)
    		SCI1.start(9600, SCI1.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");
    	}
    }
  10. Open project file: HelloWorld.deep
  11. Add the newly created class to rootclasses:
    project {
    	libpath = "I:/deep/lib";
    	rootclasses = "ch/ntb/stud/yourName/helloworld/HelloWorld";
    }
  12. Connect hardware to PC and power on.
  13. Open View Dialog under Window → Show View → Other….
  14. In the category Terminal mark Terminal and confirm with OK.
  15. Under Connection Type select Serial and choose settings according to the settings of the SCI on the target from paragraph 9 above. Check the port number with your operating system.

  1. Mark project file „HelloWorld.deep“, either by right-clicking Run As → Deep Application

    or with pulldown menu of the run-button Run As → Deep Application

    will the programm be compiled, linked and downloaded.
  2. The USB Log shows Hello, World.
  3. With run.jpg you can recompile and rerun the programm.