Changeset 113 for branches

Show
Ignore:
Timestamp:
12/11/07 03:55:47 (13 months ago)
Author:
follower
Message:

Change 'read' declaration to return an int to match the 'Serial.read' functionality--I don't overly like the approach but that's what I'm wanting to be compatible with. Note: We haven't actually matched the behaviour yet.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/follower/wiz810mj/src/demo/WizDemo4/WizDemo4.pde

    r112 r113  
    227227    int listen(); 
    228228    int isConnected(); 
    229     byte read(); 
     229    int read(); 
    230230    void NetworkConnection::close(); 
    231231 
     
    250250} 
    251251 
    252 byte NetworkConnection::read() { 
     252int NetworkConnection::read() { 
    253253  /* 
    254254