mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-27 17:02:04 +08:00
27e12ccad7
======================== * Based on latest openpilot 0.7.8 devel. * Added "Reset DP Settings" button. (Thanks to @LOVEChen) * Alert messages changed to concept UI alike design. * Added ability to execute reset_update.sh when press "Exit" button once manager returned errors.
7 lines
278 B
Python
7 lines
278 B
Python
Import('env', 'cython_dependencies')
|
|
|
|
env.Command(['simple_kalman_impl.so'],
|
|
cython_dependencies + ['simple_kalman_impl.pyx', 'simple_kalman_impl.pxd', 'simple_kalman_setup.py'],
|
|
"cd common/kalman && python3 simple_kalman_setup.py build_ext --inplace")
|
|
|