-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #269 from open-ephys/issue-268
Add NeuropixelsV2eBeta GUIs
- Loading branch information
Showing
9 changed files
with
134 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
namespace OpenEphys.Onix1 | ||
{ | ||
/// <summary> | ||
/// Public interface that defines common properties in NeuropixelsV2 devices. | ||
/// </summary> | ||
public interface IConfigureNeuropixelsV2 | ||
{ | ||
/// <summary> | ||
/// Gets or sets the device enable state. | ||
/// </summary> | ||
public bool Enable { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the electrode configuration for Probe A. | ||
/// </summary> | ||
public NeuropixelsV2QuadShankProbeConfiguration ProbeConfigurationA { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the path to the gain calibration file for Probe A. | ||
/// </summary> | ||
public string GainCalibrationFileA { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the electrode configuration for Probe B. | ||
/// </summary> | ||
public NeuropixelsV2QuadShankProbeConfiguration ProbeConfigurationB { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the path to the gain calibration file for Probe B. | ||
/// </summary> | ||
public string GainCalibrationFileB { get; set; } | ||
} | ||
} |