Electronic Components Datasheet Search
  English  ▼
ALLDATASHEET.COM

X  

SRT512 Datasheet(PDF) 42 Page - STMicroelectronics

Part # SRT512
Description  13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
Download  46 Pages
Scroll/Zoom Zoom In 100%  Zoom Out
Manufacturer  STMICROELECTRONICS [STMicroelectronics]
Direct Link  http://www.st.com
Logo STMICROELECTRONICS - STMicroelectronics

SRT512 Datasheet(HTML) 42 Page - STMicroelectronics

Back Button SRT512_12 Datasheet HTML 38Page - STMicroelectronics SRT512_12 Datasheet HTML 39Page - STMicroelectronics SRT512_12 Datasheet HTML 40Page - STMicroelectronics SRT512_12 Datasheet HTML 41Page - STMicroelectronics SRT512_12 Datasheet HTML 42Page - STMicroelectronics SRT512_12 Datasheet HTML 43Page - STMicroelectronics SRT512_12 Datasheet HTML 44Page - STMicroelectronics SRT512_12 Datasheet HTML 45Page - STMicroelectronics SRT512_12 Datasheet HTML 46Page - STMicroelectronics  
Zoom Inzoom in Zoom Outzoom out
 42 / 46 page
background image
ISO14443 type B CRC calculation
SRT512
42/46
Doc ID 13277 Rev 6
Appendix A
ISO14443 type B CRC calculation
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define BYTE unsigned char
#define USHORT unsigned short
unsigned short UpdateCrc(BYTE ch, USHORT *lpwCrc)
{
ch = (ch^(BYTE)((*lpwCrc) & 0x00FF));
ch = (ch^(ch<<4));
*lpwCrc = (*lpwCrc >> 8)^((USHORT)ch <<
8)^((USHORT)ch<<3)^((USHORT)ch>>4);
return(*lpwCrc);
}
void ComputeCrc(char *Data, int Length, BYTE *TransmitFirst, BYTE
*TransmitSecond)
{
BYTE chBlock; USHORTt wCrc;
wCrc = 0xFFFF; // ISO 3309
do
{
chBlock = *Data++;
UpdateCrc(chBlock, &wCrc);
} while (--Length);
wCrc = ~wCrc; // ISO 3309
*TransmitFirst = (BYTE) (wCrc & 0xFF);
*TransmitSecond = (BYTE) ((wCrc >> 8) & 0xFF);
return;
}
int main(void)
{
BYTE BuffCRC_B[10] = {0x0A, 0x12, 0x34, 0x56}, First, Second, i;
printf("Crc-16 G(x) = x^16 + x^12 + x^5 + 1”);
printf("CRC_B of [ ");
for(i=0; i<4; i++)
printf("%02X ",BuffCRC_B[i]);
ComputeCrc(BuffCRC_B, 4, &First, &Second);
printf("] Transmitted: %02X then %02X.”, First, Second);
return(0);


Similar Part No. - SRT512_12

ManufacturerPart #DatasheetDescription
logo
STMicroelectronics
SRT512-SBN18/1G2 STMICROELECTRONICS-SRT512-SBN18/1G2 Datasheet
478Kb / 46P
   13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
SRT512-SBN18/XXX STMICROELECTRONICS-SRT512-SBN18/XXX Datasheet
478Kb / 46P
   13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
SRT512-SBN181GE STMICROELECTRONICS-SRT512-SBN181GE Datasheet
387Kb / 46P
   13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
SRT512-W4/1G2 STMICROELECTRONICS-SRT512-W4/1G2 Datasheet
478Kb / 46P
   13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
SRT512-W4/XXX STMICROELECTRONICS-SRT512-W4/XXX Datasheet
478Kb / 46P
   13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
More results

Similar Description - SRT512_12

ManufacturerPart #DatasheetDescription
logo
STMicroelectronics
SRI512 STMICROELECTRONICS-SRI512_08 Datasheet
396Kb / 47P
   13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
SRT512 STMICROELECTRONICS-SRT512_08 Datasheet
387Kb / 46P
   13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
SRI512 STMICROELECTRONICS-SRI512_11 Datasheet
380Kb / 47P
   13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
SRT512 STMICROELECTRONICS-SRT512_09 Datasheet
478Kb / 46P
   13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
ST25TB512-AT STMICROELECTRONICS-ST25TB512-AT Datasheet
817Kb / 44P
   13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
Rev 8 - February 2023
SRT512 STMICROELECTRONICS-SRT512 Datasheet
475Kb / 49P
   13.56 MHz short-range Contactless memory chip with 512-bit EEPROM and anticollision functions
ST25TB512-AC STMICROELECTRONICS-ST25TB512-AC Datasheet
609Kb / 46P
   13.56 MHz short-range contactless memory chip with 512-bit EEPROM and anticollision functions
Rev 8 - February 2023
ST25TB04K STMICROELECTRONICS-ST25TB04K Datasheet
860Kb / 47P
   13.56 MHz short-range contactless memory chip with 4096-bit EEPROM and anticollision functions
Rev 7 - February 2023
ST25TB02K STMICROELECTRONICS-ST25TB02K Datasheet
827Kb / 47P
   13.56 MHz short-range contactless memory chip with 2048-bit EEPROM and anticollision functions
Rev 7 - February 2023
SRI2K STMICROELECTRONICS-SRI2K Datasheet
816Kb / 45P
   13.56 MHz short-range contactless memory chip with 2048-bit EEPROM and anticollision functions
More results


Html Pages

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46


Datasheet Download

Go To PDF Page


Link URL




Privacy Policy
ALLDATASHEET.COM
Does ALLDATASHEET help your business so far?  [ DONATE ] 

About Alldatasheet   |   Advertisement   |   Datasheet Upload   |   Contact us   |   Privacy Policy   |   Link Exchange   |   Manufacturer List
All Rights Reserved©Alldatasheet.com


Mirror Sites
English : Alldatasheet.com  |   English : Alldatasheet.net  |   Chinese : Alldatasheetcn.com  |   German : Alldatasheetde.com  |   Japanese : Alldatasheet.jp
Russian : Alldatasheetru.com  |   Korean : Alldatasheet.co.kr  |   Spanish : Alldatasheet.es  |   French : Alldatasheet.fr  |   Italian : Alldatasheetit.com
Portuguese : Alldatasheetpt.com  |   Polish : Alldatasheet.pl  |   Vietnamese : Alldatasheet.vn
Indian : Alldatasheet.in  |   Mexican : Alldatasheet.com.mx  |   British : Alldatasheet.co.uk  |   New Zealand : Alldatasheet.co.nz
Family Site : ic2ic.com  |   icmetro.com