-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: Add function for parsing the firmware version info into a named tuple. * fix: Fix io errors due to driver not polling ACK frame correctly. Fixes #22 Long commands do not ack immediately so we are supposed to poll for the ack frame. quick2wire throws an error if the read is not acked though so we need to catch those errors and poll again after a brief wait. If we timeout we return an error code instead of raising an exception. * doc: Update README to indicate using the 5v pin on the raspberry pi is safe. Bump version minor. Correct email in packaging step.
- Loading branch information
1 parent
834b621
commit 5d51007
Showing
4 changed files
with
66 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,9 @@ | |
|
||
setuptools.setup( | ||
name="pn532pi", | ||
version="1.6", | ||
version="1.7", | ||
author="gassajor000", | ||
author_email="lgassjsg@example.com", | ||
author_email="[email protected].com", | ||
description="PN532 library for Raspberry Pi", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
|