From 6884d7c9bd36aabb57c9f8d3a34d407031867b05 Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Tue, 9 Mar 2021 17:28:19 +0100 Subject: [PATCH] boardd: increase CLASS_RXM timeout --- selfdrive/boardd/boardd.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfdrive/boardd/boardd.cc b/selfdrive/boardd/boardd.cc index 85fde6ae73..acadf9c74c 100644 --- a/selfdrive/boardd/boardd.cc +++ b/selfdrive/boardd/boardd.cc @@ -486,8 +486,8 @@ void pigeon_thread() { std::unordered_map last_recv_time; std::unordered_map cls_max_dt = { - {(char)ublox::CLASS_NAV, int64_t(500000000ULL)}, // 0.5s - msg is 10Hz - {(char)ublox::CLASS_RXM, int64_t(500000000ULL)}, // 0.5s - msg is 10Hz + {(char)ublox::CLASS_NAV, int64_t(500000000ULL)}, // 0.5s + {(char)ublox::CLASS_RXM, int64_t(1000000000ULL)}, // 1.0s }; while (!do_exit && panda->connected) {