File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 24
24
25
25
An additional note on channels. It appears that analog channels are called `pri` or
26
26
`ai0` within the metadata whereas digital channels are called `din0` or `dout0`.
27
- In this first implementation it is up to the user to do the appropriate channel slice
28
- to only get the data they want. This is a buffer-based approach that Sam likes.
29
- Eventually we will try to divide these channels into streams (analog vs digital) or
30
- we can come up with a work around if users open an issue requesting this.
27
+
31
28
32
29
Zach McKenzie
33
30
@@ -159,7 +156,7 @@ def _parse_header(self):
159
156
# given metadata
160
157
if self ._timestamps [0 ] != self .metadata ["status" ]["timestamp_range" ][0 ]:
161
158
metadata_start = self .metadata ["status" ]["timestamp_range" ][0 ]
162
- data_start = self ._teimstamps [0 ]
159
+ data_start = self ._timestamps [0 ]
163
160
raise NeoReadWriteError (
164
161
f"The metadata indicates a different starting timestamp { metadata_start } than the data starting timestamp { data_start } "
165
162
)
You can’t perform that action at this time.
0 commit comments