ACR122S. Serial NFC Reader. Application Programming Interface V2.02. Subject to change without prior notice.

Size: px
Start display at page:

Download "ACR122S. Serial NFC Reader. Application Programming Interface V2.02. Subject to change without prior notice."

Transcription

1 ACR122S Serial NFC Reader Applicatin Prgramming Interface V2.02 Subject t change withut prir ntice

2 Table f Cntents 1.0. Intrductin Features Applicatin Prgramming Interface Overview Reader Define Dcumentatin Functin Dcumentatin LED Functin Dcumentatin Card Functin Dcumentatin Appendix A. Data Structures Appendix A.1. _ACR122_TIMEOUTS Struct Reference Appendix A.2. _ACR122_LED_CONTROL Struct Reference Appendix B. Errr Cdes returned by high-level APIs List f Figures Figure 1 : ACR122S Library Architecture... 3 Page 2 f 23

3 1.0. Intrductin This API dcument describes the use f ACR122S interface sftware t facilitate applicatin develpment with the ACR122S reader. This interface sftware is supplied in the frm f 32-bit and 64-bit DLL (Dynamic Link Library which can be prgrammed using ppular develpment tls like Java, Delphi, Visual Basic, Visual C++, Visual C# and Visual Basic.NET. ACR122S can be cnnected t the PC thrugh the RS-232 interface. The architecture f the ACR122S library can be visualized as the fllwing diagram: Reader PC Applicatin Prgram ACR122S Windws Driver Prgram Operating System RS-232 Layer Figure 1: ACR122S Library Architecture Page 3 f 23

4 2.0. Features Serial RS-232 Interface: Baud Rate = bps, 8-N-1 USB interface fr pwer supply CCID-like fram frmat (Binary frmat Smart Card Reader: Read/Write speed f up t 424 kbps Built-in antenna fr cntactless tag access, with card reading distance f up t 50 mm (depending n tag type Supprt fr ISO Part 4 Type A and B cards, Mifare, FeliCa, and all fur types f NFC (ISO/IEC tags Built-in anti-cllisin feature (nly ne tag is accessed at any time ISO 7816-cmpliant SAM slt Built-in Peripherals: Tw user-cntrllable LEDs User-cntrllable buzzer Cmpliant with the fllwing standards: ISO CE FCC KC VCCI RHS Page 4 f 23

5 3.0. Applicatin Prgramming Interface Overview The ACR122S DLL is a set f high-level functins prvided fr the applicatin sftware use. It supplies a cnsistent API (Applicatin Prgramming Interface fr the applicatin t perate n ACR122S and n the crrespnding presented card. The DLL cmmunicates with the ACR122S via the cmmunicatin prt facilities prvided by the perating system. The ACR122S API defines a cmmn way f accessing the ACR122S. Applicatin prgrams invke the ACR122S thrugh the interface functins and perfrm peratins n the presented card. The header file ACR122.h is available fr the prgram develper, which cntains all the functin prttypes and macrs as described belw Reader Define Dcumentatin ACR122_GetFirmwareVersin and ACR122_GetFirmwareVersinA ACR122_GetFirmwareVersin will be mapped t ACR122_GetFirmwareVersinW( functin if Unicde is defined. Otherwise, it will be mapped t ACR122_GetFirmwareVersinA( functin. #define ACR122_GetFirmwareVersin ACR122_GetFirmwareVersinA ACR122_Open and ACR122_OpenA ACR122_Open will be mapped t ACR122_OpenW( functin if Unicde is defined. Otherwise, it will be mapped t ACR122_OpenA( functin. #define ACR122_Open ACR122_OpenA Functin Dcumentatin ACR122_OpenA This functin is used t pen the reader and return a handle value as a reference. DWORD WINAPI ACR122_OpenA ( LPCSTR prtname, LPHANDLE phreader [in] prtname [ut] phreader Descriptin Prt name. "\\.\COM1" means that the reader is cnnected t COM1 in Windws. Pinter t the HANDLE variable. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Page 5 f 23

6 ACR122_OpenW This functin is used t pen a reader and return a handle value as reference. DWORD WINAPI ACR122_OpenW ( LPCWSTR prtname, LPHANDLE phreader [in] prtname [ut] phreader Descriptin Prt name. "\\.\COM1" means that the reader is cnnected t COM1 in Windws. Pinter t the HANDLE variable. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Surce Cde Example HANDLE hreader; // Open reader using COM1 ret = ACR122_Open(TEXT("\\\\.\\COM1", &hreader; ACR122_Clse This functin is used t clse the reader and release the resurces. DWORD WINAPI ACR122_Clse ( HANDLE hreader Descriptin A reference value returned frm ACR122_Open( functin. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Surce Cde Example // Clse reader ret = ACR122_Clse(hReader; Page 6 f 23

7 ACR122_GetNumSlts This functin is used t retrieve the number f slts. DWORD WINAPI ACR122_GetNumSlts ( HANDLE hreader, LPDWORD pnumslts [ut] pnumslts Descriptin A reference value returned frm ACR122_Open( functin. Pinter t a DWORD variable in which the number f slts is returned. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Surce Cde Example DWORD numslts; // Get number f slts ret = ACR122_GetNumSlts(hReader, &numslts; ACR122_GetBaudRate This functin is used t retrieve the baud rate f reader. DWORD WINAPI ACR122_GetBaudRate ( HANDLE hreader, LPDWORD pbaudrate [ut] pbaudrate Descriptin A reference value returned frm ACR122_Open( functin. Pinter t a DWORD variable in which the baud rate is returned. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Surce Cde Example DWORD baudrate; // Get baud rate ret = ACR122_GetBaudRate(hReader, &baudrate; Page 7 f 23

8 ACR122_SetBaudRate This functin is used t set the cmmunicatin baud rate f reader. The reader supprts 9600 bps and bps. DWORD WINAPI ACR122_SetBaudRate ( HANDLE hreader, DWORD baudrate [in] baudrate Descriptin A reference value returned frm ACR122_Open( functin. Baud rate must be 9600 bps r bps. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Surce Cde Example // Set baud rate t bps ret = ACR122_SetBaudRate(hReader, ; ACR122_GetTimeuts This functin is used t retrieve the timeut parameters fr status and respnse peratins f the reader. DWORD WINAPI ACR122_GetTimeuts ( HANDLE hreader, PACR122_TIMEOUTS ptimeuts [ut] ptimeuts Descriptin A reference value returned frm ACR122_Open( functin. Pinter t a ACR122_TIMEOUTS structure in which the timeut infrmatin is returned. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Nte: Fr PACR122_TIMEOUTS, please see Appendix A.1 _ACR122_TIMEOUTS Struct Reference. Page 8 f 23

9 Surce Cde Example ACR122_TIMEOUTS timeuts; // Get timeuts ret = ACR122_GetTimeuts(hReader, &timeuts; ACR122_SetTimeuts This functin is used t set the timeut parameters fr status and respnse peratins n the reader. DWORD WINAPI ACR122_SetTimeuts ( HANDLE hreader, cnst PACR122_TIMEOUTS ptimeuts [in] ptimeuts Descriptin A reference value returned frm ACR122_Open( functin. Pinter t a ACR122_TIMEOUTS structure that cntains the new timeut values The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Nte: Fr PACR122_TIMEOUTS, please see Appendix A.1 _ACR122_TIMEOUTS Struct Reference. Surce Cde Example ACR122_TIMEOUTS timeuts; // Get timeuts //... // Mdify status timeut t 100 ms timeuts.statustimeut = 100; // Set timeuts ret = ACR122_SetTimeuts(hReader, &timeuts; ACR122_GetFirmwareVersinA This functin is used t retrieve the firmware versin in ANSI string f the slt. DWORD WINAPI ACR122_GetFirmwareVersinA ( HANDLE hreader, DWORD sltnum, LPSTR firmwareversin, LPDWORD pfirmwareversinlen Descriptin A reference value returned frm ACR122_Open( functin. Page 9 f 23

10 [in] sltnum Slt number. Descriptin [ut] firmwareversin [in,ut] pfirmwareversinlen A pinter t the buffer that receives the firmware versin returned frm the reader. The length in number f bytes f the firmware versin parameter and receives the actual number f bytes received frm the reader. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes ACR122_GetFirmwareVersinW This functin is used t retrieve the firmware versin in Unicde string f the slt. DWORD WINAPI ACR122_GetFirmwareVersinW ( HANDLE hreader, DWORD sltnum, LPWSTR firmwareversin, LPDWORD pfirmwareversinlen [in] sltnum [ut] firmwareversin [in,ut] pfirmwareversinlen Descriptin A reference value returned frm ACR122_Open( functin. Slt number. A pinter t the buffer that receives the firmware versin returned frm the reader. The length in number f bytes f the firmware versin parameter and receives the actual number f bytes received frm the reader. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Surce Cde Example TCHAR firmwareversin[20]; DWORD firmwareversinlen; // Get firmware versin firmwareversinlen = sizef(firmwareversin / sizef(tchar; ret = ACR122_GetFirmwareVersin(hReader, firmwareversin, &firmwareversinlen; Page 10 f 23

11 3.2. LED Functin Dcumentatin ACR122_SetLedStatesWithBeep This functin is used t cntrl LED0, LED1 and buzzer peratin f the reader. DWORD WINAPI ACR122_SetLedStatesWithBeep ( HANDLE hreader, PACR122_LED_CONTROL cntrls, DWORD numcntrls, DWORD t1, DWORD t2, DWORD numtimes, DWORD buzzermde [in] cntrls Descriptin A reference value returned frm ACR122_Open( functin. A pinter t the array f ACR122_LED_CONTROL data structure. [in] numcntrls Number f cntrls must be 2. [in] t1 T1 in millisecnds. The value must be frm 0 t [in] t2 T2 in millisecnds. The value must be frm 0 t [in] numtimes Number f times. The values must be frm 0 t 255. A bitmask f buzzer mde. Pssible values may be cmbined with the OR peratin. [in] buzzermde Value ACR122_BUZZER_MODE_O FF ACR122_BUZZER_MODE_O N_T1 ACR122_BUZZER_MODE_O N_T2 Meaning The buzzer will nt turn n. The buzzer will turn n during T1 duratin. The buzzer will turn n during T2 duratin. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Nte: Fr PACR122_LED_CONTROL, please see Appendix A.2 _ACR122_LED_CONTROL Struct Reference. Page 11 f 23

12 Surce Cde Example ACR122_LED_CONTROL cntrls[2]; // Set LED0 t ON cntrls[0].finalstate = ACR122_LED_STATE_ON; cntrls[0].updateenabled = TRUE; cntrls[0].initialblinkingstate = ACR122_LED_STATE_OFF; cntrls[0].blinkenabled = FALSE; // Set LED1 t blink cntrls[1].finalstate = ACR122_LED_STATE_OFF; cntrls[1].updateenabled = FALSE; cntrls[1].initialblinkingstate = ACR122_LED_STATE_OFF; cntrls[1].blinkenabled = TRUE; // Beep n T1 where T1 and T2 are equal t 100 ms ret = ACR122_SetLedStatesWithBeep(hReader, cntrls, 2, 100, 100, ACR122_BUZZER_MODE_ON_T1; Page 12 f 23

13 3.3. Card Functin Dcumentatin ACR122_DirectTransmit This functin is used t send tag cmmand and receive respnse frm the cntactless interface f the reader. DWORD WINAPI ACR122_DirectTransmit ( HANDLE cnst LPBYTE sendbuffer, DWORD sendbufferlen, LPBYTE recvbuffer, LPDWORD precvbufferlen hreader, [in] sendbuffer [in] sendbufferlen [in] recvbuffer [in,ut] precvbufferlen Descriptin A reference value returned frm ACR122_Open( functin. A pinter t the actual data t be written t the card. The length in number f bytes f the sendbuffer parameter. A pinter t any data returned frm the card. The length in number f bytes f the recvbuffer parameter and receives the actual number f bytes received frm the card. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Surce Cde Example BYTE cmmand[] = { 0xD4, 0x4A, 0x01, 0x00 }; // Pll Type A card DWORD cmmandlen = sizef(cmmand; BYTE respnse[300]; DWORD respnselen = sizef(respnse; ret = ACR122_DirectTransmit(hReader, cmmand, cmmandlen, respnse, &respnselen; Page 13 f 23

14 This API is used fr exchanging cmmands and respnses with the cntactless interface. Sme pssible cmmand grups are: Grup 1. PICC Plling fr different Tag Types. E.g. ISO Type A, ISO Type B, FeliCa and Mifare Case: ISO Type A ============================================================================= Cmmand = {D4 4A 01 00} Respnse = {D5 4B F A F } In which, Number f Tag fund = [01] Target number = 01 SENS_RES = SEL_RES = 28 Length f the UID = 4 UID = F A0 ATS = F Operatin Finished = r Respnse = {D5 4B } (n tag fund Case: ISO Type B ============================================================================= Cmmand = {D4 4A } Respnse = {D5 4B F } In which, Number f Tag fund = [01] Target number = 01 ATQB = F ATTRIB_RES Length = 01 ATTRIB_RES = 21 Operatin Finished = r Respnse = {D5 4B } (n tag fund Case: Mifare 1K/4K/Ultralight ============================================================================= Cmmand = {D4 4A 01 00} Respnse = {D5 4B E 0C A1 BF } In which, Number f Tag fund = [01] Target number = 01 SENS_RES = Page 14 f 23

15 SEL_RES = 00 Length f the UID = 7 UID = 04 6E 0C A1 BF Operatin Finished = r Respnse = {D5 4B } (n tag fund Nte: The tag type can be determined by recgnizing the SEL_RES. SEL_RES f sme cmmn tag types: 00 = MIFARE Ultralight 08 = MIFARE 1K 09 = MIFARE MINI 18 = MIFARE 4K 20 = MIFARE DESFIRE 28 = JCOP30 98 = Gemplus MPCOS Case: FeliCa 212 K ============================================================================= Cmmand = {D4 4A FF FF 00 00} Respnse = {D5 4B B 02 4F 49 8A 8A } In which, Number f Tag fund = [01] Target number = 01 POL_RES Length = 14 Respnse Cde = 01 NFCID2 = PAD = B 02 4F 49 8A 8A Operatin Finished = r Respnse = {D5 4B } (n tag fund Case: FeliCa 424K ============================================================================= Cmmand = {D4 4A FF FF 00 00} Respnse = {D5 4B B 02 4F 49 8A 8A } In which, Number f Tag fund = [01] Target number = 01 POL_RES Length = 14 Page 15 f 23

16 Respnse Cde = 01 NFCID2 = PAD = B 02 4F 49 8A 8A Operatin Finished = r Respnse = {D5 4B }(n tag fund Grup 2. Exchange Tag Cmmands and Respnses fr ISO cmpliant tags. C_APDU = Cmmand = {D } Respnse = {D5 41 [00] ED C B } In which, Respnse Data = ED C B Grup 3. Exchange FeliCa Cmmands and Respnses, e.g. Read the memry blck. Cmmand = {D } Respnse = {D5 41 [00] 1D AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 90 00} Nte: Please refer t FeliCa specificatin fr details. Grup 4. Exchange Mifare 1K/4K Classic Cmmands and Respnse Example 1: CMD fr KEY A Authenticatin Blck 04 KEY = FF FF FF FF FF FF UID = F6 8E 2A 99 Cmmand = {D FF FF FF FF FF FF F6 8E 2A 99} Respnse = {D5 41 [00] 90 00} Example 2: CMD fr KEY B Authenticatin Blck 04 KEY = FF FF FF FF FF FF UID = F6 8E 2A 99 Cmmand = {D FF FF FF FF FF FF F6 8E 2A 99} Respnse = {D5 41 [00] 90 00} Example 3: CMD fr Read Data Blck Read the cntent f Blck 04 Cmmand = {D } Respnse = {D5 41 [00] } In which, Blck Data = Page 16 f 23

17 Example 4: CMD fr Update Data Blck Update the cntent f Blck 04 Cmmand = {D A A 0B 0C 0D 0E 0F 10} Respnse = {D5 41 [00] 90 00} Nte: The errr cde [XX] will be returned. [00] = Valid Other = Errr Please refer t Errr Cdes Table fr mre details. Grup 5. Exchange Mifare 1K/4K Classic Value Blck Cmmands and Respnse The value blcks are used fr perfrming electrnic purse functins. E.g. Increment, Decrement, Restre and Transfer, etc. The value blcks have a fixed data frmat which permits errr detectin and crrectin and a backup management. Byte Number Descriptin Value Value Value Adr Adr Adr Adr Where: Value Adr A signed 4-byte value. The lwest significant byte ff a value is stred in the lwest address byte. Negative values are stred in standard 2 s cmplement frmat. 1-Byte address which can be used t save the strage address f a blck (ptinal. Example: Value 100 (decimal = 64 (Hex, assume Blck = 0x05 The frmatted value blck = B FF FF FF FA 05 FA 1. Update the cntent f Blck 05 with a value 100 (dec Cmmand = {D A B FF FF FF FA 05 FA} Respnse = {D5 41 [00] 90 00} 2. Increment the value f Blck 05 by 1 (dec Cmmand = {D C } Respnse = {D5 41 [00] 90 00} Nte: Decrement the value f Blck 05 by 1 (dec Cmmand = {D C } Page 17 f 23

18 3. Transfer the prir calculated value f Blck 05 (dec Cmmand = {D B0 05} Respnse = {D5 41 [00] 90 00} 4. Restre the value f Blck 05 (cancel the prir Increment r Decrement peratin Cmmand = {D C2 05} 5. Read the cntent f Blck 05 Cmmand = {D } Respnse = {D5 41 [00] A FF FF FF FA 05 FA 90 00} In which, the value = 101 (dec 6. Cpy the value f Blck 05 t Blck 06 (dec Cmmand = {D C2 05} Respnse = {D5 41 [00] 90 00} Cmmand = {D B0 06} Respnse = {D5 41 [00] 90 00} 7. Read the cntent f Blck 06 Cmmand = {D } Respnse = {D5 41 [00] A FF FF FF FA 05 FA 90 00} In which, the value = 101 (dec. The Adr 05 FA 05 FA tells us the value is cpied frm Blck 05. Grup 6: PICC Operatin parameters setting. Example 1: CMD fr PICC Plling Retry Time Cmmand = {D [00]} // retry time = 00 Respnse = {D5 33} Example 2: CMD fr Enable ISO Type A Activatin. E.g. T enter the ISO mde f JCOP Cmmand = {D } Respnse = {D5 12} Example 3: CMD fr Disable ISO Type A Activatin. E.g. T enter the MIFARE emulatin mde f JCOP Cmmand = {D } Respnse = {D5 12} Page 18 f 23

19 Example 4: CMD fr Turn On PICC Antenna Cmmand = {D } Respnse = {D5 33} Example 5: CMD fr Turn Off PICC Antenna Cmmand = {D } Respnse = {D5 33} ACR122_ExchangeApdu This functin is used t send an APDU cmmand and receive an APDU respnse frm the card. DWORD WINAPI ACR122_ExchangeApdu ( HANDLE hreader, DWORD sltnum, cnst LPBYTE sendbuffer, DWORD sendbufferlen, LPBYTE recvbuffer, LPDWORD precvbufferlen [in] sltnum [in] sendbuffer [in] sendbufferlen [ut] recvbuffer [in,ut] precvbufferlen Descriptin A reference value returned frm ACR122_Open( functin. Slt number. A pinter t the actual data t be written t the card. The length in number f bytes f the sendbuffer parameter. A pinter t any data returned frm the card. The length in number f bytes f the recvbuffer parameter and receives the actual number f bytes received frm the card. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Surce Cde Example BYTE cmmand[] = { 0x80, 0x84, 0x00, 0x00, 0x08 }; DWORD cmmandlen = sizef(cmmand; BYTE respnse[300]; DWORD respnselen = sizef(respnse; // Exchange APDU n slt 0 ret = ACR122_ExchangeApdu(hReader, 0, cmmand, cmmandlen, respnse, &respnselen; Page 19 f 23

20 ACR122_PwerOffIcc This functin is used t pwer ff the card in the slt. DWORD WINAPI ACR122_PwerOffIcc ( HANDLE hreader, DWORD sltnum [in] sltnum Descriptin A reference value returned frm ACR122_Open( functin. Slt number. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Surce Cde Example // Pwer ff slt 0 ret = ACR122_PwerOffIcc(hReader, 0; ACR122_PwerOnIcc This functin is used t pwer n the card in the slt and then return the ATR string frm the card. DWORD WINAPI ACR122_PwerOnIcc ( HANDLE hreader, DWORD sltnum, LPBYTE atr, LPDWORD patrlen [in] sltnum [ut] atr [in,ut] patrlen Descriptin A reference value returned frm ACR122_Open( functin. Slt number. A pinter t the buffer that receives the ATR string returned frm the card. The length in number f bytes f the atr parameter and receives the actual number f bytes received frm the card. The peratin cmpleted An errr cde. See Windws API errr cdes and ACR122 errr cdes. Page 20 f 23

21 Surce Cde Example BYTE atr[64]; DWORD atrlen = sizef(atr; // Pwer n slt 0 ret = ACR122_PwerOnIcc(hReader, 0, atr, &atrlen; Page 21 f 23

22 Appendix A. Data Structures Appendix A.1. _ACR122_TIMEOUTS Struct Reference This data structure is used in ACR122_GetTimeuts( and ACR122_SetTimeuts( functin. DWORD _ACR122_TIMEOUTS::numRespnseRetries Number f respnse retries. Default is 1. DWORD _ACR122_TIMEOUTS::numStatusRetries Number f status retries. Default is 1. DWORD _ACR122_TIMEOUTS::respnseTimeut Respnse timeut in millisecnds. Default is ms. DWORD _ACR122_TIMEOUTS::statusTimeut Status timeut in millisecnds. Default is 2000 ms. Appendix A.2. _ACR122_LED_CONTROL Struct Reference This data structure is used in ACR122_SetLedStatesWithBeep( functin. BOOL _ACR122_LED_CONTROL::blinkEnabled Enable blink. Set t TRUE t enable blink. Otherwise, set t FALSE. DWORD _ACR122_LED_CONTROL::finalState Final state. Pssible values are ACR122_LED_STATE_OFF and ACR122_LED_STATE_ON. DWORD _ACR122_LED_CONTROL::initialBlinkingState Initial blinking state. Pssible values are ACR122_LED_STATE_OFF and ACR122_LED_STATE_ON. BOOL _ACR122_LED_CONTROL::updateEnabled Enable update. Set t TRUE t update the state. Otherwise, set t FALSE t keep the state unchanged. Page 22 f 23

23 Appendix B. Errr Cdes returned by high-level APIs ACR122_ERROR_NO_MORE_HANDLES ((DWORD 0x L The handle is invalid. ACR122_ERROR_UNKNOWN_STATUS ((DWORD 0x L Reader unknwn errr. ACR122_ERROR_OPERATION_FAILURE ((DWORD 0x L Operatin failed. ACR122_ERROR_OPERATION_TIMEOUT ((DWORD 0x L Timeut peratin. ACR122_ERROR_INVALID_CHECKSUM ((DWORD 0x L Checksum calculatin errr ACR122_ERROR_INVALID_PARAMETER ((DWORD 0x L Incrrect parameter input. Page 23 f 23

ACR122S. Serial NFC Reader. Application Programming Interface V2.03. Subject to change without prior notice.

ACR122S. Serial NFC Reader. Application Programming Interface V2.03. Subject to change without prior notice. ACR122S Serial NFC Reader Application Programming Interface V2.03 Subject to change without prior notice Table of Contents 1.0. Introduction... 3 2.0. Features... 4 3.0. Application Programming Interface

More information

ACR122L Serial NFC Reader with LCD

ACR122L Serial NFC Reader with LCD ACR122L Serial NFC Reader with LCD Application Programming Interface V1.03 Subject to change without prior notice Table of Contents 1.0. Introduction... 3 2.0. Features... 4 3.0. Application Programming

More information

ACR1281S-C1. Serial Dual Interface Reader. Technical Specifications V1.04. Subject to change without prior notice.

ACR1281S-C1. Serial Dual Interface Reader. Technical Specifications V1.04. Subject to change without prior notice. ACR1281S-C1 Serial Dual Interface Reader Technical Specificatins V1.04 Subject t change withut prir ntice inf@acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACR122L NFC Reader with LCD

ACR122L NFC Reader with LCD ACR122L NFC Reader with LCD Application Programming Interface Subject to change without prior notice Table of Contents 1.0. Introduction... 4 2.0.... 5 2.1. Overview... 5 2.2. Reader... 5 2.2.1. Define

More information

ACR1251U USB NFC Reader with SAM Slot

ACR1251U USB NFC Reader with SAM Slot ACR1251U USB NFC Reader with SAM Slt Technical Specificatins V1.10 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACM1252U-Y3. USB NFC Reader Module with Detachable Antenna Board. Technical Specifications V1.00. Subject to change without prior notice

ACM1252U-Y3. USB NFC Reader Module with Detachable Antenna Board. Technical Specifications V1.00. Subject to change without prior notice ACM1252U-Y3 USB NFC Reader Mdule with Detachable Antenna Bard Technical Specificatins V1.00 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features...

More information

ACR1252U-A1. NFC Forum Certified Reader. Technical Specifications V1.01. Subject to change without prior notice.

ACR1252U-A1. NFC Forum Certified Reader. Technical Specifications V1.01. Subject to change without prior notice. ACR1252U-A1 NFC Frum Certified Reader Technical Specificatins V1.01 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACM1252U-Z2. Small NFC Module Reader. Technical Specifications V1.01. Subject to change without prior notice.

ACM1252U-Z2. Small NFC Module Reader. Technical Specifications V1.01. Subject to change without prior notice. ACM1252U-Z2 Small NFC Mdule Reader Technical Specificatins V1.01 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACR122U USB NFC Reader

ACR122U USB NFC Reader ACR122U USB NFC Reader Technical Specificatins V3.06 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins... 5

More information

ACR122U SAM NFC Reader. Application Programming Interface

ACR122U SAM NFC Reader. Application Programming Interface Application Programming Interface ACR122U SAM NFC Reader Table of Contents ACR122T Application Programming 1.0 Introduction 3 1.1 Features 3 1.2 USB Interface 3 2.0 Communication between the Driver, Contactless

More information

ACR1283L Standalone Contactless Reader

ACR1283L Standalone Contactless Reader ACR1283L Standalne Cntactless Reader Technical Specificatins V1.05 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACR1255U-J1 Secure Bluetooth NFC Reader

ACR1255U-J1 Secure Bluetooth NFC Reader ACR1255U-J1 Secure Bluetth NFC Reader Technical Specificatins V1.09 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2.

More information

Application Programming Interface

Application Programming Interface Application Programming Interface ACR122 NFC Reader Advanced Card Systems Ltd. Website: www.acs.com.hk Email: info@acs.com.hk Table of Contents 1.0 Introduction...3 1.1 Features...3 1.2 USB Interface...3

More information

ACR89U-A2 Handheld Smart Card Reader

ACR89U-A2 Handheld Smart Card Reader ACR89U-A2 Handheld Smart Card Reader Technical Specificatins V1.01 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Supprted Card Types... 5 3.1. MCU Cards...

More information

ACR123S Intelligent Contactless Reader

ACR123S Intelligent Contactless Reader ACR123S Intelligent Cntactless Reader Technical Specificatins V1.01 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACR122U-SAM USB NFC Reader

ACR122U-SAM USB NFC Reader ACR122U-SAM USB NFC Reader Application Programming Interface V2.01 Subject to change without prior notice Table of Contents 1.0. Introduction... 4 1.1. Features... 4 1.2. USB Interface... 5 2.0. Implementation...

More information

AMR220-C1. Secure Bluetooth mpos Reader. Technical Specifications v1.02. Subject to change without prior notice.

AMR220-C1. Secure Bluetooth mpos Reader. Technical Specifications v1.02. Subject to change without prior notice. AMR220-C1 Secure Bluetth mpos Reader Technical Specificatins v1.02 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Cmpact Design... 3 1.3. Firmware

More information

ACR123U. Intelligent Contactless Reader. Technical Specifications V1.06. Subject to change without prior notice.

ACR123U. Intelligent Contactless Reader. Technical Specifications V1.06. Subject to change without prior notice. ACR123U Intelligent Cntactless Reader Technical Specificatins V1.06 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACR123S. Intelligent Contactless Reader. Technical Specifications V1.05. Subject to change without prior notice.

ACR123S. Intelligent Contactless Reader. Technical Specifications V1.05. Subject to change without prior notice. ACR123S Intelligent Cntactless Reader Technical Specificatins V1.05 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACR123U. Intelligent Contactless Reader. Technical Specifications V1.03. Subject to change without prior notice.

ACR123U. Intelligent Contactless Reader. Technical Specifications V1.03. Subject to change without prior notice. ACR123U Intelligent Cntactless Reader Technical Specificatins V1.03 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACR122S Serial NFC Reader

ACR122S Serial NFC Reader ACR122S Serial NFC Reader Communication Protocol Subject to change without prior notice Table of Contents 1.0. Introduction... 4 1.1. Serial Interface... 4 1.2. Bi-Color LED... 4 1.3. Buzzer... 4 1.4.

More information

APG8201 PINhandy 1. Technical Specifications V2.00. Subject to change without prior notice.

APG8201 PINhandy 1. Technical Specifications V2.00. Subject to change without prior notice. APG8201 PINhandy 1 Technical Specificatins V2.00 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins... 6 4.0. Technical Specificatins...

More information

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide Xilinx Answer 65444 Xilinx PCI Express DMA Drivers and Sftware Guide Imprtant Nte: This dwnladable PDF f an Answer Recrd is prvided t enhance its usability and readability. It is imprtant t nte that Answer

More information

ACR123U. Intelligent Contactless Reader. Technical Specifications V1.04. Subject to change without prior notice.

ACR123U. Intelligent Contactless Reader. Technical Specifications V1.04. Subject to change without prior notice. ACR123U Intelligent Cntactless Reader Technical Specificatins V1.04 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACR38F Smart Floppy Smart Card Reader

ACR38F Smart Floppy Smart Card Reader ACR38F Smart Flppy Smart Card Reader Technical Specificatins V6.07 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Ease

More information

ACR38U-I1. Smart Card Reader. Technical Specifications V1.09. Subject to change without prior notice.

ACR38U-I1. Smart Card Reader. Technical Specifications V1.09. Subject to change without prior notice. ACR38U-I1 Smart Card Reader Technical Specificatins V1.09 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Mdern Design...

More information

ACR38T-D1. Smart Card Reader. Technical Specifications V1.07. Subject to change without prior notice.

ACR38T-D1. Smart Card Reader. Technical Specifications V1.07. Subject to change without prior notice. ACR38T-D1 Smart Card Reader Technical Specificatins V1.07 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Ease f Integratin... 3 2.0. Features...

More information

PL2303SA (SOP8 Package) USB to Serial Bridge Controller Product Datasheet

PL2303SA (SOP8 Package) USB to Serial Bridge Controller Product Datasheet PL2303SA (SOP8 Package) USB t Serial Bridge Cntrller Prduct Datasheet Dcument Revisin: 1.2.0 Dcument Release: Prlific Technlgy Inc. 7F, N. 48, Sec. 3, Nan Kang Rd. Nan Kang, Taipei 115, Taiwan, R.O.C.

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (Mac) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9202 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (PC) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN-X Upgrader prgram fr the 9202 User Terminal using a PC. 1 Getting and Extracting the Upgrader

More information

ACR38U-H1 Smart Card Reader

ACR38U-H1 Smart Card Reader ACR38U-H1 Smart Card Reader Technical Specificatins V6.05 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Unique Casing... 3 1.3. Ease f Integratin...

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9211 Upgrader User Guide (Mac) Rev 1.2 (6-Jul-17) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9211 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

ACR100I SIMFlash II (CCID)

ACR100I SIMFlash II (CCID) ACR100I SIMFlash II (CCID) SIMFlash with Embedded MIFARE Technical Specificatins V1.02 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. SIM-sized

More information

ACR38U-ND PocketMate. Smart Card Reader

ACR38U-ND PocketMate. Smart Card Reader ACR38U-ND PcketMate (Micr-USB) Smart Card Reader Technical Specificatins V1.05 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader...

More information

APG8205 OTP Generator

APG8205 OTP Generator APG8205 OTP Generatr Technical Specificatins V1.00 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins... 6 4.0.

More information

ACR39U-NF PocketMate II

ACR39U-NF PocketMate II ACR39U-NF PcketMate II (USB Type C) Smart Card Reader Technical Specificatins V1.01 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Ingenius Design...

More information

Re-Flashing Your CDM-760 Advanced High-Speed Trunking Modem

Re-Flashing Your CDM-760 Advanced High-Speed Trunking Modem Re-Flashing Yur CDM-760 Advanced High-Speed Trunking Mdem I. Intrductin: Firmware Files, Naming, Versins, and Frmats Make sure t perate the CDM-760 with its latest available firmware. Befre attempting

More information

ACR3901U-S1. Bluetooth Contact Card Reader. Technical Specifications V1.02. Subject to change without prior notice.

ACR3901U-S1. Bluetooth Contact Card Reader. Technical Specifications V1.02. Subject to change without prior notice. ACR3901U-S1 Bluetth Cntact Card Reader Technical Specificatins V1.02 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Cmpact Design... 3 1.3. Firmware

More information

Radio reading unit RFU 40. Data reading application RADIO READER

Radio reading unit RFU 40. Data reading application RADIO READER Radi reading unit RFU 40 Data reading applicatin RADIO READER Table f cntent 1. Radi reading unit RFU 40... 3 1.1. Meaning f LED symbls n the radi reading units RFU 40:... 3 1.2. Technical specificatin...

More information

ACR39U-U1. (USB Type A) Smart Card Reader. Technical Specifications V1.05. Subject to change without prior notice.

ACR39U-U1. (USB Type A) Smart Card Reader. Technical Specifications V1.05. Subject to change without prior notice. ACR39U-U1 (USB Type A) Smart Card Reader Technical Specificatins V1.05 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Cmpact Design... 3 1.3. Ease

More information

I. Introduction: About Firmware Files, Naming, Versions, and Formats

I. Introduction: About Firmware Files, Naming, Versions, and Formats I. Intrductin: Abut Firmware Files, Naming, Versins, and Frmats The UT-4500-A Series Upcnverters and DT-4500-A Series Dwncnverters stre their firmware in flash memry, which allws the system t uplad firmware

More information

I. Introduction: About Firmware Files, Naming, Versions, and Formats

I. Introduction: About Firmware Files, Naming, Versions, and Formats Updating Yur CTOG 250 Cmtech Traffic Optimizatin Gateway Firmware I. Intrductin: Abut Firmware Files, Naming, Versins, and Frmats The CTOG 250 Cmtech Traffic Optimizatin Gateway and its CDM 800 Gateway

More information

TIP812-SW-42. VxWorks Device Driver. User Manual. The Embedded I/O Company SERCOS IP. Version 1.0. Issue 1.1 September TEWS TECHNOLOGIES GmbH

TIP812-SW-42. VxWorks Device Driver. User Manual. The Embedded I/O Company SERCOS IP. Version 1.0. Issue 1.1 September TEWS TECHNOLOGIES GmbH The Embedded I/O Cmpany TIP812-SW-42 VxWrks Device Driver SERCOS IP Versin 1.0 User Manual Issue 1.1 September 2003 TEWS TECHNOLOGIES GmbH Am Bahnhf 7 25469 Halstenbek / Germany Phne: +49-(0)4101-4058-0

More information

ScandAll PRO software change history

ScandAll PRO software change history ScandAll PRO sftware change histry V2.0.15 Update Pack (Changes frm V2.0.12 t V2.0.15) V2.0.14 V2.0.15 The fllwing prblems may ccur because f the defect f V2.0.14 installer: Kfax VRS des nt functin Scanning

More information

LIN101 RS232 / LAN INTERFACE

LIN101 RS232 / LAN INTERFACE LIN101 24/02/2004 English 1 1. LIN101 LIN101 is a Serial Device Server, the main functin f the LIN101 is t netwrk-enable existing serial devices. Using the LIN101 yu can add an Ethernet prt practically

More information

ACR3901U-S1. Secure Bluetooth Contact Card Reader. Technical Specifications V1.07. Subject to change without prior notice

ACR3901U-S1. Secure Bluetooth Contact Card Reader. Technical Specifications V1.07. Subject to change without prior notice ACR3901U-S1 Secure Bluetth Cntact Card Reader Technical Specificatins V1.07 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader...

More information

Firmware Upgrade Wizard v A Technical Guide

Firmware Upgrade Wizard v A Technical Guide Firmware Upgrade Wizard v4.1.1 A Technical Guide Nvember 2015 Intrductin The Firmware Upgrade Wizard prvides the fllwing features: It supprts upgrading the firmware n designated devices, see Supprted devices.

More information

ACR39U-U1. Smart Card Reader. Technical Specifications V1.00. Subject to change without prior notice.

ACR39U-U1. Smart Card Reader. Technical Specifications V1.00. Subject to change without prior notice. ACR39U-U1 Smart Card Reader Technical Specificatins V1.00 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Cmpact Design... 3 1.3. Ease f Integratin...

More information

APG8201 PINhandy 1. Technical Specifications V2.03. Subject to change without prior notice.

APG8201 PINhandy 1. Technical Specifications V2.03. Subject to change without prior notice. APG8201 PINhandy 1 Technical Specificatins V2.03 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. What is APG8201 PINhandy 1?... 3 1.2. Hw des APG8201 PINhandy 1 wrk?... 3 1.3.

More information

softpanel generic installation and operation instructions for nanobox products

softpanel generic installation and operation instructions for nanobox products 1 f 10 System Requirements... 3 Installatin... 3 Java... 3 RxTx Serial Drivers... 3 Granting a user permissin t pen a COM Prt in Mac OS X... 3 USB t Serial Drivers... 4 Mac OS X 10.6 Snw Lepard... 4 Operatin...

More information

3 AXIS STAGE CONTROLLER

3 AXIS STAGE CONTROLLER CORTEX CONTROLLERS 50, St Stephen s Pl. Cambridge CB3 0JE Telephne +44(0)1223 368000 Fax +44(0)1223 462800 http://www.crtexcntrllers.cm sales@crtexcntrllers.cm 3 AXIS STAGE CONTROLLER Instructin Manual

More information

DICOM Correction Proposal

DICOM Correction Proposal DICOM Crrectin Prpsal STATUS Final Text Date f Last Update 2014/06/25 Persn Assigned Submitter Name James Philbin Jnathan Whitby (jwhitby@vitalimages.cm) Submissin Date 2013/10/17 Crrectin Number CP-1351

More information

ACR3801 Smart Card Reader

ACR3801 Smart Card Reader ACR3801 Smart Card Reader Technical Specificatins V2.07 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Ease f Integratin...

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

ECE 545 Project Deliverables

ECE 545 Project Deliverables Tp-level flder: _ Secnd-level flders: 1_assumptins 2_blck_diagrams 3_interface 4_ASM_charts 5_surce_cdes 6_verificatin 7_timing_analysis 8_results 9_benchmarking 10_bug_reprts

More information

TED PRO Third Party Posting API Based on ECC Firmware Revision R400

TED PRO Third Party Posting API Based on ECC Firmware Revision R400 TED PRO Third Party Psting API Based n ECC Firmware Revisin R400 Table f Cntents Intrductin... 1 Activatin... 1 Sample Activatin XML... 2 Sample Activatin Respnse XML... 2 Psting Data... 3 Sample Pst XML...

More information

VTR-4000B Encoder Evaluation Kit

VTR-4000B Encoder Evaluation Kit VTR-4000B Encder Evaluatin Kit Quick-Start Guide System-On-Chip Technlgies JAN 2017 This dcument is intended t be a quick-start guide fr getting familiar with the evaluatin kit envirnment. Fr a thrugh

More information

MediaTek LinkIt Development Platform for RTOS Memory Layout Developer's Guide

MediaTek LinkIt Development Platform for RTOS Memory Layout Developer's Guide MediaTek LinkIt Develpment Platfrm fr RTOS Memry Layut Develper's Guide Versin: 1.1 Release date: 31 March 2016 2015-2016 MediaTek Inc. MediaTek cannt grant yu permissin fr any material that is wned by

More information

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SYSTEM FUNCTIONS... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 ACCESSING THE OASIS SYSTEM... 3 SUBMITTING OASIS DATA FILES... 5 OASIS INITIAL

More information

Operation Manual of EX9132C-RS485. Serial to TCP/IP Converter

Operation Manual of EX9132C-RS485. Serial to TCP/IP Converter Operatin f EX9132C-RS485 Serial t TCP/IP Cnverter Versin 1.0.1 21.09.2015 Table f Cntents 1 Intrductin... 3 1.1 Overview... 3 1.2 Package Checklist... 3 1.3 Blck Diagram... 4 1.4 Prduct Features... 4 1.5

More information

Table of Contents. 1 Introduction Connecting to the API HTTP request syntax API release versions... 4

Table of Contents. 1 Introduction Connecting to the API HTTP request syntax API release versions... 4 API Guide Table f Cntents 1 Intrductin... 3 2 Cnnecting t the API... 4 2.1 HTTP request syntax... 4 2.2 API release versins... 4 3 Direct Answer API... 5 3.1 Required parameters... 5 3.2 Optinal parameters...

More information

OO Shell for Authoring (OOSHA) User Guide

OO Shell for Authoring (OOSHA) User Guide Operatins Orchestratin Sftware Versin: 10.70 Windws and Linux Operating Systems OO Shell fr Authring (OOSHA) User Guide Dcument Release Date: Nvember 2016 Sftware Release Date: Nvember 2016 Legal Ntices

More information

BT111 Development Kit

BT111 Development Kit BT111 Develpment Kit DATA SHEET Wednesday, 07 Nvember 2012 Versin 1.0 Cpyright 2000-2012 Bluegiga Technlgies All rights reserved. Bluegiga Technlgies assumes n respnsibility fr any errrs which may appear

More information

Dynamic Storage (ECS)

Dynamic Storage (ECS) User Guide Dynamic Strage (ECS) Swisscm (Schweiz) AG 1 / 10 Cntent 1 Abut Dynamic Strage... 3 2 Virtual drive, the EMC CIFS-ECS Tl... 4 3 Amazn S3 Brwer... 6 4 Strage Gateway Appliance... 9 5 Amazn S3

More information

ACR100F SIMFlash (CCID)

ACR100F SIMFlash (CCID) ACR100F SIMFlash (CCID) Reference Manual Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. System Blck Diagram... 5 4.0. Pwer Supply... 6 4.1. Status LED...

More information

Model 86A00-2 Home Theater Extender 2 (HTX2)

Model 86A00-2 Home Theater Extender 2 (HTX2) Mdel 86A00-2 Hme Theater Extender 2 (HTX2) DESCRIPTION The Mdel 86A00-2 Hme Theater Extender 2 (HTX2) allws yu t extend yur hme cntrl t the audi/vide equipment in yur hme theater. The HTX2 cmmunicates

More information

REST; WebSocket (RFC 6455)

REST; WebSocket (RFC 6455) REST; WebScket (RFC 6455) Web Oriented Technlgies and Systems Prf. Michele Ruta Master s Degree Curse in Cmputer Engineering - (A.Y. 2016/2017) REST REST = Representatinal State Transfer. Anther architectural

More information

CCNA 1 Chapter v5.1 Answers 100%

CCNA 1 Chapter v5.1 Answers 100% CCNA 1 Chapter 6 2016 v5.1 Answers 100% 1. Which characteristic f the netwrk layer in the OSI mdel allws carrying packets fr multiple types f cmmunicatins amng many hsts? the de-encapsulatin f headers

More information

ACR1251U-A1 USB NFC Reader with SAM

ACR1251U-A1 USB NFC Reader with SAM ACR1251U-A1 USB NFC Reader with SAM Application Programming Interface V1.00 Subject to change without prior notice Table of Contents 1.0. Introduction... 4 2.0. Features... 5 3.0. Architecture... 6 4.0.

More information

Table of Contents. Introduction... 2 Installing the ABBYY FineReader Engine Library... 3

Table of Contents. Introduction... 2 Installing the ABBYY FineReader Engine Library... 3 Table f Cntents Intrductin... 2 Installing the ABBYY FineReader Engine Library... 3 Wrkstatin Requirements... 3 Installing the Library in Autmatic Mde... 5 Installing the Library in Manual Mde... 6 Activating

More information

Remoting SDK Release Notes

Remoting SDK Release Notes Remting SDK Release Ntes Release 2018 R2 Dcument Versin: 1.0 10 August 2018 This dcument is a cmpilatin f sftware and sftware dcumentatin defects, and sftware specificatin clarificatins, updates, and changes.

More information

ACR1251U USB NFC Reader with SAM Slot

ACR1251U USB NFC Reader with SAM Slot ACR1251U USB NFC Reader with SAM Slot Application Programming Interface V1.08 Subject to change without prior notice Revision History Release Date Revision Description Version Number 2013-05-31 Initial

More information

Cntents 1 Intrductin Kit Cntents Requirements Installatin Gesture Sensr Kit Hardware and Jumper Settings De

Cntents 1 Intrductin Kit Cntents Requirements Installatin Gesture Sensr Kit Hardware and Jumper Settings De Thin Film Pyrelectric IR Gesture Sensr Demnstratr Kit Fr lw pwer, high perfrmance gesture cntrl User Guide Versin 1.0 Dcument Revisin 1.00 20 th February 2012 Cntents 1 Intrductin... 3 1.1 Kit Cntents...

More information

BSS Audio Specification SW9016/SW9026 matrix device serial control

BSS Audio Specification SW9016/SW9026 matrix device serial control BSS Audi Specificatin SW9016/SW9026 matrix device serial cntrl 7th Feb 2003 Preliminary infrmatin nly 1.0 Messaging prtcl 1.1 Physical layer 8-bit data with n parity. Baud rate 38400 bps. The fllwing bytes

More information

Application Note. Digi Connect Wi-SP Troubleshooting Guide. Digi Technical Support 10 May 2016

Application Note. Digi Connect Wi-SP Troubleshooting Guide. Digi Technical Support 10 May 2016 Applicatin Nte Digi Cnnect Wi-SP Trubleshting Guide Digi Technical Supprt 10 May 2016 Cntents 1 Intrductin... 3 1.1 Assumptins... 3 1.2 Crrectins... 3 2 Quick Facts... 3 2.1 Cmmn Questins Abut the Cnnect

More information

Paraben s Phone Recovery Stick

Paraben s Phone Recovery Stick Paraben s Phne Recvery Stick v. 3.0 User manual Cntents Abut Phne Recvery Stick... 3 What s new!... 3 System Requirements... 3 Applicatin User Interface... 4 Understanding the User Interface... 4 Main

More information

DS-5 Release Notes. (build 472 dated 2010/04/28 08:33:48 GMT)

DS-5 Release Notes. (build 472 dated 2010/04/28 08:33:48 GMT) DS-5 Release Ntes (build 472 dated 2010/04/28 08:33:48 GMT) Intrductin This is a trial release f Keil Develpment Studi 5 (DS-5). DS-5 cntains tls fr building and debugging C/C++ and ARM assembly language

More information

Firmware Download Anybus X-gateway Modbus-TCP

Firmware Download Anybus X-gateway Modbus-TCP Firmware Dwnlad Anybus X-gateway Mdbus-TCP Firmware Dwnlad Anybus X-gateway Mdbus-TCP HMS Industrial Netwrks AB Page 1 (5) Firmware Dwnlad Anybus X-gateway Mdbus-TCP Histry Revisin Date Descriptin Respnsible

More information

Avocent Universal Management Gateway Appliance Plug-in for the Avocent DSView 4.5 Management Software Release Notes

Avocent Universal Management Gateway Appliance Plug-in for the Avocent DSView 4.5 Management Software Release Notes VERTIV Avcent Universal Management Gateway Appliance Plug-in fr the Avcent DSView 4.5 Management Sftware Release Ntes VERSION 4.2.0.33, SEPTEMBER 14, 2018 Release Ntes Sectin Outline 1 System Requirements

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

To start your custom application development, perform the steps below.

To start your custom application development, perform the steps below. Get Started T start yur custm applicatin develpment, perfrm the steps belw. 1. Sign up fr the kitewrks develper package. Clud Develper Package Develper Package 2. Sign in t kitewrks. Once yu have yur instance

More information

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1 Adding Cntent MyUni... 2 Cntent Areas... 2 Curse Design... 2 Sample Curse Design... 2 Build cntent by creating a flder... 3 Build cntent by creating an item... 4 Cpy r mve cntent in MyUni... 5 Manage files

More information

Fujitsu Microelectronics Europe Application Note MCU-AN E-V11 FR FAMILY 32-BIT MICROCONTROLLER MB91460 RESET APPLICATION NOTE

Fujitsu Microelectronics Europe Application Note MCU-AN E-V11 FR FAMILY 32-BIT MICROCONTROLLER MB91460 RESET APPLICATION NOTE Fujitsu Micrelectrnics Eurpe Applicatin Nte MCU-AN-300052-E-V11 FR FAMILY 32-BIT MICROCONTROLLER MB91460 RESET APPLICATION NOTE Revisin Histry Revisin Histry Date 2007-11-02 V1.0 RSchum First draft 2008-06-24

More information

Connect+/SendPro P Series Networking Technical Specification

Connect+/SendPro P Series Networking Technical Specification Shipping & Mailing Pstage Meters Cnnect+/SendPr P Series Netwrking Technical Specificatin Intrductin 2 Netwrk Requirements 2 Prt/Cmmunicatin Requirements 2 URL Infrmatin 3 FAQs 10 Service Cllateral SV62440

More information

CONTROL-COMMAND. Software Technical Specifications for ThomX Suppliers 1.INTRODUCTION TECHNICAL REQUIREMENTS... 2

CONTROL-COMMAND. Software Technical Specifications for ThomX Suppliers 1.INTRODUCTION TECHNICAL REQUIREMENTS... 2 Réf. ThmX-NT-SI-CC001 Table f Cntents Sftware Technical Specificatins fr ThmX Authr : Philippe Page 1 / 9 1.INTRODUCTION... 2 2.TECHNICAL REQUIREMENTS... 2 3.DOCUMENTATION REQUIREMENTS... 4 4.COMPUTING

More information

Protocol Insight UFS Test Executive Key Features and Benefits Deep packet inspection performed with a unique protocol-aware Rule Checker engine

Protocol Insight UFS Test Executive Key Features and Benefits Deep packet inspection performed with a unique protocol-aware Rule Checker engine Prtcl Insight UFS Test Executive UFS20COMP Test Executive prvides cmplete prtcl debug and analysis f UFS devices, including deep packet inspectin, stress testing, custm test case executin, and CTS and

More information

Ephorus Integration Kit

Ephorus Integration Kit Ephrus Integratin Kit Authr: Rbin Hildebrand Versin: 2.0 Date: May 9, 2007 Histry Versin Authr Cmment v1.1 Remc Verhef Created. v1.2 Rbin Hildebrand Single Sign On (Remved v1.7). v1.3 Rbin Hildebrand Reprting

More information

Click Studios. Passwordstate. RSA SecurID Configuration

Click Studios. Passwordstate. RSA SecurID Configuration Passwrdstate RSA SecurID Cnfiguratin This dcument and the infrmatin cntrlled therein is the prperty f Click Studis. It must nt be reprduced in whle/part, r therwise disclsed, withut prir cnsent in writing

More information

Querying Data with Transact SQL

Querying Data with Transact SQL Querying Data with Transact SQL Curse Cde: 20761 Certificatin Exam: 70-761 Duratin: 5 Days Certificatin Track: MCSA: SQL 2016 Database Develpment Frmat: Classrm Level: 200 Abut this curse: This curse is

More information

IT Essentials (ITE v6.0) Chapter 5 Exam Answers 100% 2016

IT Essentials (ITE v6.0) Chapter 5 Exam Answers 100% 2016 IT Essentials (ITE v6.0) Chapter 5 Exam Answers 100% 2016 1. What are tw functins f an perating system? (Chse tw.) cntrlling hardware access managing applicatins text prcessing flw chart editing prgram

More information

SOLA and Lifecycle Manager Integration Guide

SOLA and Lifecycle Manager Integration Guide SOLA and Lifecycle Manager Integratin Guide SOLA and Lifecycle Manager Integratin Guide Versin: 7.0 July, 2015 Cpyright Cpyright 2015 Akana, Inc. All rights reserved. Trademarks All prduct and cmpany names

More information

Assignment #5: Rootkit. ECE 650 Fall 2018

Assignment #5: Rootkit. ECE 650 Fall 2018 General Instructins Assignment #5: Rtkit ECE 650 Fall 2018 See curse site fr due date Updated 4/10/2018, changes nted in green 1. Yu will wrk individually n this assignment. 2. The cde fr this assignment

More information

ES93x INCA Add-On V1.4.0

ES93x INCA Add-On V1.4.0 ES93x INCA Add-On V1.4.0 Page 1 f 9 Cpyright The data in this dcument may nt be altered r amended withut special ntificatin frm ETAS GmbH. ETAS GmbH undertakes n further bligatin in relatin t this dcument.

More information

ACR122S NFC Reader. Datenblatt / Specifications. Technical Specifications

ACR122S NFC Reader. Datenblatt / Specifications. Technical Specifications Datenblatt / Specifications NFC Reader Technical Specifications Table of Contents 1.0. Introduction 3 2.0. Features 4 3.0. Typical Applications 5 4.0. Technical Specifications 6 Page 2 of 6 1.0. Introduction

More information

Summary. Server environment: Subversion 1.4.6

Summary. Server environment: Subversion 1.4.6 Surce Management Tl Server Envirnment Operatin Summary In the e- gvernment standard framewrk, Subversin, an pen surce, is used as the surce management tl fr develpment envirnment. Subversin (SVN, versin

More information

ABB i-bus KNX. Firmware information. KNX Security Panel, SM. Type: GM/A 8.1

ABB i-bus KNX. Firmware information. KNX Security Panel, SM. Type: GM/A 8.1 Firmware infrmatin Prduct: KNX Security Panel, SM Type: GM/A 8.1 Actual firmware versin 1.6: Applicatin: 000.005.000758 Runtime: 1.1.105.118358 Web interface: 1.3.6 KNX firmware: 1.0c Language package:

More information

KNX integration for Project Designer

KNX integration for Project Designer KNX integratin fr Prject Designer Intrductin With this KNX integratin t Prject Designer it is pssible t cntrl KNX devices like n/ff, dimming, blinds, scene cntrl etc. This implementatin is intended fr

More information

Export and Import Course Package

Export and Import Course Package Exprt and Imprt Curse Package Exprt Package The Exprt Curse feature creates a package f the Curse cntent that can later be imprted and used t teach anther Curse with the same cntent. It is imprtant t nte

More information

USO RESTRITO. SNMP Agent. Functional Description and Specifications Version: 1.1 March 20, 2015

USO RESTRITO. SNMP Agent. Functional Description and Specifications Version: 1.1 March 20, 2015 Functinal Descriptin and Specificatins Versin: 1.1 March 20, 2015 SNMP Agent Simple Netwrk Management Prtcl Optin S fr IE and PM Mdules Supplement t Functinal Descriptin and Specificatins f RUB Ethernet

More information

Avigilon Control Center Server User Guide. Version 6.4

Avigilon Control Center Server User Guide. Version 6.4 Avigiln Cntrl Center Server User Guide Versin 6.4 2006-2017, Avigiln Crpratin. All rights reserved. AVIGILON, the AVIGILON lg, AVIGILON CONTROL CENTER, ACC, and TRUSTED SECURITY SOLUTIONS.AVIGILON, the

More information