diff options
author | Martijn Coenen <maco@google.com> | 2012-08-07 10:49:21 -0700 |
---|---|---|
committer | Martijn Coenen <maco@google.com> | 2012-08-07 10:49:21 -0700 |
commit | bb65a8d87ee523c92ca1b5f57efe139bab3859fe (patch) | |
tree | 13162c1d7f882d206a29684c959ba0ba21addafb /src/com | |
parent | 618ed5a492c6474d3d5fd11d06febded71b0a7c2 (diff) | |
download | packages_apps_nfc-bb65a8d87ee523c92ca1b5f57efe139bab3859fe.zip packages_apps_nfc-bb65a8d87ee523c92ca1b5f57efe139bab3859fe.tar.gz packages_apps_nfc-bb65a8d87ee523c92ca1b5f57efe139bab3859fe.tar.bz2 |
Allow NfcB connects in NCI stack.
PN544 did not support this - move the code checking for that
into dh implementation.
Change-Id: I4def57697bc81cf599421f1ffbfa85c0db72c458
Diffstat (limited to 'src/com')
-rwxr-xr-x | src/com/android/nfc/NfcService.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/com/android/nfc/NfcService.java b/src/com/android/nfc/NfcService.java index c42bdc0..ab294ea 100755 --- a/src/com/android/nfc/NfcService.java +++ b/src/com/android/nfc/NfcService.java @@ -860,10 +860,6 @@ public class NfcService extends Application implements DeviceHostListener { return ErrorCodes.ERROR_DISCONNECT; } - if (technology == TagTechnology.NFC_B) { - return ErrorCodes.ERROR_NOT_SUPPORTED; - } - // Note that on most tags, all technologies are behind a single // handle. This means that the connect at the lower levels // will do nothing, as the tag is already connected to that handle. |