diff options
Diffstat (limited to 'src/system_fsm/booting.cpp')
| -rw-r--r-- | src/system_fsm/booting.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/system_fsm/booting.cpp b/src/system_fsm/booting.cpp index 888ce5d3..b166a02c 100644 --- a/src/system_fsm/booting.cpp +++ b/src/system_fsm/booting.cpp @@ -89,7 +89,8 @@ auto Booting::entry() -> void { sServices->collator(locale::CreateCollator()); ESP_LOGI(kTag, "init bluetooth"); - sServices->bluetooth(std::make_unique<drivers::Bluetooth>(sServices->nvs())); + sServices->bluetooth(std::make_unique<drivers::Bluetooth>( + sServices->nvs(), sServices->bg_worker())); sServices->bluetooth().SetEventHandler(bt_event_cb); if (sServices->nvs().OutputMode() == |
