You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0063]: missing field `cpfd` in initializer of `ble_gatt_chr_def`
--> C:\Users\ryankopf\.cargo\registry\src\index.crates.io-6f17d22bba15001f\esp32-nimble-0.6.0\src\server\ble_service.rs:52:19
|
52 | .push(esp_idf_sys::ble_gatt_chr_def {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `cpfd`
For more information about this error, try `rustc --explain E0063`.
error: could not compile `esp32-nimble` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
It seems a new field has been added to this struct. I got around it by adding cpfd: core::ptr::null_mut(), but I'm sure this is not ideal in the long run.
The text was updated successfully, but these errors were encountered:
It seems a new field has been added to this struct. I got around it by adding
cpfd: core::ptr::null_mut(),
but I'm sure this is not ideal in the long run.The text was updated successfully, but these errors were encountered: