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!
PN532/NFCEvent.h@13:6f98851e025b, 2013-01-15 (annotated)
- Committer:
- AppNearMe
- Date:
- Tue Jan 15 15:34:39 2013 +0000
- Revision:
- 13:6f98851e025b
- Parent:
- 11:5be631376e5b
renamed rtos.h to platform_rtos.h to prevent insludes mess
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
AppNearMe | 11:5be631376e5b | 1 | /* |
AppNearMe | 11:5be631376e5b | 2 | NFCEvent.h |
AppNearMe | 11:5be631376e5b | 3 | Copyright (c) Donatien Garnier 2012 |
AppNearMe | 11:5be631376e5b | 4 | donatien.garnier@appnearme.com |
AppNearMe | 11:5be631376e5b | 5 | http://www.appnearme.com/ |
AppNearMe | 11:5be631376e5b | 6 | */ |
AppNearMe | 11:5be631376e5b | 7 | |
AppNearMe | 11:5be631376e5b | 8 | /** \file NFCEvent.h |
AppNearMe | 11:5be631376e5b | 9 | * NFC-related events |
AppNearMe | 11:5be631376e5b | 10 | */ |
AppNearMe | 11:5be631376e5b | 11 | |
AppNearMe | 11:5be631376e5b | 12 | #ifndef NFCEVENT_H_ |
AppNearMe | 11:5be631376e5b | 13 | #define NFCEVENT_H_ |
AppNearMe | 11:5be631376e5b | 14 | |
AppNearMe | 11:5be631376e5b | 15 | /** NFC-related events |
AppNearMe | 11:5be631376e5b | 16 | * |
AppNearMe | 11:5be631376e5b | 17 | */ |
AppNearMe | 11:5be631376e5b | 18 | enum NFCEvent |
AppNearMe | 11:5be631376e5b | 19 | { |
AppNearMe | 11:5be631376e5b | 20 | NFC_TRANSACTION_STARTED, //!< Transaction with reader started (anticollision successful) |
AppNearMe | 11:5be631376e5b | 21 | NFC_TRANSACTION_SUCCESSFUL, //!< Transaction with reader successful |
AppNearMe | 11:5be631376e5b | 22 | NFC_TRANSACTION_FAILED //!< Transaction with reader failed |
AppNearMe | 11:5be631376e5b | 23 | }; |
AppNearMe | 11:5be631376e5b | 24 | |
AppNearMe | 11:5be631376e5b | 25 | #endif /* NFCEVENT_H_ */ |