We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17b76ca commit 73002edCopy full SHA for 73002ed
selfdrive/pandad/pandad_api_impl.pyx
@@ -50,7 +50,7 @@ def can_capnp_to_list(strings, sendcan=False):
50
cdef vector[CanData].iterator it = data.begin()
51
while it != data.end():
52
d = &deref(it)
53
- 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]
54
result.append([d.nanos, frames])
55
preinc(it)
56
return result
0 commit comments