[Pcsclite-cvs-commit] Drivers/ccid/src/protocol_t1 protocol_t1.c,1.1,1.2

rousseau@quantz.debian.org rousseau@quantz.debian.org
Mon, 02 Feb 2004 16:44:10 +0100


Update of /cvsroot/pcsclite/Drivers/ccid/src/protocol_t1
In directory quantz:/tmp/cvs-serv9703/protocol_t1

Modified Files:
	protocol_t1.c 
Log Message:
remove PPS hack


Index: protocol_t1.c
===================================================================
RCS file: /cvsroot/pcsclite/Drivers/ccid/src/protocol_t1/protocol_t1.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- protocol_t1.c	15 Jan 2004 14:34:21 -0000	1.1
+++ protocol_t1.c	2 Feb 2004 15:44:08 -0000	1.2
@@ -100,17 +100,6 @@
   /* Set initial send sequence (NS) */
   t1->ns = 1;
   
-  /* PPS */
-  {
-  	int len = 3;
-	BYTE pps[] = {0xFF, 0x11, 0x94, 0};
-	BYTE param[] = {0x94, 0x10, 0x00, 0x43, 0x00, 0x20, 0x00};
-
-  	PPS_Exchange(t1, pps, &len);
-
-	SetParameters(t1->lun, 1, 7, param);
-  }
-
 #ifdef DEBUG_PROTOCOL
   printf ("Protocol: T=1: IFSC=%d, IFSD=%d, EDC=%s\n",
      t1->ifsc, t1->ifsd, (t1->edc == PROTOCOL_T1_EDC_LRC) ? "LRC" : "CRC");