Skip to content

Commit 1d25643

Browse files
authored
Fixed home position timer (#104)
1 parent 92322d9 commit 1d25643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blue_manager/blue_manager/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def set_home_pos(lat: float, lon: float, alt: float, yaw: float) -> None:
229229

230230
# Similar to the message rates, we set the home position periodically to handle
231231
# the case in which the home position is set by QGC to a different location
232-
self.message_rate_timer = self.create_timer(
232+
self.home_position_timer = self.create_timer(
233233
hp_request_rate,
234234
lambda: set_home_pos(home_lat, home_lon, home_alt, home_yaw),
235235
)

0 commit comments

Comments
 (0)