Subversion Repositories HomeAutomation

Rev

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

  1.  
  2. function IntelHex(hexData)
  3. {
  4.     this.myHexData = hexData;
  5. }
  6.  
  7. IntelHex.prototype.myHexData = null;
  8.  
  9. IntelHex.prototype.getLenght = function()
  10. {
  11.     return 0;///TODO: Return something
  12. }
  13.  
  14. IntelHex.prototype.getByte = function(address)
  15. {
  16.     var byte = 0; ///TODO: Oh well, 0 is not very usefull is it :)
  17.  
  18.     return byte;
  19. }
  20.