Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 27, 2005, 7:17:56 PM (18 years ago)
Author:
patrick
Message:

network: some more fixes on the network branche: for testing purpuses, the length of the binary data packet will be hard set to 11bytes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/subprojects/network/simple_sync.cc

    r5800 r5802  
    9696  for(int i = 0; i < this->recLength; i++)
    9797  {
    98     PRINT(0)(" %i ",this->inData[i]);
     98    PRINT(0)(" [%u] ",this->inData[i]);
    9999  }
    100100  PRINT(0)("|\n");
     
    104104void SimpleSync::readDebug()
    105105{
    106   PRINTF(0)("Read out: |");
     106  PRINTF(0)("Read out bytes: |");
    107107  for(int i = 0; i < this->outLength; i++)
    108108  {
    109     PRINT(0)(" %c ",this->outData[i]);
     109    PRINT(0)(" [%u] ",this->outData[i]);
    110110  }
    111111  PRINT(0)("|\n");
Note: See TracChangeset for help on using the changeset viewer.