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 7bd5f890..1fc01976 100644 --- a/src/system_fsm/booting.cpp +++ b/src/system_fsm/booting.cpp @@ -62,7 +62,8 @@ auto Booting::entry() -> void { } ESP_LOGI(kTag, "starting bluetooth"); - sBluetooth.reset(new drivers::Bluetooth()); + sBluetooth.reset(new drivers::Bluetooth(sNvs.get())); + // sBluetooth->Enable(); // At this point we've done all of the essential boot tasks. Start remaining // state machines and inform them that the system is ready. |
