Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retros Support #51

Draft
wants to merge 11 commits into
base: premium
Choose a base branch
from
Prev Previous commit
Next Next commit
skip this which was breaking builds
  • Loading branch information
phr00t committed Sep 16, 2023
commit d14b8a365cd7674eb0f2ba244f9deb376f8a8320
2 changes: 1 addition & 1 deletion selfdrive/locationd/ublox_msg.cc
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ kj::Array<capnp::word> UbloxMsgParser::gen_rxm_sfrbx(ubx_t::rxm_sfrbx_t *msg) {
gps_t subframe(&stream);
gps_t::subframe_1_t* subframe_1 = static_cast<gps_t::subframe_1_t*>(subframe.body());

eph.setGpsWeek(subframe_1->week_no());
//eph.setGpsWeek(subframe_1->week_no());
eph.setTgd(subframe_1->t_gd() * pow(2, -31));
eph.setToc(subframe_1->t_oc() * pow(2, 4));
eph.setAf2(subframe_1->af_2() * pow(2, -55));
Expand Down