MF522.c 40.4 KB
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
#include "MF522.h"
#include "HW_MCUIO.h"//#include "stm32f4xx_hal.h"
#include "platform.h"
#include "platform_interface.h"
#include "function.h"


#if (NFC==1) //#if defined(NFC)&&(NFC==1)
/*
2020.03,由于和Ethernet共用spi,Ethernet对速度要求高,所以切换到系统spi3
2020.05,修改硬件V03板,和W5500完全独立出来; RC522用模拟spi。
*/
//#ifdef 		STM32F405xx	//为F401增加
#define 	SYS_SPI3
extern 		SPI_HandleTypeDef hspi3;
//#endif


#define 	MF_DELAY		2//3//5
#define 	MAXRLEN 		18


/*
This i2c driver from stm32F1xx; we should add delay when operation io, 
because the stm32F4 much fast (The main frequency of stm32F4xx is 168M) !!
F4系列速度太快,需要加延时,读写才正常!!!*/
static void mDelay(unsigned int nCount)
{
    for (; nCount != 0; nCount--);
}



	#define 	MF522_RST_PORT	GPIOA
	#define 	MF522_RST_PIN		GPIO_PIN_15	
	#define 	MF522_CS_PORT		GPIOE
	#define 	MF522_CS_PIN		GPIO_PIN_6	
	
#define SET_MF522_RST   {HAL_GPIO_WritePin(MF522_RST_PORT,MF522_RST_PIN,GPIO_PIN_SET);mDelay(MF_DELAY);}
#define RESET_MF522_RST {HAL_GPIO_WritePin(MF522_RST_PORT,MF522_RST_PIN,GPIO_PIN_RESET);mDelay(MF_DELAY);}
#define SET_MF522_NS  	{HAL_GPIO_WritePin(MF522_CS_PORT,MF522_CS_PIN,GPIO_PIN_SET);mDelay(MF_DELAY);}
#define RESET_MF522_NS  {HAL_GPIO_WritePin(MF522_CS_PORT,MF522_CS_PIN,GPIO_PIN_RESET);mDelay(MF_DELAY);}

//#ifndef SYS_SPI3		
	#define 	MF522_SCK_PORT	GPIOC
	#define 	MF522_SCK_PIN		GPIO_PIN_15//GPIO_PIN_10			
	#define 	MF522_SI_PORT		GPIOC
	#define 	MF522_SI_PIN		GPIO_PIN_14//GPIO_PIN_12		
	#define 	MF522_MI_PORT		GPIOE//GPIOC
	#define 	MF522_MI_PIN		GPIO_PIN_12//GPIO_PIN_11	

#define SET_MF522_SCK   {HAL_GPIO_WritePin(MF522_SCK_PORT,MF522_SCK_PIN,GPIO_PIN_SET);mDelay(MF_DELAY);}
#define RESET_MF522_SCK {HAL_GPIO_WritePin(MF522_SCK_PORT,MF522_SCK_PIN,GPIO_PIN_RESET);mDelay(MF_DELAY);}

#define SET_MF522_SI		{HAL_GPIO_WritePin(MF522_SI_PORT,MF522_SI_PIN,GPIO_PIN_SET);mDelay(MF_DELAY);}
#define RESET_MF522_SI  {HAL_GPIO_WritePin(MF522_SI_PORT,MF522_SI_PIN,GPIO_PIN_RESET);mDelay(MF_DELAY);}

#define READ_MISO				HAL_GPIO_ReadPin(MF522_MI_PORT,MF522_MI_PIN);
//#endif





//-----------------------------------------------------------------
static void SPI_InitIO(void)
{

		GPIO_InitTypeDef GPIO_InitStruct = {0};

	
		GPIO_InitStruct.Pin = MF522_RST_PIN;
		GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
		GPIO_InitStruct.Pull = GPIO_NOPULL;
		GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_MEDIUM;//GPIO_SPEED_FREQ_HIGH;
		HAL_GPIO_Init(MF522_RST_PORT, &GPIO_InitStruct);
	 
		GPIO_InitStruct.Pin = MF522_CS_PIN;
		GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
		GPIO_InitStruct.Pull = GPIO_NOPULL;
		GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH ;//GPIO_SPEED_FREQ_HIGH;//GPIO_SPEED_FREQ_MEDIUM;//
		HAL_GPIO_Init(MF522_CS_PORT, &GPIO_InitStruct); 


if( !get_hard_flag()){	
//#ifndef SYS_SPI3		
		GPIO_InitStruct.Pin = MF522_SCK_PIN;
		GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
		GPIO_InitStruct.Pull = GPIO_NOPULL;
		GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
		HAL_GPIO_Init(MF522_SCK_PORT, &GPIO_InitStruct);
	 
		GPIO_InitStruct.Pin = MF522_SI_PIN;
		GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
		GPIO_InitStruct.Pull = GPIO_NOPULL;
		GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
		HAL_GPIO_Init(MF522_SI_PORT, &GPIO_InitStruct); 		
		
		//MISO
		GPIO_InitStruct.Pin = MF522_MI_PIN;
		GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
		GPIO_InitStruct.Pull = GPIO_PULLUP;//
		GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
		HAL_GPIO_Init(MF522_MI_PORT, &GPIO_InitStruct);
}

	  SET_MF522_RST    //*MF522_RST=1;
    SET_MF522_NS //*MF522_NS =1;
//#endif 


}




/////////////////////////////////////////////////////////////////////
//功    能:写RC632寄存器
//参数说明:Address[IN]:寄存器地址
//          value[IN]:写入的值
/////////////////////////////////////////////////////////////////////
static void WriteRawRC(unsigned char Address, unsigned char value)
{
	//#ifdef SYS_SPI3
	if( get_hard_flag() ){
    unsigned char ucAddr= ((Address << 1) & 0x7E);
		unsigned char tmp[2];
		tmp[0] =ucAddr;
		tmp[1] =value;	
		RESET_MF522_NS //*MF522_NS = 0;
		HAL_SPI_Transmit(&hspi3,tmp,2,100);	
		SET_MF522_NS      //*MF522_NS = 1;	
	//#else	
	}
	else{
    unsigned char i, ucAddr;

    RESET_MF522_SCK    //*MF522_SCK = 0;
		RESET_MF522_NS //*MF522_NS = 0;
		ucAddr = ((Address << 1) & 0x7E);

    for (i = 8; i > 0; i--){
        if ((ucAddr & 0x80) == 0x80)
            SET_MF522_SI
        else
            RESET_MF522_SI

        SET_MF522_SCK //*MF522_SCK = 1;
        ucAddr <<= 1;
        RESET_MF522_SCK //*MF522_SCK = 0;
    }

    for (i = 8; i > 0; i--){
        if ((value & 0x80) == 0x80)
            SET_MF522_SI
        else
            RESET_MF522_SI

        SET_MF522_SCK //*MF522_SCK = 1;
        value <<= 1;
        RESET_MF522_SCK //*MF522_SCK = 0;
    }

    SET_MF522_NS      //*MF522_NS = 1;
    SET_MF522_SCK //*MF522_SCK = 1;
	}
//#endif		
		
}

/////////////////////////////////////////////////////////////////////
//功    能:读RC632寄存器
//参数说明:Address[IN]:寄存器地址
//返    回:读出的值
/////////////////////////////////////////////////////////////////////
static unsigned char ReadRawRC(unsigned char Address)
{
	//#ifdef SYS_SPI3
	if( get_hard_flag()){
    unsigned char value[2],ucAddr = ((Address << 1) & 0x7E) | 0x80; 
	
		RESET_MF522_NS //*MF522_NS = 0;
		HAL_SPI_TransmitReceive(&hspi3,&ucAddr,value,2,100);
		SET_MF522_NS      //*MF522_NS = 1;
	
		return value[1];
	//#else
	}
	else{
    unsigned char i, ucAddr, ucResult = 0;

    RESET_MF522_SCK; //*MF522_SCK = 0;
    RESET_MF522_NS;  //*MF522_NS = 0;

    ucAddr = ((Address << 1) & 0x7E) | 0x80;

    for (i = 8; i > 0; i--){
        if ((ucAddr & 0x80) == 0x80)
            SET_MF522_SI
        else
            RESET_MF522_SI

        SET_MF522_SCK //*MF522_SCK = 1;
        ucAddr <<= 1;
        RESET_MF522_SCK //*MF522_SCK = 0;
    }

    for (i = 8; i > 0; i--){
        SET_MF522_SCK //*MF522_SCK = 1;
        ucResult <<= 1;
				ucResult |=HAL_GPIO_ReadPin(MF522_MI_PORT,MF522_MI_PIN);
        RESET_MF522_SCK //*MF522_SCK = 0;
    }

    SET_MF522_NS;  //*MF522_NS = 1;
    SET_MF522_SCK; //*MF522_SCK = 1;
    return ucResult;
	}
	//#endif
}

/////////////////////////////////////////////////////////////////////
//功    能:置RC522寄存器位
//参数说明:reg[IN]:寄存器地址
//          mask[IN]:置位值
/////////////////////////////////////////////////////////////////////
static void SetBitMask(unsigned char reg, unsigned char mask)
{
    char tmp = 0x0;
    tmp = ReadRawRC(reg);
    WriteRawRC(reg, tmp | mask); // set bit mask
}

/////////////////////////////////////////////////////////////////////
//功    能:清RC522寄存器位
//参数说明:reg[IN]:寄存器地址
//          mask[IN]:清位值
/////////////////////////////////////////////////////////////////////
static void ClearBitMask(unsigned char reg, unsigned char mask)
{
    char tmp = 0x0;
    tmp = ReadRawRC(reg);
    WriteRawRC(reg, tmp & ~mask); // clear bit mask
}

/////////////////////////////////////////////////////////////////////
//用MF522计算CRC16函数
/////////////////////////////////////////////////////////////////////
static void CalulateCRC(unsigned char *pIndata, unsigned char len, unsigned char *pOutData)
{
    unsigned char i, n;
    ClearBitMask(DivIrqReg, 0x04);
    WriteRawRC(CommandReg, PCD_IDLE);
    SetBitMask(FIFOLevelReg, 0x80);
    for (i = 0; i < len; i++)
    {
        WriteRawRC(FIFODataReg, *(pIndata + i));
    }
    WriteRawRC(CommandReg, PCD_CALCCRC);
		
    i = 0xFF;	
    do
    {
        n = ReadRawRC(DivIrqReg);
        i--;
    } while ((i != 0) && !(n & 0x04));
    pOutData[0] = ReadRawRC(CRCResultRegL);
    pOutData[1] = ReadRawRC(CRCResultRegM);
}

/////////////////////////////////////////////////////////////////////
//开启天线
//每次启动或关闭天险发射之间应至少有1ms的间隔
/////////////////////////////////////////////////////////////////////
static void PcdAntennaOn(void)
{
    unsigned char i;
    i = ReadRawRC(TxControlReg);

    if (!(i & 0x03))
    {
        SetBitMask(TxControlReg, 0x03);
    }
}

/////////////////////////////////////////////////////////////////////
//关闭天线
/////////////////////////////////////////////////////////////////////
static void PcdAntennaOff(void)
{
    ClearBitMask(TxControlReg, 0x03);
}


//----------------------------------------
static char PcdReset(void)
{
//    SET_MF522_RST      //*MF522_RST=1;
//		mDelay(50000); 
    RESET_MF522_RST    //*MF522_RST=0;
    mDelay(50000); 
    SET_MF522_RST      //*MF522_RST=1;
    mDelay(50000); 
    WriteRawRC(CommandReg, PCD_RESETPHASE);

    mDelay(500); //_nop_();

    WriteRawRC(ModeReg, 0x3D); //和Mifare卡通讯,CRC初始值0x6363
    WriteRawRC(TReloadRegL, 30);
    WriteRawRC(TReloadRegH, 0);
    WriteRawRC(TModeReg, 0x8D);
    WriteRawRC(TPrescalerReg, 0x3E);

    WriteRawRC(TxAutoReg, 0x40); //必须要   ,设置逻辑1,强制100%ASK调制 	  Gavin

    return MI_OK;
}

/////////////////////////////////////////////////////////////////////
//功    能:通过RC522和ISO14443卡通讯
//参数说明:Command[IN]:RC522命令字
//          pInData[IN]:通过RC522发送到卡片的数据
//          InLenByte[IN]:发送数据的字节长度
//          pOutData[OUT]:接收到的卡片返回数据
//          *pOutLenBit[OUT]:返回数据的位长度
/////////////////////////////////////////////////////////////////////
//char PcdComMF522(unsigned char Command,
static int PcdComMF522(unsigned char Command,
                       unsigned char *pInData,
                       unsigned char InLenByte,
                       unsigned char *pOutData,
                       unsigned int *pOutLenBit)
{
    //char status = MI_ERR;
    int status = MI_ERR;

    unsigned char irqEn = 0x00;
    unsigned char waitFor = 0x00; //Mask by Gavin
    unsigned char lastBits;
    unsigned char n;
    unsigned int i;

    switch (Command)
    {
    case PCD_AUTHENT:
        irqEn = 0x12;
        waitFor = 0x10;
        break;
    case PCD_TRANSCEIVE:
        irqEn = 0x77;
        waitFor = 0x30; //Mask by Gavin
        break;
    default:
        break;
    }

    WriteRawRC(ComIEnReg, irqEn | 0x80); //reg0x02
    ClearBitMask(ComIrqReg, 0x80);       //reg0x04   ==0
    WriteRawRC(CommandReg, PCD_IDLE);    //reg0x01
    SetBitMask(FIFOLevelReg, 0x80);      //reg0x0A

    for (i = 0; i < InLenByte; i++)
    {
        WriteRawRC(FIFODataReg, pInData[i]);
    } //reg0x09
    WriteRawRC(CommandReg, Command);

    if (Command == PCD_TRANSCEIVE)
    {
        SetBitMask(BitFramingReg, 0x80);
    } //reg0x0D

    //      i = 600;//根据时钟频率调整,操作M1卡最大等待时间25ms
    i = 3600;
		#ifdef	_NEW_NFC_APP
    i=1000;//800;		//420是临界值
		#endif
    do
    {
        n = ReadRawRC(ComIrqReg); //reg0x04
        i--;
    } while ((i != 0) && !(n & 0x01) && !(n & waitFor));
		
		

    ClearBitMask(BitFramingReg, 0x80);

    if (i != 0)
    {
        if (!(ReadRawRC(ErrorReg) & 0x1B))
        {
            status = MI_OK;
            if (n & irqEn & 0x01) //timer IrQ==1 设定时间里没有找到?
            {
                status = MI_NOTAGERR;
            }

            if (Command == PCD_TRANSCEIVE)
            {
                n = ReadRawRC(FIFOLevelReg);
                lastBits = ReadRawRC(ControlReg) & 0x07;
                if (lastBits)
                {
                    *pOutLenBit = (n - 1) * 8 + lastBits;
                }
                else
                {
                    *pOutLenBit = n * 8;
                }
                if (n == 0)
                {
                    n = 1;
                }
                if (n > MAXRLEN)
                {
                    n = MAXRLEN;
                }
                for (i = 0; i < n; i++)
                {
                    pOutData[i] = ReadRawRC(FIFODataReg);
                }
            }
        }
        else
        {
            status = MI_ERR;
        }
    }

    SetBitMask(ControlReg, 0x80); // stop timer now
    WriteRawRC(CommandReg, PCD_IDLE);
    return status;
}

/////////////////////////////////////////////////////////////////////
//功    能:寻卡
//参数说明: req_code[IN]:寻卡方式
//                0x52 = 寻感应区内所有符合14443A标准的卡
//                0x26 = 寻未进入休眠状态的卡
//          pTagType[OUT]:卡片类型代码
//                0x4400 = Mifare_UltraLight
//                0x0400 = Mifare_One(S50)
//                0x0200 = Mifare_One(S70)
//                0x0800 = Mifare_Pro(X)
//                0x4403 = Mifare_DESFire
//返    回: 成功返回MI_OK
/////////////////////////////////////////////////////////////////////
//char PcdRequest(unsigned char req_code,unsigned char *pTagType)
#ifdef _NEW_NFC_APP
/* 2020.12.04 Gavin He
* 调试发现,扫描函数PcdRequest 会消耗至少3ms的时间,这样拖慢整个主循环;
* 慢的原因: 调用的PcdComMF522函数中有死循环等待!
* 解决办法:将函数拆分成多个状态机,在主循环里多次访问完成;
*/
static int PcdRequest(unsigned char req_code, unsigned char *pTagType)
{
		//PcdRequest 内部变量,
    int status = 1;//MI_ERR;
    static unsigned int unLen = 0;
    static unsigned char ucComMF522Buf[MAXRLEN];	
		//PcdComMF522 内部变量
    static unsigned char irqEn = 0x00;
    static unsigned char waitFor = 0x00; //Mask by Gavin
    unsigned char lastBits;
    static unsigned char n;
    static unsigned int i;
		/*static int PcdComMF522(unsigned char Command,
													 unsigned char *pInData,
													 unsigned char InLenByte,
													 unsigned char *pOutData,
													 unsigned int *pOutLenBit)*/
		//PcdComMF522 function input
		static unsigned char Command;
		static unsigned char *pInData;
		static unsigned char InLenByte;
		static unsigned char *pOutData;
		static unsigned int *pOutLenBit;		
		
		static unsigned char find_step=0;	//add by Gavin		
	
		switch(find_step){
			
			case 0:			
			//----- PcdRequest part 1 ---------------------
				ClearBitMask(Status2Reg, 0x08);
				WriteRawRC(BitFramingReg, 0x07);
				SetBitMask(TxControlReg, 0x03);
				ucComMF522Buf[0] = req_code;
			
			//------- call function: PcdComMF522 Part1 start ----------
				//status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 1, ucComMF522Buf, &unLen);
					Command = PCD_TRANSCEIVE;
					pInData = ucComMF522Buf;
					InLenByte =1;
					pOutData = ucComMF522Buf;
					unLen = 0;
					pOutLenBit =&unLen;
				
					switch (Command)
					{
					case PCD_AUTHENT:
							irqEn = 0x12;
							waitFor = 0x10;
							break;
					case PCD_TRANSCEIVE:
							irqEn = 0x77;
							waitFor = 0x30; //Mask by Gavin
							break;
					default:
							break;
					}

					WriteRawRC(ComIEnReg, irqEn | 0x80); //reg0x02
					ClearBitMask(ComIrqReg, 0x80);       //reg0x04   ==0
					WriteRawRC(CommandReg, PCD_IDLE);    //reg0x01
					SetBitMask(FIFOLevelReg, 0x80);      //reg0x0A

					for (i = 0; i < InLenByte; i++)
					{
							WriteRawRC(FIFODataReg, pInData[i]);
					} //reg0x09
					WriteRawRC(CommandReg, Command);

					if (Command == PCD_TRANSCEIVE)
					{
							SetBitMask(BitFramingReg, 0x80);
					} //reg0x0D
				//-------- call function: PcdComMF522 Part1 end ---------------------	
				
				i=200; //set waitfor timer
				find_step =1;	
				//break;
							
			case 1:
				//-------- call function: PcdComMF522 Part2  ---------------------	
				/*
				i = 3600;
				i=430;		//420是临界值
				do
				{
						n = ReadRawRC(ComIrqReg); //reg0x04
						i--;
				} while ((i != 0) && !(n & 0x01) && !(n & waitFor));
				*/
//			#define 	W_TIMER	255
				i--;		
				n = ReadRawRC(ComIrqReg); //reg0x04
				if ( (i != 0) &&!(n & 0x01) && !(n & waitFor)){
					//None find
					status = 1;
				}					
				else{
					//find;
					status = 1;
					find_step =2	;				
				}
				
				//--------------------------------------------------------------------------------
				break;	
			
			case 2:
				//-------- call function: PcdComMF522 Part3  ---------------------
				ClearBitMask(BitFramingReg, 0x80);

				if (i != 0) 
				{
						if (!(ReadRawRC(ErrorReg) & 0x1B))
						{
								status = MI_OK;
								if (n & irqEn & 0x01) //timer IrQ==1 设定时间里没有找到?
								{
										status = MI_NOTAGERR;
								}

								if (Command == PCD_TRANSCEIVE)
								{
										n = ReadRawRC(FIFOLevelReg);
										lastBits = ReadRawRC(ControlReg) & 0x07;
										if (lastBits)
										{
												*pOutLenBit = (n - 1) * 8 + lastBits;
										}
										else
										{
												*pOutLenBit = n * 8;
										}
										if (n == 0)
										{
												n = 1;
										}
										if (n > MAXRLEN)
										{
												n = MAXRLEN;
										}
										for (i = 0; i < n; i++)
										{
												pOutData[i] = ReadRawRC(FIFODataReg);
										}
								}
						}
						else
						{
								status = MI_ERR;
						}
				}
				SetBitMask(ControlReg, 0x80); // stop timer now
				WriteRawRC(CommandReg, PCD_IDLE);	
				//-------- call function: PcdComMF522 Part3  end ---------------------
				
				//----- PcdRequest part 2 ---------------------
				if ((status == MI_OK) && (unLen == 0x10))
				{
						*pTagType = ucComMF522Buf[0];
						*(pTagType + 1) = ucComMF522Buf[1];
				}
				else
				{
						status = MI_ERR;
				}

				find_step =0;			
				break;			
			
			default:
				status = MI_ERR;
				break;
		}//sw
		
    return status;
}

#else
static int PcdRequest(unsigned char req_code, unsigned char *pTagType)
{
    int status; //
    //char status;
    unsigned int unLen = 0;
    unsigned char ucComMF522Buf[MAXRLEN];

    ClearBitMask(Status2Reg, 0x08);
    WriteRawRC(BitFramingReg, 0x07);
    SetBitMask(TxControlReg, 0x03);

    ucComMF522Buf[0] = req_code;

    status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 1, ucComMF522Buf, &unLen);

    if ((status == MI_OK) && (unLen == 0x10))
    {
        *pTagType = ucComMF522Buf[0];
        *(pTagType + 1) = ucComMF522Buf[1];
    }
    else
    {
        status = MI_ERR;
    }

    return status;
}
#endif 



#if 0
/////////////////////////////////////////////////////////////////////
//功    能:防冲撞
//参数说明: pSnr[OUT]:卡片序列号,4字节
//返    回: 成功返回MI_OK
/////////////////////////////////////////////////////////////////////  
//char PcdAnticoll(unsigned char *pSnr)
static int PcdAnticoll(unsigned char *pSnr)
{
    //char status;
	int status;
    unsigned char i,snr_check=0;
    unsigned int  unLen;
    unsigned char ucComMF522Buf[MAXRLEN]; 
    

    ClearBitMask(Status2Reg,0x08);
    WriteRawRC(BitFramingReg,0x00);
    ClearBitMask(CollReg,0x80);
 
    ucComMF522Buf[0] = PICC_ANTICOLL1;
    ucComMF522Buf[1] = 0x20;

    status = PcdComMF522(PCD_TRANSCEIVE,ucComMF522Buf,2,ucComMF522Buf,&unLen);

    if (status == MI_OK)
    {
    	 for (i=0; i<4; i++)
         {   
             *(pSnr+i)  = ucComMF522Buf[i];
             snr_check ^= ucComMF522Buf[i];
         }
         if (snr_check != ucComMF522Buf[i])
         {   status = MI_ERR;    }
    }
    
    SetBitMask(CollReg,0x80);
    return status;
}


/////////////////////////////////////////////////////////////////////
//功    能:选定卡片
//参数说明: pSnr[IN]:卡片序列号,4字节
//返    回: 成功返回MI_OK
/////////////////////////////////////////////////////////////////////
static int PcdSelect(unsigned char *pSnr)
{
    int status;
    unsigned char i;
    unsigned int  unLen;
    unsigned char ucComMF522Buf[MAXRLEN]; 
    
    ucComMF522Buf[0] = PICC_ANTICOLL1;
    ucComMF522Buf[1] = 0x70;
    ucComMF522Buf[6] = 0;
    for (i=0; i<4; i++)
    {
    	ucComMF522Buf[i+2] = *(pSnr+i);
    	ucComMF522Buf[6]  ^= *(pSnr+i);
    }
    CalulateCRC(ucComMF522Buf,7,&ucComMF522Buf[7]);
  
    ClearBitMask(Status2Reg,0x08);

    status = PcdComMF522(PCD_TRANSCEIVE,ucComMF522Buf,9,ucComMF522Buf,&unLen);
    
    if ((status == MI_OK) && (unLen == 0x18))
    {   status = MI_OK;  }
    else
    {   status = MI_ERR;    }

    return status;
}
#else //将防碰撞级别由内置改为作为形参出入。YSY 2019.10.14
/////////////////////////////////////////////////////////////////////
//功    能:防冲撞
//参数说明: pSnr[OUT]:卡片序列号,4字节
//         sec_code[IN]:防碰撞级别
//返    回: 成功返回MI_OK
/////////////////////////////////////////////////////////////////////
//char PcdAnticoll(unsigned char *pSnr)
static int PcdAnticoll(unsigned char sec_code, unsigned char *pSnr)
{
    //char status;
    int status;
    unsigned char i, snr_check = 0;
    unsigned int unLen;
    unsigned char ucComMF522Buf[MAXRLEN];

    ClearBitMask(Status2Reg, 0x08);
    WriteRawRC(BitFramingReg, 0x00);
    ClearBitMask(CollReg, 0x80);

    ucComMF522Buf[0] = sec_code;
    ucComMF522Buf[1] = 0x20;

    status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 2, ucComMF522Buf, &unLen);

    if (status == MI_OK)
    {
        for (i = 0; i < 4; i++)
        {
            *(pSnr + i) = ucComMF522Buf[i];
            snr_check ^= ucComMF522Buf[i];
        }
        if (snr_check != ucComMF522Buf[i])
        {
            status = MI_ERR;
        }
    }

    SetBitMask(CollReg, 0x80);
    return status;
}

/////////////////////////////////////////////////////////////////////
//功    能:选定卡片
//参数说明: pSnr[IN]:卡片序列号,4字节
//         sec_code[IN]:防碰撞级别
//返    回: 成功返回MI_OK
/////////////////////////////////////////////////////////////////////
static int PcdSelect(unsigned char sec_code, unsigned char *pSnr)
{
    int status;
    unsigned char i;
    unsigned int unLen;
    unsigned char ucComMF522Buf[MAXRLEN];

    ucComMF522Buf[0] = sec_code;
    ucComMF522Buf[1] = 0x70;
    ucComMF522Buf[6] = 0;
    for (i = 0; i < 4; i++)
    {
        ucComMF522Buf[i + 2] = *(pSnr + i);
        ucComMF522Buf[6] ^= *(pSnr + i);
    }
    CalulateCRC(ucComMF522Buf, 7, &ucComMF522Buf[7]);

    ClearBitMask(Status2Reg, 0x08);

    status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 9, ucComMF522Buf, &unLen);

    if ((status == MI_OK) && (unLen == 0x18))
    {
        status = MI_OK;
    }
    else
    {
        status = MI_ERR;
    }

    return status;
}
#endif



/////////////////////////////////////////////////////////////////////
//功    能:验证卡片密码
//参数说明: auth_mode[IN]: 密码验证模式
//                 0x60 = 验证A密钥
//                 0x61 = 验证B密钥
//          addr[IN]:块地址
//          pKey[IN]:密码
//          pSnr[IN]:卡片序列号,4字节
//返    回: 成功返回MI_OK
/////////////////////////////////////////////////////////////////////
//static int PcdAuthState(unsigned char auth_mode, unsigned char addr, unsigned char *pKey, unsigned char *pSnr)
//{
//    int status;
//    unsigned int unLen;
//    unsigned char i, ucComMF522Buf[MAXRLEN];

//    ucComMF522Buf[0] = auth_mode;
//    ucComMF522Buf[1] = addr;
//    for (i = 0; i < 6; i++)
//    {
//        ucComMF522Buf[i + 2] = *(pKey + i);
//    }
//    for (i=0; i<6; i++)
//    //for (i = 0; i < 4; i++)
//    {
//        ucComMF522Buf[i + 8] = *(pSnr + i);
//    }
//    //   memcpy(&ucComMF522Buf[2], pKey, 6);
//    //   memcpy(&ucComMF522Buf[8], pSnr, 4);

//    status = PcdComMF522(PCD_AUTHENT, ucComMF522Buf, 12, ucComMF522Buf, &unLen);
//    if ((status != MI_OK) || (!(ReadRawRC(Status2Reg) & 0x08)))
//    {
//        status = MI_ERR;
//    }

//    return status;
//}


/////////////////////////////////////////////////////////////////////
//功    能:写数据到M1卡一块
//参数说明: addr[IN]:块地址
//          pData[IN]:写入的数据,16字节
//返    回: 成功返回MI_OK
/////////////////////////////////////////////////////////////////////
static int PcdWrite(unsigned char addr, unsigned char *pData)
{
    int status;
    unsigned int unLen;
    unsigned char i, ucComMF522Buf[MAXRLEN];

    ucComMF522Buf[0] = PICC_WRITE;
    ucComMF522Buf[1] = addr;
    CalulateCRC(ucComMF522Buf, 2, &ucComMF522Buf[2]);

    status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 4, ucComMF522Buf, &unLen);

    if ((status != MI_OK) || (unLen != 4) || ((ucComMF522Buf[0] & 0x0F) != 0x0A))
    {
        status = MI_ERR;
    }
		
    if (status == MI_OK)
    {
        //memcpy(ucComMF522Buf, pData, 16);
        //for (i = 0; i < 4; i++)
			  for (i = 0; i < 16; i++)
        {
            ucComMF522Buf[i] = *(pData + i);
        }
        CalulateCRC(ucComMF522Buf, 16, &ucComMF522Buf[16]);

        status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 18, ucComMF522Buf, &unLen);
        if ((status != MI_OK) || (unLen != 4) || ((ucComMF522Buf[0] & 0x0F) != 0x0A))
        {
            status = MI_ERR;
        }
    }

    return status;
}

/////////////////////////////////////////////////////////////////////
//功    能:读取M1卡一块数据
//参数说明: addr[IN]:块地址
//          pData[OUT]:读出的数据,16字节
//返    回: 成功返回MI_OK
/////////////////////////////////////////////////////////////////////
static int PcdRead(unsigned char addr, unsigned char *pData)
{
    int status;
    unsigned int unLen;
    unsigned char i, ucComMF522Buf[MAXRLEN];

    ucComMF522Buf[0] = PICC_READ;
    ucComMF522Buf[1] = addr;
    CalulateCRC(ucComMF522Buf, 2, &ucComMF522Buf[2]);

    status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 4, ucComMF522Buf, &unLen);
    //if (status == MI_OK)
        if ((status == MI_OK) && (unLen == 0x90))
     //  {   memcpy(pData, ucComMF522Buf, 16);   }
    {
        //for (i = 0; i < 4; i++)//
				for (i = 0; i < 16; i++)	//2020.02.17 Gavin modify			
        {
            *(pData + i) = ucComMF522Buf[i];
        }
    }
    else
    {
        status = MI_ERR;
    }

    return status;
}

#ifdef NOUSE

/////////////////////////////////////////////////////////////////////
//功    能:扣款和充值
//参数说明: dd_mode[IN]:命令字
//               0xC0 = 扣款
//               0xC1 = 充值
//          addr[IN]:钱包地址
//          pValue[IN]:4字节增(减)值,低位在前
//返    回: 成功返回MI_OK
/////////////////////////////////////////////////////////////////////
static int PcdValue(unsigned char dd_mode, unsigned char addr, unsigned char *pValue)
{
    int status;
    unsigned int unLen;
    unsigned char i, ucComMF522Buf[MAXRLEN];

    ucComMF522Buf[0] = dd_mode;
    ucComMF522Buf[1] = addr;
    CalulateCRC(ucComMF522Buf, 2, &ucComMF522Buf[2]);

    status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 4, ucComMF522Buf, &unLen);

    if ((status != MI_OK) || (unLen != 4) || ((ucComMF522Buf[0] & 0x0F) != 0x0A))
    {
        status = MI_ERR;
    }

    if (status == MI_OK)
    {
        // memcpy(ucComMF522Buf, pValue, 4);
        for (i = 0; i < 16; i++)
        {
            ucComMF522Buf[i] = *(pValue + i);
        }
        CalulateCRC(ucComMF522Buf, 4, &ucComMF522Buf[4]);
        unLen = 0;
        status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 6, ucComMF522Buf, &unLen);
        if (status != MI_ERR)
        {
            status = MI_OK;
        }
    }

    if (status == MI_OK)
    {
        ucComMF522Buf[0] = PICC_TRANSFER;
        ucComMF522Buf[1] = addr;
        CalulateCRC(ucComMF522Buf, 2, &ucComMF522Buf[2]);

        status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 4, ucComMF522Buf, &unLen);

        if ((status != MI_OK) || (unLen != 4) || ((ucComMF522Buf[0] & 0x0F) != 0x0A))
        {
            status = MI_ERR;
        }
    }
    return status;
}

/////////////////////////////////////////////////////////////////////
//功    能:备份钱包
//参数说明: sourceaddr[IN]:源地址
//          goaladdr[IN]:目标地址
//返    回: 成功返回MI_OK
/////////////////////////////////////////////////////////////////////
static int PcdBakValue(unsigned char sourceaddr, unsigned char goaladdr)
{
    int status;
    unsigned int unLen;
    unsigned char ucComMF522Buf[MAXRLEN];

    ucComMF522Buf[0] = PICC_RESTORE;
    ucComMF522Buf[1] = sourceaddr;
    CalulateCRC(ucComMF522Buf, 2, &ucComMF522Buf[2]);

    status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 4, ucComMF522Buf, &unLen);

    if ((status != MI_OK) || (unLen != 4) || ((ucComMF522Buf[0] & 0x0F) != 0x0A))
    {
        status = MI_ERR;
    }

    if (status == MI_OK)
    {
        ucComMF522Buf[0] = 0;
        ucComMF522Buf[1] = 0;
        ucComMF522Buf[2] = 0;
        ucComMF522Buf[3] = 0;
        CalulateCRC(ucComMF522Buf, 4, &ucComMF522Buf[4]);

        status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 6, ucComMF522Buf, &unLen);
        if (status != MI_ERR)
        {
            status = MI_OK;
        }
    }

    if (status != MI_OK)
    {
        return MI_ERR;
    }

    ucComMF522Buf[0] = PICC_TRANSFER;
    ucComMF522Buf[1] = goaladdr;

    CalulateCRC(ucComMF522Buf, 2, &ucComMF522Buf[2]);

    status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 4, ucComMF522Buf, &unLen);

    if ((status != MI_OK) || (unLen != 4) || ((ucComMF522Buf[0] & 0x0F) != 0x0A))
    {
        status = MI_ERR;
    }

    return status;
}

/////////////////////////////////////////////////////////////////////
//功    能:命令卡片进入休眠状态
//返    回: 成功返回MI_OK
/////////////////////////////////////////////////////////////////////
static int PcdHalt(void)
{
    int status = 0x00;
    unsigned int unLen;
    unsigned char ucComMF522Buf[MAXRLEN];

    ucComMF522Buf[0] = PICC_HALT;
    ucComMF522Buf[1] = 0;
    CalulateCRC(ucComMF522Buf, 2, &ucComMF522Buf[2]);

    status = PcdComMF522(PCD_TRANSCEIVE, ucComMF522Buf, 4, ucComMF522Buf, &unLen);

    // return MI_OK;
    return status;
}
#endif




#define 	CARD_SN_LEN		8
unsigned char error_count=0;
unsigned char card_SN_last[CARD_SN_LEN];
#include "string.h"
//
////MF522	卡验证时需要参数
//unsigned char DefaultKey[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; 
/*
s1,开启自动寻卡,等待直到有卡0xE6+ 1byte + 4byte的序列号
S2,关闭自动寻卡
S3,开启1444A复合寻卡
S4, 读写操作 */
#ifdef _NEW_NFC_APP

int nfc_write_read_N_block(struct nfc_app_STR *nfc)	
{
		unsigned char card_type[2];
		unsigned char card_SN[4]; 
		unsigned char card_SN_this[CARD_SN_LEN];
		unsigned char i,rtmp[16],tmp[16],status;	

   //寻卡,----得到卡的类型0x4400
    if(  (status =PcdRequest(PICC_REQALL, card_type) ) != MI_OK){		
			if( (status!=1) && (++error_count>=30) ){
				error_count=0;
				memset(card_SN_last,0,CARD_SN_LEN);
			}
			return 0xE0; //return MI_ERR;	
		}
		/* 	FM11NT 	---0x44 , 0x00
				M1			---0x04 ,					//白卡
		*/	

		//更改为M0卡的防冲撞流程 YSY 2019.10.14
    //防冲撞,----得到  卡片序列号,4字节
    if( PcdAnticoll(0x93, card_SN) != MI_OK)
        return 0xE1; //return MI_ERR;goto rfid_error1;
		memcpy(card_SN_this,card_SN,4);
    //选卡--INPUT 卡片的序列号4字节!!
    if(  PcdSelect(0x93, card_SN)!= MI_OK)
        return 0xE1; //goto rfid_error1;
    if(  PcdAnticoll(0x95, card_SN)!= MI_OK)
        return 0xE1; //goto rfid_error1;
		memcpy(card_SN_this+4,card_SN,4);	

		error_count =0;
		if(memcmp(card_SN_this,card_SN_last,CARD_SN_LEN) ==0)						
			return 1;	//tag保持add by Gavin 便于外部做应用		
		
    //选卡--INPUT 卡片的序列号4字节!!
    if(  PcdSelect(0x95, card_SN) != MI_OK)
        return 0xE1; //goto rfid_error1;
							
	
		//---------------------------------------------------------------------		
		//a,write 
		for(i=0;i<nfc->wblock_cnt;i++){
			//a1, read
			if(PcdRead(nfc->waddr[i],rtmp)!= MI_OK)
				goto rfid_error_retry1;				
			//a2,  modify
			memcpy(rtmp,nfc->wbuf[i],4);							
			//a3,write 
			if(PcdWrite(nfc->waddr[i], rtmp) != MI_OK)
				goto rfid_error_retry2;			
		}//for

		//a4,read then check them	
		for(i=0;i<nfc->wblock_cnt;i++){			
			if(PcdRead(nfc->waddr[i],tmp)!= MI_OK)
				goto rfid_error_retry3;
			if( memcmp(nfc->wbuf[i],tmp,4) !=0 )
				goto rfid_error_retry4;				
		}//for

		//20201016 add by Gavin 修改次数
		if(nfc->card_write_cnt_addr !=0){
			unsigned int r_count,w_count=0;
			if(PcdRead(nfc->card_write_cnt_addr,tmp)!= MI_OK)
				goto rfid_error_retry6;
			w_count =(tmp[0]<<24)+(tmp[1]<<16)+(tmp[2]<<8)+(tmp[3]<<0) +1;
			tmp[0] = w_count>>24;
			tmp[1] = w_count>>16;
			tmp[2] = w_count>>8;
			tmp[3] = w_count>>0;
			if(PcdWrite(nfc->card_write_cnt_addr, tmp) != MI_OK)
				goto rfid_error_retry6;	
			
			//read and check 
			if(PcdRead(nfc->card_write_cnt_addr,tmp)!= MI_OK)
				goto rfid_error_retry6;
			r_count =(tmp[0]<<24)+(tmp[1]<<16)+(tmp[2]<<8)+(tmp[3]<<0);
			if( w_count != r_count)
				goto rfid_error_retry6;
		}		
		
		//b,read keypad SN	
		for(i=0;i<nfc->rblock_cnt;i++){
			if( PcdRead(nfc->raddr[i],rtmp)!= MI_OK )
				goto rfid_error_retry5;	//return 0xE2; //
			memcpy(nfc->rbuf[i],rtmp,4);
		}//for		
	
        //--------2020.12.17 从NFC直接获取UID; add by Gavin
        nfc->rbuf[0][0] = card_SN_this[7];
        nfc->rbuf[0][1] = card_SN_this[6];
        nfc->rbuf[0][2] = card_SN_this[5];
        nfc->rbuf[0][3] = card_SN_this[4];

        nfc->rbuf[1][0] = card_SN_this[3];
        nfc->rbuf[1][1] = card_SN_this[2];
        nfc->rbuf[1][2] = card_SN_this[1];
        nfc->rbuf[1][3] = card_SN_this[0];        
        //-------------------------------------

		memcpy(card_SN_last,card_SN_this,CARD_SN_LEN);
		return 0x12; //return MI_OK;
		//----------------------------------------------------------------------------

rfid_error_retry1:	
rfid_error_retry2:	
rfid_error_retry3:	
rfid_error_retry4:	
rfid_error_retry5:
rfid_error_retry6:
	return 0xE2; //
		
}
#else
int nfc_write_read_N_block(struct nfc_app_STR *nfc)	
{
		unsigned char card_type[2];
		unsigned char card_SN[4]; 
		unsigned char card_SN_this[CARD_SN_LEN];
		unsigned char i,rtmp[16],tmp[16];	

   //寻卡,----得到卡的类型0x4400
    if(  PcdRequest(PICC_REQALL, card_type) != MI_OK){
			if(++error_count>=10){
				error_count=0;
				memset(card_SN_last,0,CARD_SN_LEN);
			}
			return 0xE0; //return MI_ERR;	
		}
		/* 	FM11NT 	---0x44 , 0x00
				M1			---0x04 ,					//白卡
		*/	
		
		//更改为M0卡的防冲撞流程 YSY 2019.10.14
    //防冲撞,----得到  卡片序列号,4字节
    if( PcdAnticoll(0x93, card_SN) != MI_OK)
        return 0xE1; //return MI_ERR;goto rfid_error1;
		memcpy(card_SN_this,card_SN,4);
    //选卡--INPUT 卡片的序列号4字节!!
    if(  PcdSelect(0x93, card_SN)!= MI_OK)
        return 0xE1; //goto rfid_error1;
    if(  PcdAnticoll(0x95, card_SN)!= MI_OK)
        return 0xE1; //goto rfid_error1;
		memcpy(card_SN_this+4,card_SN,4);		
    //选卡--INPUT 卡片的序列号4字节!!
    if(  PcdSelect(0x95, card_SN) != MI_OK)
        return 0xE1; //goto rfid_error1;
		
		#ifdef 	_NFC_DEBUG_		
		nfc->debug_driver_keep_cnt++;
		#endif					
		error_count =0;
		if(memcmp(card_SN_this,card_SN_last,CARD_SN_LEN) ==0)						
			return 1;	//tag保持add by Gavin 便于外部做应用			
		//---------------------------------------------------------------------	
		#ifdef 	_NFC_DEBUG_		
		nfc->debug_driver_start_cnt++;
		#endif
#if 0	
		//a,write 
		for(i=0;i<nfc->wblock_cnt;i++){
			//a1, read
			if(PcdRead(nfc->waddr[i],rtmp)!= MI_OK)
				goto rfid_error_retry1;				
			//a2,  modify
			memcpy(rtmp,nfc->wbuf[i],4);							
			//a3,write 
			PcdWrite(nfc->waddr[i], rtmp);
			mDelay(50);
			if(PcdWrite(nfc->waddr[i], rtmp) != MI_OK)
				goto rfid_error_retry2;
			mDelay(50);
			
			//a4,read then check them		
			if(PcdRead(nfc->waddr[i],tmp)!= MI_OK)
				goto rfid_error_retry3;
			if( memcmp(rtmp,tmp,4) !=0 )
				goto rfid_error_retry4;				
		}//for
#else		
		//a,write 
		for(i=0;i<nfc->wblock_cnt;i++){
			//a1, read
			if(PcdRead(nfc->waddr[i],rtmp)!= MI_OK)
				goto rfid_error_retry1;				
			//a2,  modify
			memcpy(rtmp,nfc->wbuf[i],4);							
			//a3,write 
			if(PcdWrite(nfc->waddr[i], rtmp) != MI_OK)
				goto rfid_error_retry2;			
		}//for

		////a4,read then check them	
		for(i=0;i<nfc->wblock_cnt;i++){			
			if(PcdRead(nfc->waddr[i],tmp)!= MI_OK)
				goto rfid_error_retry3;
			if( memcmp(nfc->wbuf[i],tmp,4) !=0 )
				goto rfid_error_retry4;				
		}//for

		//20201016 add by Gavin 修改次数
		if(nfc->card_write_cnt_addr !=0){
			unsigned int r_count,w_count=0;
			if(PcdRead(nfc->card_write_cnt_addr,tmp)!= MI_OK)
				goto rfid_error_retry6;
			w_count =(tmp[0]<<24)+(tmp[1]<<16)+(tmp[2]<<8)+(tmp[3]<<0) +1;
			tmp[0] = w_count>>24;
			tmp[1] = w_count>>16;
			tmp[2] = w_count>>8;
			tmp[3] = w_count>>0;
			if(PcdWrite(nfc->card_write_cnt_addr, tmp) != MI_OK)
				goto rfid_error_retry6;	
			
			//read and check 
			if(PcdRead(nfc->card_write_cnt_addr,tmp)!= MI_OK)
				goto rfid_error_retry6;
			r_count =(tmp[0]<<24)+(tmp[1]<<16)+(tmp[2]<<8)+(tmp[3]<<0);
			if( w_count != r_count)
				goto rfid_error_retry6;
		}		
#endif
		
		//b,read keypad SN	
		for(i=0;i<nfc->rblock_cnt;i++){
			if( PcdRead(nfc->raddr[i],rtmp)!= MI_OK )
				goto rfid_error_retry5;	//return 0xE2; //
			memcpy(nfc->rbuf[i],rtmp,4);
		}//for		
		#ifdef 	_NFC_DEBUG_		
		nfc->debug_driver_ok_cnt++;
		memcpy(nfc->card_sn,card_SN_this,CARD_SN_LEN);
		#endif		
		memcpy(card_SN_last,card_SN_this,CARD_SN_LEN);
		return 0x12; //return MI_OK;
		//----------------------------------------------------------------------------
		
#ifdef 	_NFC_DEBUG_	
rfid_error_retry1:
		memcpy(nfc->error[1].card_sn[nfc->error[1].cnt],card_SN_this,CARD_SN_LEN);	
		nfc->error[1].cnt++;
		return 0xE2; //		
rfid_error_retry2:
		memcpy(nfc->error[2].card_sn[nfc->error[2].cnt],card_SN_this,CARD_SN_LEN);	
		nfc->error[2].cnt++;
		return 0xE2; //			
rfid_error_retry3:	
		memcpy(nfc->error[3].card_sn[nfc->error[3].cnt],card_SN_this,CARD_SN_LEN);	
		nfc->error[3].cnt++;
		return 0xE2; //			
rfid_error_retry4:	
		memcpy(nfc->error[4].card_sn[nfc->error[4].cnt],card_SN_this,CARD_SN_LEN);	
		nfc->error[4].cnt++;
		return 0xE2; //			
rfid_error_retry5:		
		memcpy(nfc->error[5].card_sn[nfc->error[5].cnt],card_SN_this,CARD_SN_LEN);	
		nfc->error[5].cnt++;
		return 0xE2; //
rfid_error_retry6:
		memcpy(nfc->error[6].card_sn[nfc->error[6].cnt],card_SN_this,CARD_SN_LEN);	
		nfc->error[6].cnt++;
		return 0xE2; //		
#else
rfid_error_retry1:	
rfid_error_retry2:	
rfid_error_retry3:	
rfid_error_retry4:	
rfid_error_retry5:
rfid_error_retry6:
	return 0xE2; //
#endif			
}

#endif 

//////////////////////////////////////////////////////////////////////
//??RC632?????
//////////////////////////////////////////////////////////////////////
static int M500PcdConfigISOType(unsigned char type)
{
    if (type == 'A'){ //ISO14443_A  
			ClearBitMask(Status2Reg, 0x08);
			WriteRawRC(RxSelReg, 0x86); //84
			WriteRawRC(RFCfgReg, 0x7F);  //4F
			WriteRawRC(TReloadRegL, 30); //tmoLength);// TReloadVal = 'h6a =tmoLength(dec)
			WriteRawRC(TReloadRegH, 0);
			WriteRawRC(TModeReg, 0x8D);
			WriteRawRC(TPrescalerReg, 0x3E);
			WriteRawRC(TxAutoReg, 0x40); //Force100ASK(???)//add by Gavin

			mDelay(100);
			PcdAntennaOn();
    }
    else{
       return MI_NOTAGERR;//-1;
    }

    return MI_OK;
}





/*
* initinal RFid card enter;		*/
void rfid_init(void)
{
    SPI_InitIO();
    PcdReset();
    PcdAntennaOff(); //关闭天线
    PcdAntennaOn();  //开启天线

    M500PcdConfigISOType('A');
}

//unsigned char testx;
/*
* this function using check rfid reader connect or not 
*/
unsigned char get_rfid_reader_Hard_connect_status(void)
{
	//testx =ReadRawRC(RFCfgReg);
	
	return ( (ReadRawRC(RFCfgReg)==0x7F)?1:0);
}






/*
* rfid reader-- debug only 
*/
unsigned char nfc_reader(unsigned char addr,unsigned char cnt,unsigned char *out)	
{
		unsigned char card_type[2];
		unsigned char card_SN[4]; 
		unsigned char card_SN_this[CARD_SN_LEN];
		unsigned char i;//,rtmp[16],tmp[16];	

   //寻卡,----得到卡的类型0x4400
    if(  PcdRequest(PICC_REQALL, card_type) != MI_OK){
			if(++error_count>=10){
				error_count=0;
				memset(card_SN_last,0,CARD_SN_LEN);
			}
			return 0xE0; //return MI_ERR;	
		}
		/* 	FM11NT 	---0x44 , 0x00
				M1			---0x04 ,					//白卡
		*/	
		
		//更改为M0卡的防冲撞流程 YSY 2019.10.14
    //防冲撞,----得到  卡片序列号,4字节
    if( PcdAnticoll(0x93, card_SN) != MI_OK)
        return 0xE1; //return MI_ERR;goto rfid_error1;
		memcpy(card_SN_this,card_SN,4);
    //选卡--INPUT 卡片的序列号4字节!!
    if(  PcdSelect(0x93, card_SN)!= MI_OK)
        return 0xE1; //goto rfid_error1;
    if(  PcdAnticoll(0x95, card_SN)!= MI_OK)
        return 0xE1; //goto rfid_error1;
		memcpy(card_SN_this+4,card_SN,4);		
    //选卡--INPUT 卡片的序列号4字节!!
    if(  PcdSelect(0x95, card_SN) != MI_OK)
        return 0xE1; //goto rfid_error1;
						
		error_count =0;
		if(memcmp(card_SN_this,card_SN_last,CARD_SN_LEN) ==0)						
			return 1;	//tag保持add by Gavin 便于外部做应用		
		
		//b,read keypad SN	
		for(i=0;i<cnt;i++){
			if( PcdRead(addr+i,out+(i<<2))!= MI_OK )
				goto rfid_error_reader;	//return 0xE2; //
		}//for
	
		memcpy(card_SN_last,card_SN_this,CARD_SN_LEN);
		return 0x12; //return MI_OK;
		//----------------------------------------------------------------------------
	
		rfid_error_reader:
			return 0xE0;
}












#endif