Abstract common events + event cleanup (#1129)

* too many if

* unused

* whitespace

* key

* sefldrive/car/*

* no more gctx

* lower

* start abstracting common events

* all cars

* start small

* all cars

* reverse gear

* wrongCarMode

* wrongGear

* espDisabled

* steerUnvailable

* make linter happy

* c isn't used

* fix esp_disabled in VW

* update ref

* more red

* more cleanup

* fix subaru

* update ref
This commit is contained in:
Adeeb
2020-02-20 16:22:25 -08:00
committed by GitHub
parent d2970fd2da
commit e8cb6ea06a
33 changed files with 97 additions and 196 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
Import('env', 'arch', 'common', 'messaging', 'gpucommon', 'visionipc', 'cereal')
src = ['ui.cc', 'paint.cc', '#phonelibs/nanovg/nanovg.c']
libs = [common, 'zmq', 'czmq', 'capnp', 'capnp_c', 'm', cereal, 'json', messaging, gpucommon, visionipc]
libs = [common, 'zmq', 'czmq', 'capnp', 'capnp_c', 'm', cereal, messaging, gpucommon, visionipc]
if arch == "aarch64":
src += ['sound.cc', 'slplay.c']
@@ -11,7 +11,7 @@ else:
src += ['linux.cc']
libs += ['pthread', 'glfw']
linkflags = []
env.Program('_ui', src,
LINKFLAGS=linkflags,
LIBS=libs)