Skip to content

Commit

Permalink
Update skywatcher.cpp (#829)
Browse files Browse the repository at this point in the history
  • Loading branch information
szanasco authored Sep 6, 2023
1 parent b51a62a commit c5b96ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion indi-eqmod/skywatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,9 @@ void Skywatcher::InquireBoardVersion(char **boardinfo)
case 0x0A:
strcpy(boardinfo[0], "Star Adventurer");
break;
case 0x0C:
strcpy(boardinfo[0], "Star Adventurer GTi");
break;
case 0x20:
strcpy(boardinfo[0], "EQ8-R Pro");
break;
Expand Down Expand Up @@ -650,7 +653,7 @@ bool Skywatcher::HasPPEC()

bool Skywatcher::HasSnapPort1()
{
return MountCode == 0x04 || MountCode == 0x05 || MountCode == 0x06 || MountCode == 0x0A || MountCode == 0x23
return MountCode == 0x04 || MountCode == 0x05 || MountCode == 0x06 || MountCode == 0x0A || MountCode == 0x0C || MountCode == 0x23
|| MountCode == 0xA5;
}

Expand Down

0 comments on commit c5b96ee

Please sign in to comment.