Open bvernoux opened 4 years ago
In commit https://github.com/hydrabus/hydrafw_hydranfc_shield_v2/commit/7f88198edc4620c9ccccfb4e529ad342185773f0 (big thanks to @gvinet contributions) BBIO READER mode for NFC-B/V has been added with some nice python3 examples to use/test BBIO ISO14443A & B BBIO_NFC_CMD_SEND_BITS is TODO
TODO implement BBIO_NFC_CMD_SEND_BITS https://github.com/hydrabus/hydrafw_hydranfc_shield_v2/blob/master/src/hydranfc_v2/hydranfc_v2_bbio_reader.c#L237
Any progress on BBIO_NFC_CMD_SEND_BITS?
Any progress on BBIO_NFC_CMD_SEND_BITS?
If you are interested by this feature your contribution (with a PR) is welcome as so far I have not seen any feedback for that feature and it is not in development on my side (as I'm busy with tons of other things)
Hi,
Yes, I am interested in and I started looking at how to implement this. From my side a bit-oriented communication is a crucial. I had a need to set up a scenario when L4/L3 traffic is mixed in and I failed with HydraNFC... I will keep you updated.
Hi,
Yes, I am interested in and I started looking at how to implement this. From my side a bit-oriented communication is a crucial. I had a need to set up a scenario when L4/L3 traffic is mixed in and I failed with HydraNFC... I will keep you updated.
Do you have any update ?
See commit 7ddfa04 1) Modify BBIO_NFC_CMD_SEND_BITS to use a generic command to send bits as rfalNfcaPollerCheckPresence() is specific to NFC-A 2) Modify BBIO_NFC_CMD_SEND_BYTES to do not use hard coded value for fwt (Frame Waiting Time in 1/fc) parameter 3) Add BBIO READER mode for NFC-V (see code BBIO_NFC_SET_MODE_ISO_15693 TODO) 4) Add BBIO READER mode for NFC-B (BBIO_NFC_SET_MODE_ISO_14443B to be created) 5) Cleanup code remove comments ...