Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions neo/rawio/micromedrawio.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,13 @@ def _parse_header(self):
gain = factor
offset = -logical_ground * factor

f.seek(8, 1)
(sampling_rate,) = f.read_f("H")
# this skips the filtering info done with the machine
f.seek(8, 1)

#(sampling_rate,) = f.read_f("H")
# sampling_rate is actually the rate_coefficient which is multipled by the
# Rate_Min which is the sampling_rate
sampling_rate = struct.unpack("H", f.read(struct.calcsize("H")))[0]
sampling_rate *= Rate_Min
chan_id = str(c)
signal_channels.append(
Expand Down
Loading