Skip to content

Commit

Permalink
Add support for NP2000 and NP2010 IMRO part numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiegle committed Nov 2, 2024
1 parent fb500a1 commit 3393ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Formats/IMRO.h
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@ class IMRO
LOGC ("Neuropixels NHP passive probe detected.");
settings.probeType = ProbeType::NHP1;
}
else if (value == 21 || value == 2003 || value == 2004)
else if (value == 21 || value == 2000 || value == 2003 || value == 2004)
{
LOGC ("Neuropixels 2.0 single shank probe detected.");
settings.probeType = ProbeType::NP2_1;
}
else if (value == 24 || value == 2013 || value == 2014)
else if (value == 24 || value == 2010 || value == 2013 || value == 2014)
{
LOGC ("Neuropixels 2.0 multi-shank probe detected.");
settings.probeType = ProbeType::NP2_4;
Expand Down

0 comments on commit 3393ea9

Please sign in to comment.