-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Rosen, Michael R <michael.r.rosen@intel.com>
- Loading branch information
Rosen, Michael R
committed
May 14, 2020
1 parent
931dd6b
commit ea7a0f7
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule controller
updated
23 files
+80 −0 | src/config.h | |
+78 −0 | src/hal/alarm.cpp | |
+25 −0 | src/hal/alarm.h | |
+605 −288 | src/hal/motor.cpp | |
+39 −10 | src/hal/motor.h | |
+49 −0 | src/hal/sensor/adc.h | |
+48 −0 | src/hal/sensor/airflow.cpp | |
+18 −0 | src/hal/sensor/airflow.h | |
+61 −0 | src/hal/sensor/pressure.cpp | |
+18 −0 | src/hal/sensor/pressure.h | |
+0 −127 | src/hal/sensor/sensor.cpp | |
+0 −24 | src/hal/sensor/sensor.h | |
+9 −1 | src/hal/timer.cpp | |
+3 −1 | src/hal/timer.h | |
+57 −0 | src/hal/watchdog.cpp | |
+64 −17 | src/main.cpp | |
+766 −35 | src/modules/control.cpp | |
+11 −8 | src/modules/control.h | |
+2 −5 | src/modules/link.cpp | |
+270 −129 | src/modules/sensors.cpp | |
+94 −0 | src/util/alarm.cpp | |
+44 −0 | src/util/alarm.h | |
+38 −1 | src/util/debug.h |
Submodule ui
updated
9 files
+1 −1 | ovve_ui/display/ui_settings.py | |
+12 −13 | ovve_ui/display/widgets.py | |
+46 −27 | ovve_ui/ovve_ui.py | |
+9 −1 | ovve_ui/utils/comms_link.py | |
+20 −11 | ovve_ui/utils/comms_simulator.py | |
+27 −2 | ovve_ui/utils/in_packet.py | |
+5 −0 | ovve_ui/utils/out_packet.py | |
+6 −6 | ovve_ui/utils/params.py | |
+9 −7 | ovve_ui/utils/settings.py |