Skip to content

Commit 932d71c

Browse files
committed
Reset dome slaving when a slaving slew is aborted.
1 parent d371677 commit 932d71c

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

DeviceHub/DeviceManagers/DomeManager.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,7 @@ public void StopDomeMotion()
401401
if ( Connected )
402402
{
403403
AbortSlew();
404+
SetSlavedState( false );
404405
Status = new DevHubDomeStatus( this );
405406
}
406407
}

DeviceHub/Dome Driver/DomeDriver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ public void AbortSlew()
433433

434434
try
435435
{
436-
DomeManager.AbortSlew();
436+
DomeManager.StopDomeMotion();
437437

438438
msg = _done;
439439
}

Inno Setup/ASCOM Device Hub Setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
;
55

66
#define MyAppName "ASCOM.DeviceHub"
7-
#define MyAppVersion "6.6.0.15"
7+
#define MyAppVersion "6.6.0.16"
88
#define MyDestSubdirName "DeviceHub"
99
; #define MyPlatformRoot "D:\Github Repos\ASCOMPlatform\"
1010
#define MyPlatformRoot "D:\My Projects\Visual Studio 2022\Ascom\"

ProductAssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
// You can specify all the values or you can default the Build and Revision Numbers
2121
// by using the '*' as shown below:
2222
// [assembly: AssemblyVersion("1.0.*")]
23-
[assembly: AssemblyVersion( "6.6.0.15" )]
23+
[assembly: AssemblyVersion( "6.6.0.16" )]

0 commit comments

Comments
 (0)