-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V12 compatability and Amiibo-NFC support. #110
Open
Poohl
wants to merge
47
commits into
mart1nro:master
Choose a base branch
from
Poohl:amiibo_edits
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 45 commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
3abcdb0
fixed packet-flooding
6f4c41d
Amiibo read support
abdc145
working properly w reconnect
Poohl 53a99a5
NFC Amiibo cleanup
Poohl 8df9d0c
typos
Poohl 5d7bfe6
rename MCU and additional flooding mitigation
Poohl c150d2a
initial writeup
Poohl 4d45f89
no bins
Poohl 18eba52
adapted NFCTag everywhere
Poohl 34889d0
Writing until all data is transfered until EOF
Poohl f0d0399
Merge master into amiibo_writing
Poohl 126be1d
Merge remote-tracking branch 'upstream/master' into amiibo_edits
Poohl 234de28
fix bluetooth scripts
Poohl f06f447
dirty hacks doing gods work
Poohl 7d20452
cleand up hacky write support
Poohl ee63a00
another proxy script
Poohl ff5dff6
fix bluetooth scripts
Poohl 7704317
another proxy script
Poohl d488352
cleaned up amiibo writing
Poohl 415e5ee
removed NFC cache, remove now works but switch doesn't care
Poohl 2bf640e
full writing support with hacked remove
Poohl c2d10ac
Fixed screwup when registering multimple amiibo
Poohl 075b895
proper write lock implementation
Poohl 9d74b18
long amiibos
Poohl f5f93d9
Make Pairing work again on V12
Poohl 4ccc3b2
documentation on V12 workaround
Poohl 8d14a44
automated unpairing
Poohl 7470666
Live wireshark capture on remote host
Poohl 3b98110
capturing pairing
Poohl 9712bc7
HCI message reader
Poohl cbb7700
optional flow control
Poohl cd58968
Updated and improved scripts
Poohl fca0c68
flow control and refactoring
Poohl 1899967
joycon_ip_proxy doc
Poohl f8162d7
joyconproxy: @Yamakaky's buffering and conversion to UDP
Poohl a4fbdbf
The Grand V12 Fix
Poohl 35ab59e
Full automation, transport level fix
Poohl af940b8
disabled input checking after pairing
Poohl f0ef7b4
V12 touchup and finalisation
Poohl 0b79bf7
housekeeping
Poohl 642b98a
Merge branch amiibo_writing and V12_fixes into amiibo_edits
Poohl 548b258
updated Doc
Poohl d23fe8e
Fixed my semaphore, added Flow-control by default
Poohl 666c523
removed MAC change code, updated SDP warning
Poohl 20b5b62
better doc, automated leave pairing speedup, class check
Poohl 1d1ccef
Some small fixes to README
kindfulkirby 3e80cb3
Merge pull request #9 from kindfulkirby/patch-1
Poohl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -132,3 +132,8 @@ dmypy.json | |
# Pyre type checker | ||
.pyre/ | ||
|
||
# Ubuntu | ||
.Trash-*/ | ||
|
||
# binarys or dumps | ||
*.bin |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
delay_override = False | ||
delay = 1/15 | ||
|
||
async def debug(*args): | ||
global delay_override | ||
global delay | ||
if len(args) > 0: | ||
delay_override = True | ||
delay = 1/float(args[0]) | ||
|
||
def get_delay(old): | ||
return delay if delay_override else old |
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you mean to leave this in the readme for the PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, that's just there because ppl got confused with what Readme is up to date for what branch.
Just tell me and I'll remove it.