Skip to content

Commit

Permalink
remove busTime
Browse files Browse the repository at this point in the history
  • Loading branch information
deanlee committed Jul 31, 2024
1 parent 17b76ca commit 73002ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selfdrive/pandad/pandad_api_impl.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def can_capnp_to_list(strings, sendcan=False):
cdef vector[CanData].iterator it = data.begin()
while it != data.end():
d = &deref(it)
frames = [[f.address, 0, (<char *>&f.dat[0])[:f.dat.size()], f.src] for f in d.frames]
frames = [[f.address, (<char *>&f.dat[0])[:f.dat.size()], f.src] for f in d.frames]
result.append([d.nanos, frames])
preinc(it)
return result

0 comments on commit 73002ed

Please sign in to comment.