Skip to content

Commit

Permalink
Reset dome slaving when a slaving slew is aborted.
Browse files Browse the repository at this point in the history
  • Loading branch information
astroman133 committed Jul 23, 2022
1 parent d371677 commit 932d71c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions DeviceHub/DeviceManagers/DomeManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,7 @@ public void StopDomeMotion()
if ( Connected )
{
AbortSlew();
SetSlavedState( false );
Status = new DevHubDomeStatus( this );
}
}
Expand Down
2 changes: 1 addition & 1 deletion DeviceHub/Dome Driver/DomeDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ public void AbortSlew()

try
{
DomeManager.AbortSlew();
DomeManager.StopDomeMotion();

msg = _done;
}
Expand Down
2 changes: 1 addition & 1 deletion Inno Setup/ASCOM Device Hub Setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
;

#define MyAppName "ASCOM.DeviceHub"
#define MyAppVersion "6.6.0.15"
#define MyAppVersion "6.6.0.16"
#define MyDestSubdirName "DeviceHub"
; #define MyPlatformRoot "D:\Github Repos\ASCOMPlatform\"
#define MyPlatformRoot "D:\My Projects\Visual Studio 2022\Ascom\"
Expand Down
2 changes: 1 addition & 1 deletion ProductAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
// 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( "6.6.0.15" )]
[assembly: AssemblyVersion( "6.6.0.16" )]

0 comments on commit 932d71c

Please sign in to comment.