Skip to content

Commit 73002ed

Browse files
committed
remove busTime
1 parent 17b76ca commit 73002ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

selfdrive/pandad/pandad_api_impl.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def can_capnp_to_list(strings, sendcan=False):
5050
cdef vector[CanData].iterator it = data.begin()
5151
while it != data.end():
5252
d = &deref(it)
53-
frames = [[f.address, 0, (<char *>&f.dat[0])[:f.dat.size()], f.src] for f in d.frames]
53+
frames = [[f.address, (<char *>&f.dat[0])[:f.dat.size()], f.src] for f in d.frames]
5454
result.append([d.nanos, frames])
5555
preinc(it)
5656
return result

0 commit comments

Comments
 (0)