Subversion Repositories HomeAutomation

Rev

Rev 999 | Rev 1007 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1.  
  2. /* Load important scripts */
  3. loadScript("System/Interval.js");
  4. loadScript("System/Socket.js");
  5. loadScript("System/HTTP.js");
  6. loadScript("System/Service.js");
  7. loadScript("System/ServiceManager.js");
  8. loadScript("System/CanMessage.js");
  9. loadScript("System/CanNMTMessage.js");
  10. loadScript("System/CanManager.js");
  11. loadScript("System/CanService.js");
  12. loadScript("System/CanNode.js");
  13. loadScript("System/Console.js");
  14. loadScript("System/TextTable.js");
  15.  
  16. loadScript("Other/OnlinePhonebook.js");
  17.  
  18. /* This function is called when the virtual machine is up and running.
  19.    Put things that needs to start here */
  20. function startup()
  21. {
  22.     if (typeof autostart != "undefined")
  23.     {
  24.         autostart();
  25.     }
  26.  
  27.     CanOfflineTimer.start();
  28. }
  29.