boardd: lower log level for ublox msg timing issues

pull/22448/head
Willem Melching 4 years ago
parent 305e8d07ec
commit b9797259ed
  1. 2
      selfdrive/boardd/boardd.cc

@ -505,7 +505,7 @@ void pigeon_thread(Panda *panda) {
for (const auto& [msg_cls, max_dt] : cls_max_dt) { for (const auto& [msg_cls, max_dt] : cls_max_dt) {
int64_t dt = (int64_t)nanos_since_boot() - (int64_t)last_recv_time[msg_cls]; int64_t dt = (int64_t)nanos_since_boot() - (int64_t)last_recv_time[msg_cls];
if (ignition_last && ignition && dt > max_dt) { if (ignition_last && ignition && dt > max_dt) {
LOG("ublox receive timeout, msg class: 0x%02x, dt %llu", msg_cls, dt); LOGD("ublox receive timeout, msg class: 0x%02x, dt %llu", msg_cls, dt);
// TODO: turn on reset after verification of logs // TODO: turn on reset after verification of logs
// need_reset = true; // need_reset = true;
} }

Loading…
Cancel
Save