diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-11-12 19:14:09 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-11-12 19:14:09 +1100 |
| commit | 8a0a167adbf3d9b6f8b6f16aaf20ca39ad5549de (patch) | |
| tree | 02b6cf23f591915747ec2994381854a79979c4a0 /src/system_fsm/booting.cpp | |
| parent | 8471046a95ab9e00f7d42b56dbbc9ce3e5b424b9 (diff) | |
| download | tangara-fw-8a0a167adbf3d9b6f8b6f16aaf20ca39ad5549de.tar.gz | |
Convert the main menu screen to lua lol
Diffstat (limited to 'src/system_fsm/booting.cpp')
| -rw-r--r-- | src/system_fsm/booting.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/system_fsm/booting.cpp b/src/system_fsm/booting.cpp index 53288dbd..e7080e9b 100644 --- a/src/system_fsm/booting.cpp +++ b/src/system_fsm/booting.cpp @@ -6,6 +6,7 @@ #include "collation.hpp" #include "haptics.hpp" +#include "spiffs.hpp" #include "system_fsm.hpp" #include <stdint.h> @@ -71,6 +72,7 @@ auto Booting::entry() -> void { tasks::Worker::Start<tasks::Type::kBackgroundWorker>()}); ESP_LOGI(kTag, "installing remaining drivers"); + drivers::spiffs_mount(); sServices->samd(std::unique_ptr<drivers::Samd>(drivers::Samd::Create())); sServices->nvs( std::unique_ptr<drivers::NvsStorage>(drivers::NvsStorage::OpenSync())); |
