Added the basic structure to work with PN532 and did some refactoring #6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I added the basic file structure and files to work with the PN532. Currently only reading passiv targets is supported but adding more commands is just simple porting from already existent PN532 implementations into the
pn532.dart
file. All the underlying communication and encoding is already tested and implemented in thespi_impl.dart
andi2c_impl.dart
files.If anyone needs a UART implementation feel free to add one by extending the
BaseProtocol
class defined inbase_protocol.dart
. I would always recommend using some more wires and go with the much more reliable SPI protocol and using at least the IRQ pin.Also currently the reset procedure defined in the
BaseProtocol
doesn't seem to actual reset the board but I don't know why at the moment maybe somebody can contribute to this.