Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ioptronv3driver.cpp #2138

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion drivers/telescope/ioptronv3driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ const std::map<std::string, std::string> Driver::models =
{
{"0010", "SkyHunter EQ"},
{"0011", "SkyHunter AA"},
{"0012", "HAE16 EQ"},
{"0013", "HAE16 AA"},
{"0014", "HAE18 EQ"},
{"0015", "HEM15"},
{"0022", "HAE18 AA"},
{"0025", "HEM27"},
{"0026", "CEM26"},
{"0027", "CEM26-EC"},
Expand Down Expand Up @@ -437,7 +441,8 @@ bool Driver::setCurrentHome()
/* v3.0 Added in control for PEC , Train and Data Integrity */
bool Driver::setPECEnabled(bool enabled)
{
return sendCommandOk(enabled ? ":SPP1#" : ":SPP0#");
// return sendCommandOk(enabled ? ":SPP1#" : ":SPP0#");
return true;
}

bool Driver::setPETEnabled(bool enabled)
Expand Down
Loading