Show
Ignore:
Timestamp:
12/07/07 18:57:09 (13 months ago)
Author:
follower
Message:

Tidy up code by removing now unused rx buffer and other dead code/comments.

Files:
1 modified

Legend:

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

    r77 r78  
    234234 
    235235   
    236   // TODO: Avoid buffer overflows in both cases... 
    237 #define MAX_RX_BUFFER_SIZE 5 
     236  // TODO: Avoid buffer overflows... 
    238237#define MAX_TX_BUFFER_SIZE 200 
    239   uint8_t bytesReceived[MAX_RX_BUFFER_SIZE]; // NOTE: Actual buffer should be larger. 
    240  
    241238  uint8_t bytesToSend[MAX_TX_BUFFER_SIZE]; 
    242239 
     
    265262   while (getSn_RX_RSR(testSocket) > 0) { 
    266263     theByte = readByte(); 
    267      //Serial.print(bytesReceived[0], BYTE); 
    268264     Serial.print(theByte, BYTE); 
    269265     if ((state == STATE_G) && (theByte == 'G')) {