Optimized chip test for new test board, implemented leakage current limit of 100 pA

This commit is contained in:
2017-01-09 16:54:01 +01:00
parent 118ded9ac0
commit 8461281a67
2 changed files with 61 additions and 38 deletions
+3
View File
@@ -1328,6 +1328,8 @@ void cmd_loop()
/* Chip Test */
else if (match(param[0], "ct")) {
b->SetStandbyMode(0);
Sleep(500);
if (drs->GetNumberOfBoards() == 0)
puts("No DRS board found");
else {
@@ -1339,6 +1341,7 @@ void cmd_loop()
b->SetDAC(i, 0);
i = getch();
b->SetStandbyMode(0);
Sleep(500);
} while (i != 'q');
}
}