Skip to content

Commit 43f2c36

Browse files
authored
Fix time blackrock (#1708)
* shape parameter for memap * fix time * int
1 parent 5df3403 commit 43f2c36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/rawio/blackrockrawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1811,7 +1811,7 @@ def __nev_params(self, param_name):
18111811
hour=self.__nev_basic_header["hour"],
18121812
minute=self.__nev_basic_header["minute"],
18131813
second=self.__nev_basic_header["second"],
1814-
microsecond=self.__nev_basic_header["millisecond"],
1814+
microsecond=int(self.__nev_basic_header["millisecond"]) * 1000,
18151815
),
18161816
"max_res": self.__nev_basic_header["timestamp_resolution"],
18171817
"channel_ids": self.__nev_ext_header[b"NEUEVWAV"]["electrode_id"],

0 commit comments

Comments
 (0)