Skip to content

Commit

Permalink
Rename Attribute Keys
Browse files Browse the repository at this point in the history
  • Loading branch information
mfs16101 committed May 10, 2020
1 parent 45ae105 commit f446d77
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,10 @@ void AHRSInputIOProcessor::loop()
double doubleRoll = *reinterpret_cast<double* const>(rollArray);
double doublePitch = *reinterpret_cast<double* const>(pitchArray);
double doubleYaw = *reinterpret_cast<double * const>(yawArray);
Attribute attRoll("rolAngle", 8, &doubleRoll);
Attribute attRoll("XSIMUROL", 8, &doubleRoll);
getComms()->sendAttribute(attRoll);
Attribute attPitch("pitAngle", 8, &doublePitch);
Attribute attPitch("XSIMUPIT", 8, &doublePitch);
getComms()->sendAttribute(attPitch);
Attribute attYaw("yawAngle", 8, &doubleYaw);
Attribute attYaw("XSIMUYAW", 8, &doubleYaw);
getComms()->sendAttribute(attYaw);
}

0 comments on commit f446d77

Please sign in to comment.