mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 17:31:58 +00:00
14 lines
346 B
C++
14 lines
346 B
C++
#define LOG_TAG "android.hardware.nfc@1.0-service"
|
|
|
|
#include <android/hardware/nfc/1.0/INfc.h>
|
|
|
|
#include <hidl/LegacySupport.h>
|
|
|
|
// Generated HIDL files
|
|
using android::hardware::nfc::V1_0::INfc;
|
|
using android::hardware::defaultPassthroughServiceImplementation;
|
|
|
|
int main() {
|
|
return defaultPassthroughServiceImplementation<INfc>("nfc_nci");
|
|
}
|