-
Notifications
You must be signed in to change notification settings - Fork 2
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
Over The Air device config feature #48
Merged
Merged
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
95e628c
Added remote update function and minimally working
t-sasatani e88e208
Formatting
t-sasatani ada51cb
ROI/gain/LED value remote update prototype working
t-sasatani e705b69
allow multi-word value transfer with headers
t-sasatani 7ad77ad
device ID-based over-the-air update
t-sasatani afdbc97
Add device commands (mainly for restart)
t-sasatani a560a48
Isolate models in a separate file
t-sasatani 7ac453e
add devupdate model tests
t-sasatani c1ea61a
Fix model tests
t-sasatani 8782cd2
update format
t-sasatani 9fff132
moved cmd constants to model file
t-sasatani 3fe1108
fix definitions
t-sasatani 3bbed78
Fix remote reboot command
t-sasatani 41b50fe
minor fix for model and modeltest
t-sasatani d4212a2
bundle ota update with yaml
t-sasatani 70d806a
Add tests for device update
t-sasatani 212df47
Add controller docs (mostly just placeholder)
t-sasatani 3721008
update docs index, add update device tests
t-sasatani a5bceb0
remove duplicate functions
t-sasatani b913814
add pyserial to intersphinx mapping
sneakers-the-rat 1ed6e46
Specify return type of FTDI devices
t-sasatani d9543f8
Update command key validation
t-sasatani a0116b6
Update update target not found error message
t-sasatani 8214b60
separate device command, specify update device as key, snake case
t-sasatani fa1abfb
move FTDI constants to module, change UpdateTarget type
t-sasatani 4db38cf
change update config to batch (name)
t-sasatani ef6d1db
add experimental feature note
t-sasatani e3bba77
make update test with parameterized fixtures
t-sasatani 7e0a836
Merge branch 'main' into feature_ir_update
t-sasatani 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
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
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.
this happens to me literally all the time where i want to split a line for aesthetic reasons and then black is like "no you should not have split that line." it borders on malicious compliance and i imagine
black
having a smile on its face every time it does this like "you were the one who set the line width!"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.
Oh, I was fully trusting
black
and wasn't even paying attention to the changes it made lol. Didn't know it was making my code ugly!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.
i think it is literally equivalent to the interpreter after parsing (?), but at the same time there is something bad about
("start " "end")
vs"start end"
that feels like the machines are taking revenge when they make it happen.