Remove nfc_initiator_transceive_dep_bytes() and introduce NDO_EASY_FRAMING option.
Always use nfc_initiator_transceive_bytes(). If you where using advanced features and already relying on nfc_initiator_transceive_bytes(), then your code has to be updated to unset the NDO_EASY_FRAMING option. See an example of such a change in the libfreefare's repository: http://code.google.com/p/nfc-tools/source/detail?r=566 Updates issue 106 Status: Feedback Romuald: I am not sure about the option enum values. I took 0x02 thinking it would not hurt but am not really sure about that because I can see many 'holes' in the sequence.
This commit is contained in:
parent
b1f4c38f8f
commit
a5676ecd94
9 changed files with 34 additions and 57 deletions
|
|
@ -9,7 +9,7 @@ Fixes:
|
|||
Improvments:
|
||||
- libnfc: rearrange source code
|
||||
- libnfc: enhance documentation
|
||||
- libnfc: add regression tests (not much as expected but its here!)
|
||||
- libnfc: add regression tests (not as much as expected but its here!)
|
||||
- build: configure script now supports --with-drivers option instead of --disable-pcsclite and --disable-libusb (see --help)
|
||||
- nfc-mfultralight: we now can write OTP bytes if user want to
|
||||
|
||||
|
|
@ -19,7 +19,9 @@ Changes:
|
|||
- API: new function nfc_initiator_list_passive_targets() to list available targets in field
|
||||
- API: new nfc_perror(), nfc_strerror() and nfc_strerror_r() functions to handle errors
|
||||
- API: new types: nfc_target_type_t and nfc_target_t
|
||||
- API: add configuration option to enable/disable auto iso14443-4 mode.
|
||||
- API: new configuration option NDO_AUTO_ISO14443_4 to enable/disable auto iso14443-4 mode.
|
||||
- API: new configuration option NDO_EASY_FRAMING to enable/disable auto frames encapsulation and chaining
|
||||
- API: nfc_initiator_transceive_dep_bytes() has been removed (use NDO_EASY_FRAMING instead)
|
||||
- API: (experimental) new nfc_initiator_poll_targets() which allow to use hardware polling function
|
||||
- examples: add draft of a new example: nfc-sam. It tests the comunication with a connected SAM (Secure Access Module)
|
||||
- examples: add new example to show how to use new polling function
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue