-
Notifications
You must be signed in to change notification settings - Fork 10.9k
teleop in connect #37796
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
Closed
Closed
teleop in connect #37796
Changes from 14 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
f82647c
cherry picked changes related to teleop from good-remote-body
stefpi 0c9b62d
remove changes that were split into new pr
stefpi d79d6a9
sound bites over datachannel instead of /sound
stefpi 101a73a
move ssl stuff to different branch
stefpi 15ef660
clean up webrtcd
stefpi ba6f8df
cleanup
stefpi c096646
clean: remove 2-way audio, use existing cereal bridge better in webrtcd
stefpi 4e183e8
clean up webrtcd
stefpi b0faa2e
clean diff
stefpi 04112bc
fix sound bites
stefpi 42b1e3d
teleoprtc pin to master commit
stefpi 04bd406
Merge branch 'master' into connect-teleop
stefpi b1333cf
remove webrtcAudio
stefpi 3440fd4
1 stream encode packet, simplify video stream
stefpi f07c1a4
clean encoder stream thread
stefpi a2aab55
inline clock sync util
stefpi a18aedb
update test
stefpi ff0c2e3
clean diff
stefpi 3d35313
change gitmodules back to master teleoprtc
stefpi 43cef76
don't start DM on body
stefpi cba8bd3
direct connection cors
stefpi 24033bd
remove unused param
stefpi 9c2106a
Merge branch 'master' into connect-teleop
stefpi c5c6c1f
move ignore dmonitoring to seperate PR
stefpi ee5eec6
Merge branch 'master' into connect-teleop
stefpi 0945c97
update log.capnp numbers
stefpi 80a9bbe
Merge branch 'master' into connect-teleop
stefpi 1f12b94
better stream shutdown + replace to resolve commIssues
stefpi 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,15 @@ | ||
| import json | ||
|
|
||
| def clock_sync_build_json(payload: dict) -> str | None: | ||
| import time as _time | ||
| data = payload.get("data", {}) | ||
| if data.get("action") != "ping": | ||
| raise ValueError | ||
| return json.dumps({ | ||
| "type": "clockSync", | ||
| "data": { | ||
| "action": "pong", | ||
| "browserSendTime": data.get("browserSendTime"), | ||
| "deviceTime": _time.time() * 1000, # noqa: TID251 | ||
| } | ||
| }) |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
if these are no longer used should they be removed or deprecated?