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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers NFCEvent.h Source File

NFCEvent.h

Go to the documentation of this file.
00001 /*
00002     NFCEvent.h 
00003     Copyright (c) Donatien Garnier 2012
00004     donatien.garnier@appnearme.com
00005     http://www.appnearme.com/
00006 */
00007 
00008 /** \file NFCEvent.h
00009 *    NFC-related events
00010 */
00011 
00012 #ifndef NFCEVENT_H_
00013 #define NFCEVENT_H_
00014 
00015 /** NFC-related events
00016  *
00017  */
00018 enum NFCEvent
00019 {
00020   NFC_TRANSACTION_STARTED, //!< Transaction with reader started (anticollision successful)
00021   NFC_TRANSACTION_SUCCESSFUL, //!< Transaction with reader successful
00022   NFC_TRANSACTION_FAILED //!< Transaction with reader failed
00023 };
00024 
00025 #endif /* NFCEVENT_H_ */