📄 prd_iso14443b_commands.lst
字号:
ARM COMPILER V2.40e, PRD_ISO14443B_Commands 12/12/07 14:35:10 PAGE 1
ARM COMPILER V2.40e, COMPILATION OF MODULE PRD_ISO14443B_Commands
OBJECT MODULE PLACED IN .\PRD_ISO14443B_Commands.obj
COMPILER INVOKED BY: C:\DEV\Tools\Keil\ARM\BIN\CA.exe ..\..\..\..\LIB\PicoRead\u03\Level_2\ISO14443B\sources\PRD_ISO1444
-3B_Commands.c THUMB DEBUG PRINT(.\LISTING\PRD_ISO14443B_COMMANDS.LST) TABS(4) PREPRINT(.\LISTING\PRD_ISO14443B_COMMANDS.
-I) OBJECT(.\PRD_ISO14443B_Commands.obj)
stmt level source
1 //=============================================================================
2 // Copyright (C) INSIDE Contactless 1998-2005
3 //
4 // INSIDE Contactless reserves the right to make changes, without notice,
5 // to any product (including application note) herein to improve
6 // reliability, functionality, or design. INSIDE Contactless advises its
7 // customers to obtain the latest version of device data sheets to verify,
8 // before placing orders, that the information being relied upon by the
9 // customer is current.
10 //
11 // INSIDE Contactless makes no warranty that the use will not infringe any
12 // third party patent, copyright or trademark.
13 //
14 // Information furnished by INSIDE Contactless is believed to be accurate
15 // and reliable. However, INSIDE Contactless does not assume any liability
16 // resulting from the application or use of any product described within.
17 //
18 // All rights are reserved. Reproduction in whole or in part is prohibited
19 // without the written consent of the copyright owner.
20 //
21 // Bat 11a,
22 // Parc Club du Golf,
23 // Z.A.C. du Pichaury Tel : +33 (0)4.42.39.33.00
24 // 13856 Aix-en-Provence Cedex 3 Fax : +33 (0)4.42.39.63.19
25 // FRANCE Email : info@insidefr.com
26 //
27 //-----------------------------------------------------------------------------
28 // Project Code : PICOREAD LIBRARY
29 // Project Name : PICOREAD LIBRARY
30 // Module Name : PRD_ISO14443B_COMMANDS.C
31 // Platform dev : Keil 礦ision 3 (IDE ) + Keil ARM Compiler
32 // Target : LPC2103 (ARM7TDMI Core)
33 // Language : C ANSI
34 // Revision : 1.0
35 // Description : ISO14443B commands
36 //=============================================================================
37 // When Who Ver What
38 // 06-05-12 FPK 1.2 creation
39 //=============================================================================
40
41
42 // C ANSI Defines
43 #include <string.h>
44
45 // Defines for PicoRead
46 #include "PRD_PicoReadRF_Pages_Parameters.h" // Definition of PicoRead chip registers
*** ERROR C318 IN LINE 46 OF ..\..\..\..\LIB\PicoRead\u03\Level_2\ISO14443B\sources\PRD_ISO14443B_Commands.c: can't open
- file 'PRD_PicoReadRF_Pages_Parameters.h'
47 #include "PRD_Config.h" // Reader Configuration functions
*** ERROR C318 IN LINE 47 OF ..\..\..\..\LIB\PicoRead\u03\Level_2\ISO14443B\sources\PRD_ISO14443B_Commands.c: can't open
- file 'PRD_Config.h'
48 #include "PRD_RF_Comm.h"
*** ERROR C318 IN LINE 48 OF ..\..\..\..\LIB\PicoRead\u03\Level_2\ISO14443B\sources\PRD_ISO14443B_Commands.c: can't open
- file 'PRD_RF_Comm.h'
49 #include "PRD_BufferExchange.h"
*** ERROR C318 IN LINE 49 OF ..\..\..\..\LIB\PicoRead\u03\Level_2\ISO14443B\sources\PRD_ISO14443B_Commands.c: can't open
- file 'PRD_BufferExchange.h'
ARM COMPILER V2.40e, PRD_ISO14443B_Commands 12/12/07 14:35:10 PAGE 2
50
51
52 // Defines for LPC2129
53 #include "Target.H" // Definition of processor registers & Low level functions to be modified accor
-ding to the target, and the user needs
*** ERROR C318 IN LINE 53 OF ..\..\..\..\LIB\PicoRead\u03\Level_2\ISO14443B\sources\PRD_ISO14443B_Commands.c: can't open
- file 'Target.H'
54
55 // ISO B Commands
56 #include "PRD_ISO14443B_Commands.h"
*** ERROR C318 IN LINE 56 OF ..\..\..\..\LIB\PicoRead\u03\Level_2\ISO14443B\sources\PRD_ISO14443B_Commands.c: can't open
- file 'PRD_ISO14443B_Commands.h'
57
58 #include "PRD_COMMON_Anticollision_Parameters.h" //Common Anticollision parameters defines
*** ERROR C318 IN LINE 58 OF ..\..\..\..\LIB\PicoRead\u03\Level_2\ISO14443B\sources\PRD_ISO14443B_Commands.c: can't open
- file 'PRD_COMMON_Anticollision_Parameters.h'
59
60
61
62 //-----------------------------------------------------------------------------
63 // Function name : b_fnSendReceiveHALTB(unsigned char* p_pabBuffer,StructReader* p_pStructReader)
64 //-----------------------------------------------------------------------------
65 // Description : Send the HALT B Command
66 //
67 // IN : p_pStructReader : Pointer to the used StructReader structure.
68 // p_pabBuffer : PUPI coming from ATQB
69 //
70 //
71 // OUT : - none -
72 //
73 // RETURN : l_bStatus : Error code
74 //
75 // Notes : - none -
76 //-----------------------------------------------------------------------------
77 unsigned char b_fnSendReceiveHALTB(unsigned char* p_pabBuffer,StructReader* p_pStructReader)
*** ERROR C25 IN LINE 77 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: syntax erro
-r near '*'
78 {
*** WARNING C35 IN LINE 78 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: 'b_fnSend
-ReceiveHALTB': uses old-style declarator
79 1 unsigned char l_abBuffer[5];
80 1 unsigned char l_bStatus;
81 1
82 1 l_abBuffer[0] = _ISOB_HALT; // 0x50
*** ERROR C67 IN LINE 82 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: '_ISOB_HALT
-': undefined identifier
83 1
84 1 //COPY PUPI (SERIAL NMBER)
85 1 memcpy(&l_abBuffer[1],&p_pabBuffer[1],4);
86 1
87 1
88 1 v_fnSendBuffer(_SENDCRC,5,0,&l_abBuffer[0],p_pStructReader);
*** ERROR C67 IN LINE 88 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: '_SENDCRC':
- undefined identifier
*** ERROR C67 IN LINE 88 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: 'p_pStructR
-eader': undefined identifier
*** WARNING C140 IN LINE 88 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: 'v_fnSen
-dBuffer' undefined; assuming 'extern int v_fnSendBuffer()'
89 1 l_bStatus=b_fnReceiveBuffer(_CHECKCRC,&p_pabBuffer[0],p_pStructReader,&g_lDataBytesReceived,&g_bDataBits
-Received,&g_bPicoReadStatus,&g_bRFReceiveEOFB,&g_bBitsToReceive);
*** ERROR C67 IN LINE 89 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: '_CHECKCRC'
-: undefined identifier
*** ERROR C67 IN LINE 89 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: 'p_pStructR
-eader': undefined identifier
*** ERROR C67 IN LINE 89 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: 'g_lDataByt
-esReceived': undefined identifier
ARM COMPILER V2.40e, PRD_ISO14443B_Commands 12/12/07 14:35:10 PAGE 3
*** ERROR C67 IN LINE 89 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: 'g_bDataBit
-sReceived': undefined identifier
*** ERROR C67 IN LINE 89 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: 'g_bPicoRea
-dStatus': undefined identifier
*** ERROR C67 IN LINE 89 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: 'g_bRFRecei
-veEOFB': undefined identifier
*** ERROR C67 IN LINE 89 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: 'g_bBitsToR
-eceive': undefined identifier
*** WARNING C140 IN LINE 89 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: 'b_fnRec
-eiveBuffer' undefined; assuming 'extern int b_fnReceiveBuffer()'
90 1
91 1
92 1 return l_bStatus;
93 1 }
*** WARNING C47 IN LINE 77 OF ..\..\..\..\LIB\PICOREAD\U03\LEVEL_2\ISO14443B\SOURCES\PRD_ISO14443B_COMMANDS.C: 'StructRe
-ader': unreferenced parameter
94
ARM COMPILATION COMPLETE. 4 WARNING(S), 18 ERROR(S)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -