Changeset 330 in flair-src for trunk/lib/FlairSensorActuator/src/VrpnObject_impl.cpp
- Timestamp:
- 09/25/19 15:29:26 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairSensorActuator/src/VrpnObject_impl.cpp
r318 r330 51 51 self->Err("erreur aucun identifiant specifie pour la connexion Xbee\n"); 52 52 } 53 if (id == -1 && GetVrpnClient()->ConnectionType()==VrpnClient::VrpnLite) {54 self->Err(" erreur aucun identifiant specifie pour la connexionVrpnLite\n");53 if (id != -1 && GetVrpnClient()->ConnectionType()==VrpnClient::VrpnLite) { 54 self->Err("identifiant pour la connexion ignore car inutile en mode VrpnLite\n"); 55 55 } 56 56 if (id != -1 && GetVrpnClient()->ConnectionType()==VrpnClient::Vrpn) { … … 94 94 parent->pimpl_->AddTrackable(this); 95 95 } else if(GetVrpnClient()->ConnectionType()==VrpnClient::VrpnLite){ 96 parent->pimpl_->AddTrackable(this , id);96 parent->pimpl_->AddTrackable(this); 97 97 } 98 98 … … 191 191 192 192 caller->output->SetDataTime(time,deltaTime); 193 //Printf("%s data filled\n",caller->self->ObjectName().c_str()); 193 194 caller->output->ReleaseMutex(); 194 195 … … 199 200 caller->state->SetValueNoMutex(2, 0, Euler::ToDegree(euler.yaw)); 200 201 caller->state->ReleaseMutex(); 201 202 //Printf("%s process\n",caller->self->ObjectName().c_str()); 202 203 caller->self->ProcessUpdate(caller->output); 203 } 204 //Printf("%s process ok\n",caller->self->ObjectName().c_str()); 205 }
Note:
See TracChangeset
for help on using the changeset viewer.