Skip to content

Commit

Permalink
Merge branch 'master' into reimerix/ap-1087/fix-timestamping-descript…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
woodfell authored Jan 3, 2024
2 parents ced8c9e + 416da16 commit bc13ab7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DevInfra team is default owner of anything in the repo.
* @swift-nav/devinfra
/rust @notoriaga @pcrumley @isaactorz
/c @swift-nav/platform @isaactorz
/c @swift-nav/algint-team @isaactorz

# Add new codeowners above here
5 changes: 4 additions & 1 deletion c/src/sbp.c
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,10 @@ s8 sbp_frame_callback_register(sbp_state_t* s, u16 msg_type,
s8 sbp_all_payload_callback_register(sbp_state_t *s, sbp_frame_callback_t cb,
void *context, sbp_msg_callbacks_node_t *node)
{
return sbp_frame_callback_register(s, SBP_MSG_ALL, cb, context, node);
sbp_callback_t callback;
callback.frame = cb;
return sbp_register_callback_generic(s, SBP_MSG_ALL, callback,
SBP_FRAME_CALLBACK, context, node);
}

s8 sbp_frame_process(sbp_state_t *s, u16 sender_id, u16 msg_type,
Expand Down

0 comments on commit bc13ab7

Please sign in to comment.