- Fixed missalignment in TAS scan messages
- Fixed a counting/driving race in devexec - Fixed some problems with sanscheck SKIPPED: psi/tasscan.c psi/utils/check/amorcheck psi/utils/check/dmccheck psi/utils/check/focuscheck psi/utils/check/hrptcheck psi/utils/check/sanscheck psi/utils/check/sicssyntaxlib.tcl psi/utils/check/topsicheck psi/utils/check/tricscheck
This commit is contained in:
@ -431,11 +431,15 @@
|
||||
}
|
||||
break;
|
||||
case HWBusy:
|
||||
if(pCountInt)
|
||||
if(pCountInt != NULL && pDrivInt != NULL)
|
||||
{
|
||||
SetStatus(eCountDrive);
|
||||
}
|
||||
else if(pCountInt != NULL && pDrivInt == NULL)
|
||||
{
|
||||
SetStatus(eCounting);
|
||||
}
|
||||
else if(pDrivInt)
|
||||
else if(pDrivInt != NULL && pCountInt == NULL)
|
||||
{
|
||||
SetStatus(eDriving);
|
||||
}
|
||||
|
Reference in New Issue
Block a user