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

This commit is contained in:
Abhinav Kudnar
2024-10-01 20:00:28 +08:00
parent 03462b6686
commit 87dd8bdc03
+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;
}