Remove some old debugging output.
This commit is contained in:
parent
00d5d7c1b3
commit
817afc61d2
1 changed files with 5 additions and 5 deletions
|
@ -151,7 +151,7 @@ static int write_binary( char cmd_type, FILE *pd, char *cmd, int len ) {
|
||||||
}
|
}
|
||||||
cout << "' (" << cmd << ")" << endl;
|
cout << "' (" << cmd << ")" << endl;
|
||||||
} else if ( cmd_type == '2' ) {
|
} else if ( cmd_type == '2' ) {
|
||||||
cout << "writing controls packet" << endl;
|
// cout << "writing controls packet" << endl;
|
||||||
} else {
|
} else {
|
||||||
cout << "writing unknown command?" << endl;
|
cout << "writing unknown command?" << endl;
|
||||||
}
|
}
|
||||||
|
@ -401,21 +401,21 @@ void FGExternalPipe::update_binary( double dt ) {
|
||||||
// cout << "iterations = " << iterations << endl;
|
// cout << "iterations = " << iterations << endl;
|
||||||
ptr += sizeof(int);
|
ptr += sizeof(int);
|
||||||
memcpy( ptr, (char *)(&ctrls), length );
|
memcpy( ptr, (char *)(&ctrls), length );
|
||||||
cout << "writing control structure, size = "
|
// cout << "writing control structure, size = "
|
||||||
<< length + sizeof(int) << endl;
|
// << length + sizeof(int) << endl;
|
||||||
|
|
||||||
result = write_binary( '2', pd1, buf, length + sizeof(int) );
|
result = write_binary( '2', pd1, buf, length + sizeof(int) );
|
||||||
fflush( pd1 );
|
fflush( pd1 );
|
||||||
|
|
||||||
// Read fdm values
|
// Read fdm values
|
||||||
length = sizeof(fdm);
|
length = sizeof(fdm);
|
||||||
cout << "about to read fdm data from remote fdm." << endl;
|
// cout << "about to read fdm data from remote fdm." << endl;
|
||||||
result = fread( (char *)(& fdm), length, 1, pd2 );
|
result = fread( (char *)(& fdm), length, 1, pd2 );
|
||||||
if ( result != 1 ) {
|
if ( result != 1 ) {
|
||||||
SG_LOG( SG_IO, SG_ALERT, "Read error from named pipe: "
|
SG_LOG( SG_IO, SG_ALERT, "Read error from named pipe: "
|
||||||
<< fifo_name_2 << " expected 1 item, but got " << result );
|
<< fifo_name_2 << " expected 1 item, but got " << result );
|
||||||
} else {
|
} else {
|
||||||
cout << " read successful." << endl;
|
// cout << " read successful." << endl;
|
||||||
}
|
}
|
||||||
FGNetFDM2Props( &fdm, false );
|
FGNetFDM2Props( &fdm, false );
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue