This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
acp_changelog [2019/07/29 12:50] davner removed |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== ACP Software Change Log ====== | ||
- | |||
- | Found below are the changes made to ACP that are " | ||
- | |||
- | ===== June 27th 2017 ===== | ||
- | |||
- | (aaa.js) | ||
- | function main() | ||
- | { | ||
- | // RAR = RightAscensionRate | ||
- | Console.PrintLine(" | ||
- | Console.PrintLine(" | ||
- | } | ||
- | |||
- | According to the LCOGT driver RightAscensionRate is an available property which returns " | ||
- | |||
- | In AcquireSupport.wsc a hard coded change was made to make this a fixed " | ||
- | |||
- | '''' | ||
- | If False Then | ||
- | c_haveTrackOffset = True | ||
- | Util.Console.PrintLine "Mount supports tracking rate offsets" | ||
- | x = False | ||
- | Err.Clear | ||
- | On Error Resume Next ' Catch errors here | ||
- | If Telescope.RightAscensionRate <> 0.0 Then Telescope.RightAscensionRate = 0.0 | ||
- | If Err.Number <> 0 Then x = True ' Oops this one failed | ||
- | Err.Clear | ||
- | If Not x Then ' | ||
- | If Telescope.DeclinationRate <> 0.0 Then Telescope.DeclinationRate = 0.0 | ||
- | If Err.Number <> 0 Then x = True | ||
- | End If | ||
- | On Error GoTo 0 | ||
- | ' | ||
- | ' If x is True, then one of the above failed, probably for tracking state. | ||
- | ' If tracking is off then turn it on and re-do the above. This time the | ||
- | ' actions really should succeed. It is a fatal script error if they don't. | ||
- | ' | ||
- | If x Then | ||
- | y = Telescope.Tracking | ||
- | If Not y Then Telescope.Tracking = True ' | ||
- | If Telescope.RightAscensionRate <> 0.0 Then Telescope.RightAscensionRate = 0.0 | ||
- | If Telescope.DeclinationRate <> 0.0 Then Telescope.DeclinationRate = 0.0 | ||
- | If Not y Then Telescope.Tracking = False ' If tracking was off, turn it back on | ||
- | End If | ||
- | c_trackOffset = False | ||
- | |||