forked from commaai/openpilot
-
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.
- Loading branch information
Showing
282 changed files
with
2,381 additions
and
23,642 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Join the Discord | ||
url: https://discord.comma.ai | ||
about: The community Discord is for both openpilot development and experience discussion | ||
- name: Report model bugs | ||
url: https://github.com/commaai/openpilot/discussions/categories/model-feedback | ||
about: Provide feedback for the driving or driver monitoring models | ||
- name: Discussions | ||
url: https://github.com/commaai/openpilot/discussions | ||
about: For questions and general discussion about openpilot | ||
url: https://discord.com/channels/469524606043160576/1254834193066623017 | ||
about: Feedback for the driving and driver monitoring models goes in the #driving-feedback in Discord | ||
- name: Community Wiki | ||
url: https://github.com/commaai/openpilot/wiki | ||
about: Check out our community wiki | ||
- name: Community Discord | ||
url: https://discord.comma.ai | ||
about: Check out our community discord |
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
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,14 @@ | ||
from cereal import messaging | ||
|
||
|
||
LOCATION1 = (32.7174, -117.16277) | ||
LOCATION2 = (32.7558, -117.2037) | ||
|
||
LLK_DECIMATION = 10 | ||
RENDER_FRAMES = 15 | ||
DEFAULT_ITERATIONS = RENDER_FRAMES * LLK_DECIMATION | ||
|
||
|
||
def generate_liveLocationKalman(location=LOCATION1): | ||
msg = messaging.new_message('liveLocationKalman') | ||
msg.liveLocationKalman.positionGeodetic = {'value': [*location, 0], 'std': [0., 0., 0.], 'valid': True} | ||
msg.liveLocationKalman.positionECEF = {'value': [0., 0., 0.], 'std': [0., 0., 0.], 'valid': True} | ||
msg.liveLocationKalman.calibratedOrientationNED = {'value': [0., 0., 0.], 'std': [0., 0., 0.], 'valid': True} | ||
msg.liveLocationKalman.velocityCalibrated = {'value': [0., 0., 0.], 'std': [0., 0., 0.], 'valid': True} | ||
msg.liveLocationKalman.status = 'valid' | ||
msg.liveLocationKalman.gpsOK = True | ||
def generate_livePose(): | ||
msg = messaging.new_message('livePose') | ||
meas = {'x': 0.0, 'y': 0.0, 'z': 0.0, 'xStd': 0.0, 'yStd': 0.0, 'zStd': 0.0, 'valid': True} | ||
msg.livePose.orientationNED = meas | ||
msg.livePose.velocityDevice = meas | ||
msg.livePose.angularVelocityDevice = meas | ||
msg.livePose.accelerationDevice = meas | ||
msg.livePose.inputsOK = True | ||
msg.livePose.posenetOK = True | ||
msg.livePose.sensorsOK = True | ||
return msg |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
if [ -z "$BASEDIR" ]; then | ||
BASEDIR="/data/openpilot" | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
export OMP_NUM_THREADS=1 | ||
export MKL_NUM_THREADS=1 | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
exec ./launch_chffrplus.sh |
Submodule opendbc_repo
updated
147 files
Submodule panda
updated
6 files
+1 −1 | README.md | |
+2 −1 | __init__.py | |
+75 −8 | board/stm32h7/interrupt_handlers.h | |
+21 −25 | python/__init__.py | |
+13 −13 | python/spi.py | |
+11 −0 | python/utils.py |
Oops, something went wrong.