diff options
Diffstat (limited to 'jni/com_android_nfc.cpp')
-rwxr-xr-x[-rw-r--r--] | jni/com_android_nfc.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/jni/com_android_nfc.cpp b/jni/com_android_nfc.cpp index d794d6e..c0e1993 100644..100755 --- a/jni/com_android_nfc.cpp +++ b/jni/com_android_nfc.cpp @@ -471,6 +471,18 @@ void nfc_jni_get_technology_tree(JNIEnv* e, phLibNfc_RemoteDevList_t* devList, int handle = devList[target].hTargetDev; switch (type) { + case phNfc_eISO14443_A_PCD: + { + index = addTechIfNeeded(technologies, handles, libnfctypes, index, + MAX_NUM_TECHNOLOGIES, TARGET_TYPE_ISO14443_4A_PCD, handle, type); + break; + } + case phNfc_eISO14443_B_PCD: + { + index = addTechIfNeeded(technologies, handles, libnfctypes, index, + MAX_NUM_TECHNOLOGIES, TARGET_TYPE_ISO14443_4B_PCD, handle, type); + break; + } case phNfc_eISO14443_A_PICC: case phNfc_eISO14443_4A_PICC: { |