- Introduced a new trace facility
- Fixed performance problems in many protocol drivers. SKIPPED: psi/julprot.c psi/phytron.c psi/pmacprot.c psi/polterwrite.c psi/spss7.c
This commit is contained in:
@ -133,6 +133,8 @@ static void findResponse(Ascon *a)
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int TestProtHandler(Ascon * a)
|
||||
{
|
||||
int i;
|
||||
|
||||
switch (a->state) {
|
||||
case AsconConnectStart:
|
||||
case AsconConnecting:
|
||||
@ -146,6 +148,9 @@ static int TestProtHandler(Ascon * a)
|
||||
findResponse(a);
|
||||
break;
|
||||
case AsconReadStart:
|
||||
for(i = 0; i < 100; i++){
|
||||
TaskYield(pServ->pTasker);
|
||||
}
|
||||
a->state = AsconReading;
|
||||
break;
|
||||
case AsconReading:
|
||||
|
Reference in New Issue
Block a user