Files
carrotpilot/selfdrive/locationd/SConscript

22 lines
505 B
Python
Raw Normal View History

2025-12-03 10:28:27 +09:00
Import('env', 'rednose')
2023-09-27 15:45:31 -07:00
# build ekf models
rednose_gen_dir = 'models/generated'
rednose_gen_deps = [
"models/constants.py",
]
pose_ekf = env.RednoseCompileFilter(
target='pose',
filter_gen_script='models/pose_kf.py',
output_dir=rednose_gen_dir,
extra_gen_artifacts=[],
gen_script_deps=rednose_gen_deps,
)
2023-09-27 15:45:31 -07:00
car_ekf = env.RednoseCompileFilter(
target='car',
filter_gen_script='models/car_kf.py',
output_dir=rednose_gen_dir,
extra_gen_artifacts=[],
gen_script_deps=rednose_gen_deps,
)