Search found 6 matches

by mohamed.elsabagh
Thu Mar 25, 2021 2:28 pm
Forum: ESP-IDF
Topic: Updating remote device failed
Replies: 4
Views: 2681

Re: Updating remote device failed

ok thanks for your help
by mohamed.elsabagh
Thu Mar 25, 2021 1:05 am
Forum: ESP-IDF
Topic: Updating remote device failed
Replies: 4
Views: 2681

Re: Updating remote device failed

But we were able to update several times before not only once, we more than one update and it gets the update.
by mohamed.elsabagh
Wed Mar 24, 2021 10:59 pm
Forum: ESP-IDF
Topic: Updating remote device failed
Replies: 4
Views: 2681

Updating remote device failed

Hello, we have few remote devices that were updating fine for some time now. recently when we try to update them we get an error "esp_https_ota: esp_ota_begin failed (ESP_ERR_OTA_PARTITION_CONFLICT)". Our partition table looks like that ``` # Espressif ESP32 Partition Table # Name, Type, SubType, Of...
by mohamed.elsabagh
Wed Apr 11, 2018 1:43 pm
Forum: ESP-IDF
Topic: Adding more than characteristic to same service
Replies: 4
Views: 5487

Re: Adding more than characteristic to same service

but shouldn't a profile according the BLE standard can hold more than one service?
by mohamed.elsabagh
Sat Apr 07, 2018 8:17 am
Forum: ESP-IDF
Topic: Adding more than characteristic to same service
Replies: 4
Views: 5487

Re: Adding more than characteristic to same service

Thanks so much, I had a look but still can't find how to add several service to the same profile ``` struct gatts_profile_inst { esp_gatts_cb_t gatts_cb; uint16_t gatts_if; uint16_t app_id; uint16_t conn_id; uint16_t service_handle; esp_gatt_srvc_id_t service_id; uint16_t char_handle; esp_bt_uuid_t ...
by mohamed.elsabagh
Wed Apr 04, 2018 1:50 am
Forum: ESP-IDF
Topic: Adding more than characteristic to same service
Replies: 4
Views: 5487

Adding more than characteristic to same service

Hello, I am using esp32 esp-idf GATT server example, I would like to add more than one service to the same profile and more than characteristic to the same service, is there is an example how can this be done?