Subversion Repositories HomeAutomation

Rev

Rev 970 | Rev 986 | 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/Service.js");
  5. loadScript("System/ServiceManager.js");
  6. loadScript("System/CanMessage.js");
  7. loadScript("System/CanManager.js");
  8. loadScript("System/CanService.js");
  9.  
  10. /* This function is called when the virtual machine is up and running.
  11.    Put things that needs to start here */
  12. function startup()
  13. {
  14.     if (autostart)
  15.     {
  16.         autostart();
  17.     }
  18.  
  19.     startOfflineCheck();
  20. }
  21.