You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for your tool!
I simply compared csiread with CSIKit, yours is much faster.
However, I am facing one weird issue: I used this Atheros CSI Tool Python RemoteReceive to generate a .dat file
In this script, I set the range with 1000 in this for loopfor i in range() which should generate a .dat file with 1000 packets.
CSIKit can read the file back with 1000 packets(the shape is [1000, 56, 2, 2]) which seems correct, however, csiread can only retrieve 986 packet(the shape is [986, 56, 2, 2]). I am not sure why there are several packets missing when I use csiread.
P.S.1 This is the file with CSI data I generated with_router_in_realtime.dat.zip
P.S.2 I tried to generate a file with 986 packets, then csiread can only retrieve 972 packets, it seems there is always 14 packets missing
The text was updated successfully, but these errors were encountered:
This issue was caused by Atheros CSI Tool Python RemoteReceive
The format of one atheros packet contains two parts:
2 bytes
xxx bytes
field_len
payload
field_len = len(payload). In general, the same device should be used to save both parts, so that the two parts have the same byte order. This is the case that csiread can handle. Differently, your sample data was collected by Atheros CSI Tool Python RemoteReceive: payload part was first generated on device A(router), then sent to device B(your computer) via udp. field_len was calculated on device B. device B is little endian while device A is big endian.
Thanks for your tool!
I simply compared csiread with CSIKit, yours is much faster.
However, I am facing one weird issue: I used this Atheros CSI Tool Python RemoteReceive to generate a .dat file
In this script, I set the range with 1000 in this for loop
for i in range()
which should generate a .dat file with 1000 packets.CSIKit can read the file back with 1000 packets(the shape is [1000, 56, 2, 2]) which seems correct, however, csiread can only retrieve 986 packet(the shape is [986, 56, 2, 2]). I am not sure why there are several packets missing when I use csiread.
P.S.1 This is the file with CSI data I generated
with_router_in_realtime.dat.zip
P.S.2 I tried to generate a file with 986 packets, then csiread can only retrieve 972 packets, it seems there is always 14 packets missing
The text was updated successfully, but these errors were encountered: