forked from openmv/micropython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes: - Add ISO7816, APDU and SE05x package. - Add support for Opta Expansion protocol. Signed-off-by: iabdalkader <[email protected]>
- Loading branch information
1 parent
68f1c20
commit bab6a01
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule arduino-lib
updated
10 files
+2 −2 | .github/workflows/python-linter.yml | |
+91 −0 | lib/opta/example.py | |
+6 −0 | lib/opta/manifest.py | |
+444 −0 | lib/opta/opta.py | |
+40 −0 | lib/se05x/examples/sign_verify.py | |
+94 −0 | lib/se05x/examples/write_read_verify.py | |
+6 −0 | lib/se05x/manifest.py | |
+22 −0 | lib/se05x/se05x/__init__.py | |
+389 −0 | lib/se05x/se05x/iso7816.py | |
+253 −0 | lib/se05x/se05x/se05x.py |