mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Change-Id: I989828d51a2ac1c79906d865b5bdab227457d2e6 Signed-off-by: Iliyan Malchev <malchev@google.com>
16 lines
417 B
Plaintext
16 lines
417 B
Plaintext
package android.hardware.nfc@1.0;
|
|
|
|
interface INfcClientCallback {
|
|
/*
|
|
* The callback passed in from the NFC stack that the HAL
|
|
* can use to pass events back to the stack.
|
|
*/
|
|
sendEvent(nfc_event_t event, nfc_status_t event_status);
|
|
|
|
/*
|
|
* The callback passed in from the NFC stack that the HAL
|
|
* can use to pass incomming data to the stack.
|
|
*/
|
|
sendData(nfc_data_t data);
|
|
};
|