Skip to content

Commit

Permalink
Leave devices enabled or disabled as default
Browse files Browse the repository at this point in the history
- For `Headstage64` and `NeuropixelsV1fHeadstage`, the `TS4231` device was overridden to be disabled at the headstage level. Now it will be left at the default Enable value.
  • Loading branch information
bparks13 committed Oct 18, 2024
1 parent aed9bdc commit 37408a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OpenEphys.Onix1/ConfigureHeadstage64.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public ConfigureHeadstage64()
[Category(DevicesCategory)]
[TypeConverter(typeof(SingleDeviceFactoryConverter))]
[Description("Specifies the configuration for the TS4231 device in the headstage-64.")]
public ConfigureTS4231V1 TS4231 { get; set; } = new() { Enable = false };
public ConfigureTS4231V1 TS4231 { get; set; } = new();

/// <summary>
/// Gets or sets onboard electrical stimulator configuration.
Expand Down
2 changes: 1 addition & 1 deletion OpenEphys.Onix1/ConfigureNeuropixelsV1fHeadstage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public ConfigureNeuropixelsV1fHeadstage()
[Category(DevicesCategory)]
[TypeConverter(typeof(SingleDeviceFactoryConverter))]
[Description("Specifies the configuration for the TS4231 device in the headstage-64.")]
public ConfigureTS4231V1 TS4231 { get; set; } = new() { Enable = false };
public ConfigureTS4231V1 TS4231 { get; set; } = new();

internal override void UpdateDeviceNames()
{
Expand Down

0 comments on commit 37408a5

Please sign in to comment.