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/munfc/drv/pn532/pn532.h@13:6f98851e025b, 2013-01-15 (annotated)
- Committer:
- AppNearMe
- Date:
- Tue Jan 15 15:34:39 2013 +0000
- Revision:
- 13:6f98851e025b
- Parent:
- 0:480387549d89
- Child:
- 3:0b949b2d3b55
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 | 0:480387549d89 | 1 | /* |
AppNearMe | 0:480387549d89 | 2 | pn532.h |
AppNearMe | 0:480387549d89 | 3 | Copyright (c) Donatien Garnier 2012 |
AppNearMe | 0:480387549d89 | 4 | donatien.garnier@appnearme.com |
AppNearMe | 0:480387549d89 | 5 | http://www.appnearme.com/ |
AppNearMe | 0:480387549d89 | 6 | */ |
AppNearMe | 0:480387549d89 | 7 | |
AppNearMe | 0:480387549d89 | 8 | |
AppNearMe | 0:480387549d89 | 9 | #ifndef PN532_H_ |
AppNearMe | 0:480387549d89 | 10 | #define PN532_H_ |
AppNearMe | 0:480387549d89 | 11 | |
AppNearMe | 0:480387549d89 | 12 | #ifdef __cplusplus |
AppNearMe | 0:480387549d89 | 13 | extern "C" { |
AppNearMe | 0:480387549d89 | 14 | #endif |
AppNearMe | 0:480387549d89 | 15 | |
AppNearMe | 0:480387549d89 | 16 | /* |
AppNearMe | 0:480387549d89 | 17 | * To be called on each interrupt |
AppNearMe | 0:480387549d89 | 18 | */ |
AppNearMe | 0:480387549d89 | 19 | void pn532_irq(void); |
AppNearMe | 0:480387549d89 | 20 | |
AppNearMe | 0:480387549d89 | 21 | #ifdef __cplusplus |
AppNearMe | 0:480387549d89 | 22 | } |
AppNearMe | 0:480387549d89 | 23 | #endif |
AppNearMe | 0:480387549d89 | 24 | |
AppNearMe | 0:480387549d89 | 25 | #endif /* PN532_H_ */ |