summaryrefslogtreecommitdiff
path: root/src/system_fsm
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2023-10-03 10:37:29 +1100
committerjacqueline <me@jacqueline.id.au>2023-10-03 10:37:29 +1100
commit7d5536e2abca61f503ed68521603bd30700a7e5e (patch)
treefc8b191a5d248a86de08a00d814359f335423e95 /src/system_fsm
parentf2bad894cdac88b94a358cebdb062f426b191d1b (diff)
downloadtangara-fw-7d5536e2abca61f503ed68521603bd30700a7e5e.tar.gz
Generalise the lvgl input driver in preparation for more input methods
Diffstat (limited to 'src/system_fsm')
-rw-r--r--src/system_fsm/booting.cpp26
1 files changed, 12 insertions, 14 deletions
diff --git a/src/system_fsm/booting.cpp b/src/system_fsm/booting.cpp
index 7914a5c3..08a1c083 100644
--- a/src/system_fsm/booting.cpp
+++ b/src/system_fsm/booting.cpp
@@ -4,39 +4,37 @@
* SPDX-License-Identifier: GPL-3.0-only
*/
+#include "system_fsm.hpp"
+
#include <stdint.h>
-#include "adc.hpp"
#include "assert.h"
-#include "audio_fsm.hpp"
-#include "battery.hpp"
-#include "bluetooth.hpp"
-#include "bluetooth_types.hpp"
-#include "core/lv_obj.h"
-#include "display_init.hpp"
#include "esp_err.h"
#include "esp_log.h"
-#include "event_queue.hpp"
#include "freertos/FreeRTOS.h"
#include "freertos/portmacro.h"
#include "freertos/projdefs.h"
#include "freertos/timers.h"
+
+#include "adc.hpp"
+#include "audio_fsm.hpp"
+#include "battery.hpp"
+#include "bluetooth.hpp"
+#include "bluetooth_types.hpp"
+#include "display_init.hpp"
+#include "event_queue.hpp"
#include "gpios.hpp"
-#include "lvgl/lvgl.h"
+#include "i2c.hpp"
#include "nvs.hpp"
-#include "relative_wheel.hpp"
#include "samd.hpp"
#include "service_locator.hpp"
#include "spi.hpp"
#include "system_events.hpp"
-#include "system_fsm.hpp"
#include "tag_parser.hpp"
+#include "touchwheel.hpp"
#include "track_queue.hpp"
#include "ui_fsm.hpp"
-#include "i2c.hpp"
-#include "touchwheel.hpp"
-
namespace system_fsm {
namespace states {