Skip to content

Commit

Permalink
Add 1000S for older 1200S with 1000W max output power
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornekelund committed May 20, 2021
1 parent 611847a commit ba24d39
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions ACOM Controller/Config.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public Config(MainWindow mw, string model, string port, bool ontop, bool nopopup
mainwindow = mw;
modelComboBox.Items.Add("600S");
modelComboBox.Items.Add("700S");
modelComboBox.Items.Add("1000S");
modelComboBox.Items.Add("1200S");
modelComboBox.SelectedItem = model;

Expand Down
6 changes: 6 additions & 0 deletions ACOM Controller/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,12 @@ public void Configuration(string comPort, string ampModel, bool alwaysontop, boo
NominalReversePower = 129.0;
MaxReversePower = 170.0;
break;
case "1000S":
NominalForwardPower = 1000.0;
MaxForwardPower = 1200.0;
NominalReversePower = 290.0;
MaxReversePower = 250.0;
break;
case "1200S":
NominalForwardPower = 1200.0;
MaxForwardPower = 1400.0;
Expand Down
4 changes: 2 additions & 2 deletions ACOM Controller/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.4.0")]
[assembly: AssemblyFileVersion("2.0.4.0")]
[assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]

0 comments on commit ba24d39

Please sign in to comment.