AppNearMe µNFC stack for the NXP PN532 chip License: You can use the stack free of charge to prototype with mbed; if you want to use the stack with your commercial product, get in touch!

Dependents:   IOT_sensor_nfc AppNearMe_MuNFC_PN532_Test p2p_nfc_test NFCMoodLamp ... more

License

You can use the stack free of charge to prototype with mbed; if you want to use the stack with your commercial product, get in touch!

Committer:
AppNearMe
Date:
Wed Nov 07 18:18:52 2012 +0000
Revision:
10:2af578c635cd
Updated library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AppNearMe 10:2af578c635cd 1 /*
AppNearMe 10:2af578c635cd 2 pn532_registers.h
AppNearMe 10:2af578c635cd 3 Copyright (c) Donatien Garnier 2012
AppNearMe 10:2af578c635cd 4 donatien.garnier@appnearme.com
AppNearMe 10:2af578c635cd 5 http://www.appnearme.com/
AppNearMe 10:2af578c635cd 6 */
AppNearMe 10:2af578c635cd 7
AppNearMe 10:2af578c635cd 8
AppNearMe 10:2af578c635cd 9 #ifndef PN532_REGISTERS_H_
AppNearMe 10:2af578c635cd 10 #define PN532_REGISTERS_H_
AppNearMe 10:2af578c635cd 11
AppNearMe 10:2af578c635cd 12
AppNearMe 10:2af578c635cd 13 #ifdef __cplusplus
AppNearMe 10:2af578c635cd 14 extern "C" {
AppNearMe 10:2af578c635cd 15 #endif
AppNearMe 10:2af578c635cd 16
AppNearMe 10:2af578c635cd 17 //We only place common SFR-accessible registers here for now
AppNearMe 10:2af578c635cd 18 #define PN532_REG_CLU_STATUS2 0x6338 //Contains status flags of the receiver, transmitter and Data Mode Detector
AppNearMe 10:2af578c635cd 19 #define PN532_REG_CLU_CONTROL 0x633C//0xFFED //Contains miscellaneous Control Registers
AppNearMe 10:2af578c635cd 20 #define PN532_REG_CLU_BITFRAMING 0x633D//0xFFEE //Adjustments for bit oriented frames
AppNearMe 10:2af578c635cd 21 #define PN532_REG_CLU_MANUALRCV 0x630D //Tuning of the internal receiver
AppNearMe 10:2af578c635cd 22 #define PN532_REG_CLU_TXMODE 0x6302 //Defines the transmission data rate and framing during transmission
AppNearMe 10:2af578c635cd 23 #define PN532_REG_CLU_RXMODE 0x6303 //Defines the reception data rate and framing during receiving
AppNearMe 10:2af578c635cd 24 #define PN532_REG_CLU_TXAUTO 0x6305 //Controls the setting of the antenna driver
AppNearMe 10:2af578c635cd 25 #define PN532_REG_CLU_MODE 0x6301 //Defines general modes for transmitting and receiving.
AppNearMe 10:2af578c635cd 26 #define PN532_REG_CLU_MIFNFC 0x630C //Defines ISO/IEC 14443A/MIFARE/NFC specific settings in target or card operating mode.
AppNearMe 10:2af578c635cd 27
AppNearMe 10:2af578c635cd 28 #ifdef __cplusplus
AppNearMe 10:2af578c635cd 29 }
AppNearMe 10:2af578c635cd 30 #endif
AppNearMe 10:2af578c635cd 31
AppNearMe 10:2af578c635cd 32
AppNearMe 10:2af578c635cd 33 #endif /* PN532_REGISTERS_H_ */