Skip to content

Commit

Permalink
Disable EC status checking as causing problems
Browse files Browse the repository at this point in the history
  • Loading branch information
cescalara committed Jan 9, 2019
1 parent 1f9a640 commit 85e297c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CPU/CPUsoftware/src/subsystems/ZynqManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,8 @@ int ZynqManager::GetHvpsStatus() {
close(sockfd);

/* perform checks */
/* ! disabled this for now as causing problems ! */
/*
std::vector<int> ec_status = CpuTools::DelimStrToVec(status, ' ', N_EC, false);
for (uint8_t i = 0; i < ec_status.size(); i++) {
if (this->ec_values[i] != ec_status[i]) {
Expand All @@ -299,7 +301,8 @@ int ZynqManager::GetHvpsStatus() {
clog << "error: " << logstream::error << "unexpected EC HVPS status" << std::endl;
}
}

*/

return 0;
}

Expand Down

0 comments on commit 85e297c

Please sign in to comment.