Skip to content

Update micromed for sampling issue #1701

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
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