mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-08-18 22:33:42 +08:00
14318d2f09
# Conflicts: # .github/labeler.yaml # .github/workflows/auto_pr_review.yaml # .github/workflows/docs.yaml # .github/workflows/release.yaml # .github/workflows/repo-maintenance.yaml # .github/workflows/tests.yaml # .github/workflows/ui_preview.yaml # README.md # SConstruct # conftest.py # docs/CARS.md # msgq_repo # opendbc_repo # openpilot/cereal/messaging/tests/validate_sp_cereal_upstream.py # openpilot/common/api.py # openpilot/common/hardware/hw.py # openpilot/common/version.py # openpilot/selfdrive/assets/fonts/Audiowide-Regular.ttf # openpilot/selfdrive/assets/sounds/prompt_single_high.wav # openpilot/selfdrive/assets/sounds/prompt_single_low.wav # openpilot/selfdrive/car/card.py # openpilot/selfdrive/car/helpers.py # openpilot/selfdrive/car/tests/test_car_interfaces.py # openpilot/selfdrive/car/tests/test_cruise_speed.py # openpilot/selfdrive/controls/lib/desire_helper.py # openpilot/selfdrive/controls/lib/longcontrol.py # openpilot/selfdrive/controls/plannerd.py # openpilot/selfdrive/controls/radard.py # openpilot/selfdrive/controls/tests/test_longcontrol.py # openpilot/selfdrive/modeld/compile_warp.py # openpilot/selfdrive/modeld/modeld.py # openpilot/selfdrive/monitoring/policy.py # openpilot/selfdrive/monitoring/test_monitoring.py # openpilot/selfdrive/selfdrived/events.py # openpilot/selfdrive/selfdrived/selfdrived.py # openpilot/selfdrive/ui/layouts/onboarding.py # openpilot/selfdrive/ui/mici/layouts/onboarding.py # openpilot/selfdrive/ui/soundd.py # openpilot/selfdrive/ui/tests/diff/replay.py # openpilot/selfdrive/ui/translations/app.pot # openpilot/system/athena/athenad.py # openpilot/system/athena/manage_athenad.py # openpilot/system/hardware/hardwared.py # openpilot/system/loggerd/config.py # openpilot/system/manager/github_runner.sh # openpilot/system/manager/manager.py # openpilot/system/updated/updated.py # panda # pyproject.toml # scripts/lint/lint.sh # system/manager/process_config.py # system/statsd.py # tinygrad_repo # tools/release/build_release.sh # tools/release/build_stripped.sh # uv.lock
73 lines
3.0 KiB
Python
Executable File
73 lines
3.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
import openpilot.cereal.messaging as messaging
|
|
from openpilot.common.params import Params
|
|
from openpilot.common.swaglog import cloudlog
|
|
from opendbc.car.structs import car
|
|
from openpilot.system.micd import SAMPLE_RATE, SAMPLE_BUFFER
|
|
|
|
FEEDBACK_MAX_DURATION = 10.0
|
|
ButtonType = car.CarState.ButtonEvent.Type
|
|
|
|
|
|
def main():
|
|
params = Params()
|
|
pm = messaging.PubMaster(['userBookmark', 'audioFeedback'])
|
|
sm = messaging.SubMaster(['rawAudioData', 'bookmarkButton', 'carState', 'selfdriveStateSP'])
|
|
should_record_audio = False
|
|
block_num = 0
|
|
waiting_for_release = False
|
|
early_stop_triggered = False
|
|
|
|
while True:
|
|
sm.update()
|
|
should_send_bookmark = False
|
|
|
|
# TODO: https://github.com/commaai/openpilot/issues/36015
|
|
# only allow the LKAS button to record feedback when MADS is disabled
|
|
if False and sm.updated['carState'] and sm['carState'].canValid and not sm['selfdriveStateSP'].mads.available:
|
|
for be in sm['carState'].buttonEvents:
|
|
if be.type == ButtonType.lkas:
|
|
if be.pressed:
|
|
if not should_record_audio:
|
|
if params.get_bool("RecordAudioFeedback"): # Start recording on first press if toggle set
|
|
should_record_audio = True
|
|
block_num = 0
|
|
waiting_for_release = False
|
|
early_stop_triggered = False
|
|
cloudlog.info("LKAS button pressed - starting 10-second audio feedback")
|
|
else:
|
|
should_send_bookmark = True # immediately send bookmark if toggle false
|
|
cloudlog.info("LKAS button pressed - bookmarking")
|
|
elif should_record_audio and not waiting_for_release: # Wait for release of second press to stop recording early
|
|
waiting_for_release = True
|
|
elif waiting_for_release: # Second press released
|
|
waiting_for_release = False
|
|
early_stop_triggered = True
|
|
cloudlog.info("LKAS button released - ending recording early")
|
|
|
|
if should_record_audio and sm.updated['rawAudioData']:
|
|
raw_audio = sm['rawAudioData']
|
|
msg = messaging.new_message('audioFeedback', valid=True)
|
|
msg.audioFeedback.audio.data = raw_audio.data
|
|
msg.audioFeedback.audio.sampleRate = raw_audio.sampleRate
|
|
msg.audioFeedback.blockNum = block_num
|
|
block_num += 1
|
|
if (block_num * SAMPLE_BUFFER / SAMPLE_RATE) >= FEEDBACK_MAX_DURATION or early_stop_triggered: # Check for timeout or early stop
|
|
should_send_bookmark = True # send bookmark at end of audio segment
|
|
should_record_audio = False
|
|
early_stop_triggered = False
|
|
cloudlog.info("10-second recording completed or second button press - stopping audio feedback")
|
|
pm.send('audioFeedback', msg)
|
|
|
|
if sm.updated['bookmarkButton']:
|
|
cloudlog.info("Bookmark button pressed!")
|
|
should_send_bookmark = True
|
|
|
|
if should_send_bookmark:
|
|
msg = messaging.new_message('userBookmark', valid=True)
|
|
pm.send('userBookmark', msg)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|