From f038e24e21235b52cc20fa07917fb8aacb33ac4c Mon Sep 17 00:00:00 2001 From: bparks13 Date: Tue, 20 Aug 2024 14:31:54 -0400 Subject: [PATCH] Correct the Category attribute - Incorrectly assigned BreakoutAnalogIO properties to Acquisition instead of Configuration category --- OpenEphys.Onix1/ConfigureBreakoutAnalogIO.cs | 24 ++++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/OpenEphys.Onix1/ConfigureBreakoutAnalogIO.cs b/OpenEphys.Onix1/ConfigureBreakoutAnalogIO.cs index 4a65ae10..b3e71a64 100644 --- a/OpenEphys.Onix1/ConfigureBreakoutAnalogIO.cs +++ b/OpenEphys.Onix1/ConfigureBreakoutAnalogIO.cs @@ -117,84 +117,84 @@ public ConfigureBreakoutAnalogIO() /// /// Gets or sets the direction of channel 0. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 0.")] public BreakoutAnalogIODirection Direction0 { get; set; } /// /// Gets or sets the direction of channel 1. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 1.")] public BreakoutAnalogIODirection Direction1 { get; set; } /// /// Gets or sets the direction of channel 2. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 2.")] public BreakoutAnalogIODirection Direction2 { get; set; } /// /// Gets or sets the direction of channel 3. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 3.")] public BreakoutAnalogIODirection Direction3 { get; set; } /// /// Gets or sets the direction of channel 4. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 4.")] public BreakoutAnalogIODirection Direction4 { get; set; } /// /// Gets or sets the direction of channel 5. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 5.")] public BreakoutAnalogIODirection Direction5 { get; set; } /// /// Gets or sets the direction of channel 6. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 6.")] public BreakoutAnalogIODirection Direction6 { get; set; } /// /// Gets or sets the direction of channel 7. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 7.")] public BreakoutAnalogIODirection Direction7 { get; set; } /// /// Gets or sets the direction of channel 8. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 8.")] public BreakoutAnalogIODirection Direction8 { get; set; } /// /// Gets or sets the direction of channel 9. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 9.")] public BreakoutAnalogIODirection Direction9 { get; set; } /// /// Gets or sets the direction of channel 10. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 10.")] public BreakoutAnalogIODirection Direction10 { get; set; } /// /// Gets or sets the direction of channel 11. /// - [Category(AcquisitionCategory)] + [Category(ConfigurationCategory)] [Description("The direction of channel 11.")] public BreakoutAnalogIODirection Direction11 { get; set; }