You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
696 B
44 lines
696 B
// Gemplus (C) 1999
|
|
//
|
|
// Version 1.0
|
|
// Author: Sergey Ivanov
|
|
// Date of creation - 11.01.1999
|
|
// Change log:
|
|
//
|
|
#ifndef _READER_CONFIG_
|
|
#define _READER_CONFIG_
|
|
|
|
#include "generic.h"
|
|
|
|
#pragma PAGEDCODE
|
|
// Transparent mode configuration
|
|
struct TransparentConfig
|
|
{
|
|
BYTE CFG;
|
|
BYTE ETU;
|
|
BYTE EGT;
|
|
BYTE CWT;
|
|
BYTE BWI;
|
|
BYTE Fi;
|
|
BYTE Di;
|
|
};
|
|
|
|
|
|
struct ReaderConfig
|
|
{
|
|
SHORT Type;
|
|
USHORT PresenceDetection;
|
|
USHORT Vpp;
|
|
BYTE Voltage;
|
|
BYTE PTSMode;
|
|
BYTE PTS0;
|
|
BYTE PTS1;
|
|
BYTE PTS2;
|
|
BYTE PTS3;
|
|
TransparentConfig transparent;
|
|
ULONG ActiveProtocol;
|
|
|
|
ULONG PowerTimeOut;
|
|
};
|
|
|
|
#endif
|