File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -411,7 +411,7 @@ def build_for_ncs_file(ncsMemMap, nlxHdr):
411411
412412 # digital lynx style with fractional frequency and micros per samp determined from
413413 # block times
414- elif acqType == "DIGITALLYNX" or acqType == "DIGITALLYNXSX" :
414+ elif acqType == "DIGITALLYNX" or acqType == "DIGITALLYNXSX" or acqType == 'CHEETAH64' :
415415 nomFreq = nlxHdr ['sampling_rate' ]
416416 nb = NcsSectionsFactory ._buildForMaxGap (ncsMemMap , nomFreq )
417417
Original file line number Diff line number Diff line change @@ -288,6 +288,13 @@ def type_of_recording(self):
288288 elif self ['HardwareSubSystemType' ] == 'DigitalLynxSX' :
289289 return 'DIGITALLYNXSX'
290290
291+ # Cheetah64
292+ elif self ['HardwareSubSystemType' ] == 'Cheetah64' :
293+ return 'CHEETAH64'
294+
295+ else :
296+ return 'UNKNOWN'
297+
291298 elif 'FileType' in self :
292299
293300 if self ['FileVersion' ] in ['3.3' , '3.4' ]:
You can’t perform that action at this time.
0 commit comments