1 /**************************************************************************/
4 @author K. Townsend (microBuilder.eu)
8 Software License Agreement (BSD License)
10 Copyright (c) 2010, microBuilder SARL
13 Redistribution and use in source and binary forms, with or without
14 modification, are permitted provided that the following conditions are met:
15 1. Redistributions of source code must retain the above copyright
16 notice, this list of conditions and the following disclaimer.
17 2. Redistributions in binary form must reproduce the above copyright
18 notice, this list of conditions and the following disclaimer in the
19 documentation and/or other materials provided with the distribution.
20 3. Neither the name of the copyright holders nor the
21 names of its contributors may be used to endorse or promote products
22 derived from this software without specific prior written permission.
24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
25 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
26 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
28 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
31 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 /**************************************************************************/
38 #include "projectconfig.h"
41 #include "drivers/sensors/pn532/pn532.h"
42 #include "drivers/sensors/pn532/pn532_drvr.h"
44 /**************************************************************************/
46 Main program entry point. After reset, normal code execution will
49 Note: CFG_INTERFACE is normally enabled by default. If you wish to
50 enable the blinking LED code in main, you will need to open
51 projectconfig.h, comment out "#define CFG_INTERFACE" and
54 /**************************************************************************/
58 #error "CFG_INTERFACE must be disabled in projectconfig.h for this demo"
60 #if !defined CFG_PRINTF_USBCDC
61 #error "CFG_PRINTF_USBCDC must be enabled in projectconfig.h for this demo"
64 // Configure cpu and mandatory peripherals
67 // Wait 5 second for someone to open the USB connection for printf
70 // Initialise the PN532
77 // Setup command to initialise a single ISO14443A target at 106kbps
78 byte_t abtCommand
[] = { PN532_COMMAND_INLISTPASSIVETARGET
, 0x01, PN532_MODULATION_ISO14443A_106KBPS
};
82 printf("%s", CFG_PRINTF_NEWLINE
);
83 printf("Wait for an ISO14443A card (Mifare Classic, etc.)%s", CFG_PRINTF_NEWLINE
);
86 error
= pn532Write(abtCommand
, sizeof(abtCommand
));
88 // Wait until we get a response or an unexpected error message
91 error
= pn532Read(response
, &responseLen
);
95 while (error
== PN532_ERROR_RESPONSEBUFFEREMPTY
);
98 while ((error
== PN532_ERROR_RESPONSEBUFFEREMPTY
) || (error
= PN532_ERROR_SPIREADYSTATUSTIMEOUT
));
101 // Print the card details if possible
104 /* Response for ISO14443A 106KBPS (Mifare Classic, etc.)
105 See UM0701-02 section 7.3.5 for more information
108 ------------- ------------------------------------------
110 b8 Tag Number (only one used in this example)
116 SENS_RES SEL_RES Manufacturer/Card Type NFCID Len
117 -------- ------- ----------------------- ---------
118 00 04 08 NXP Mifare Classic 1K 4 bytes */
120 printf("%s", CFG_PRINTF_NEWLINE
);
121 printf("%-12s: %d %s", "Tags Found", response
[7], CFG_PRINTF_NEWLINE
);
122 printf("%-12s: %02X %02X %s", "SENS_RES", response
[9], response
[10], CFG_PRINTF_NEWLINE
);
123 printf("%-12s: %02X %s", "SEL_RES", response
[11], CFG_PRINTF_NEWLINE
);
124 printf("%-12s: ", "NFCID");
126 for (pos
=0; pos
< response
[12]; pos
++)
128 printf("%02x ", response
[13 + pos
]);
130 printf(CFG_PRINTF_NEWLINE
);
134 // Oops .... something bad happened. Check 'error'
135 printf("Ooops! Error %02X %s", error
, CFG_PRINTF_NEWLINE
);
138 // Wait at least one second before trying again