 
Look into this folder:    exampleDemo

  It contains the "run" script and all the files, except for mapping.xml

=======================================================================

  To run the example:
  -------------------
      Make sure you have tool_v2.1
      If you have tool_v2.0 remove it, it was renamed to v2.1 and updated.
      cd tool_v2.1
      tool_v2.1> make clean
      tool_v2.1> make
      tool_v2.1> source sourceme
      cd ..
      cd review14-demo
      cd UJF_version
      cd exampleDemo
      ./run # runs by default 500 simulation events
   
  You can also do:
  ----------------
      ./run   --limit 1000    # run 1000 simulation events
      ./run   --limit 10000   # run 10x more simulation events
      ./run   --quiet --limit 500  # do not print BIP sumulation trace

=======================================================================
Compared to ETH version:

   (1)  C source code:
          We do not support:
           - variable declarations inside C functions, only in the beginning
           - braces { ... } (i.e. code blocks), especially inside "case" of switch statement
          So we moved all variable declarions and removed curly bracces in "case"

   (2)  Application XML:  Renamed controllers due to current limitations of DOL2BIP
   (3)  Mapping XML:  renamed processes from "task1, task2, ..." to "periodic1, periodic2,..."
   (4)  Renamed folder:  "dolc-src" to "src"
   (5)  Changed "-" to "_" in application XML file name

 Note! We do not model yet the architecture and the superblock delays!

   
