allwinner_a64/android/hardware/interfaces/nfc/1.0/default/service.cpp
2018-08-08 17:00:29 +08:00

13 lines
337 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>();
}