fix(nimble): Fix the sequence of ll and host transport init

This commit is contained in:
Abhinav Kudnar
2024-10-03 15:23:03 +08:00
parent 8b3951670c
commit 73812591bf
+2 -1
View File
@@ -122,9 +122,10 @@ esp_err_t esp_nimble_init(void)
os_msys_init();
#endif
ble_transport_ll_init();
/* Initialize the host */
ble_transport_hs_init();
ble_transport_ll_init();
return ESP_OK;
}