Skip to content

Commit

Permalink
bitcraze#467 Increased log rate of pose data. The rate was reduced wh…
Browse files Browse the repository at this point in the history
…en the PoseLogger was introduced.
  • Loading branch information
krichardsson committed Mar 17, 2021
1 parent fdb00f5 commit 7dd05a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cfclient/ui/pose_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def rpy_rad(self):
return [math.radians(self.pose[3]), math.radians(self.pose[4]), math.radians(self.pose[5])]

def _connected(self, link_uri) -> None:
logConf = LogConfig("Pose", 200)
logConf = LogConfig("Pose", 40)
logConf.add_variable(self.LOG_NAME_ESTIMATE_X, "float")
logConf.add_variable(self.LOG_NAME_ESTIMATE_Y, "float")
logConf.add_variable(self.LOG_NAME_ESTIMATE_Z, "float")
Expand Down

0 comments on commit 7dd05a5

Please sign in to comment.