Adds flap cmd and pos to output
This commit is contained in:
parent
ee9a81fd56
commit
6c90295655
1 changed files with 6 additions and 2 deletions
|
@ -148,9 +148,11 @@ void FGOutput::DelimitedOutput(string fname)
|
|||
outstream << "Aileron Cmd, ";
|
||||
outstream << "Elevator Cmd, ";
|
||||
outstream << "Rudder Cmd, ";
|
||||
outstream << "Flap Cmd, ";
|
||||
outstream << "Aileron Pos, ";
|
||||
outstream << "Elevator Pos, ";
|
||||
outstream << "Rudder Pos";
|
||||
outstream << "Rudder Pos, ";
|
||||
outstream << "Flap Pos";
|
||||
}
|
||||
if (SubSystems & ssRates) {
|
||||
outstream << ", ";
|
||||
|
@ -225,9 +227,11 @@ void FGOutput::DelimitedOutput(string fname)
|
|||
outstream << FCS->GetDaCmd() << ", ";
|
||||
outstream << FCS->GetDeCmd() << ", ";
|
||||
outstream << FCS->GetDrCmd() << ", ";
|
||||
outstream << FCS->GetDfCmd() << ", ";
|
||||
outstream << FCS->GetDaPos() << ", ";
|
||||
outstream << FCS->GetDePos() << ", ";
|
||||
outstream << FCS->GetDrPos();
|
||||
outstream << FCS->GetDrPos() << ", ";
|
||||
outstream << FCS->GetDfPos();
|
||||
}
|
||||
if (SubSystems & ssRates) {
|
||||
outstream << ", ";
|
||||
|
|
Loading…
Reference in a new issue