Changeset 450 in flair-src


Ignore:
Timestamp:
09/23/21 09:59:59 (3 years ago)
Author:
Sanahuja Guillaume
Message:

up

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ReleaseNotes

    r414 r450  
    22
    33- added possibility to autodetect gcs ip when using autodetect as address parameter, see demos. This only works when ssh connected to a target (not in simulation)
     4- graphs are now synchronized on gcs
     5- possiblity to buffer data sending on gcs, avoid multiple small packets (mainly for bth connection like mambos)
     6- this version needs a new toolchain, see wiki
    47
    58-----------------------------------------------------------
  • trunk/tools/VrpnLite/src/VrpnLite.cpp

    r448 r450  
    147147        Quaternion objectQuaternion;
    148148        const VrpnObject* vrpnobject=*it;
    149 
     149//printf("send to %s client %i\n",vrpnobject->ObjectName().c_str(),connections.at(i).srcId);
    150150        vrpnobject->GetPosition(objectPosition);
    151151        vrpnobject->GetQuaternion(objectQuaternion);
     
    170170      dataSocket->HostToNetwork((char*)(&time),sizeof(Time));
    171171      memcpy(datasPtr,&time, sizeof(time));//only one time for all VrpnObject; suppose it is the same!
    172       dataSocket->SendMessage(datas,sizeof(datas),i);
     172      dataSocket->SendMessage(datas,sizeof(datas),connections.at(i).srcId);
    173173  }
    174174}
Note: See TracChangeset for help on using the changeset viewer.