blob: 979728bf9c4e6b94989e370b7ab5c1f6fb91482a [file] [log] [blame]
Andreas Hubera4831392016-07-29 15:05:03 -07001package android.hardware.nfc@1.0;
2
3interface INfcClientCallback {
4 /*
5 * The callback passed in from the NFC stack that the HAL
6 * can use to pass events back to the stack.
7 */
8 sendEvent(nfc_event_t event, nfc_status_t event_status);
9
10 /*
11 * The callback passed in from the NFC stack that the HAL
12 * can use to pass incomming data to the stack.
13 */
14 sendData(nfc_data_t data);
15};