mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-21 23:33:54 +08:00
* Update ref
* Compiles
* compiles
* Refactor rest of libs
* import all
* small fiex
* cleanup import
* Need msgq simlink too
* Add to openpilot docker too
* try repo
* Updates
* Fix lint
* fix docs
* Try blank slate
* Revert "Try blank slate"
This reverts commit f078ce04acacfe115c19e23e86038b01e2b84a6d.
* Maybe scons needs this to clear cache
* fix tests
* Disable test for now
* Update SConstruct
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
* Fix whitespace
* Write skip normal
* small fixes
* add test path
* Revert repo
* linting
* whitespace
* Bump msgq
---------
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
old-commit-hash: e70dc90a45
18 lines
466 B
Python
18 lines
466 B
Python
Import('env', 'arch', 'common', 'messaging')
|
|
|
|
sensors = [
|
|
'sensors/i2c_sensor.cc',
|
|
'sensors/bmx055_accel.cc',
|
|
'sensors/bmx055_gyro.cc',
|
|
'sensors/bmx055_magn.cc',
|
|
'sensors/bmx055_temp.cc',
|
|
'sensors/lsm6ds3_accel.cc',
|
|
'sensors/lsm6ds3_gyro.cc',
|
|
'sensors/lsm6ds3_temp.cc',
|
|
'sensors/mmc5603nj_magn.cc',
|
|
]
|
|
libs = [common, messaging, 'pthread']
|
|
if arch == "larch64":
|
|
libs.append('i2c')
|
|
env.Program('sensord', ['sensors_qcom2.cc'] + sensors, LIBS=libs)
|