Search found 3 matches
- Sat Aug 17, 2024 7:08 pm
- Forum: General Discussion
- Topic: gatt client with 128 bits service uuid
- Replies: 3
- Views: 815
Re: gatt client with 128 bits service uuid
The example gatt_demo.c use 16 bits uuid: #define REMOTE_SERVICE_UUID 0x00FF #define REMOTE_NOTIFY_CHAR_UUID 0xFF01 ... static esp_bt_uuid_t remote_filter_service_uuid = { .len = ESP_UUID_LEN_16, .uuid = {.uuid16 = REMOTE_SERVICE_UUID,}, }; static esp_bt_uuid_t remote_filter_char_uuid = { .len = ESP...
- Sat Aug 17, 2024 6:14 pm
- Forum: General Discussion
- Topic: gatt client with 128 bits service uuid
- Replies: 3
- Views: 815
Re: gatt client with 128 bits service uuid
So, how to modify correctly #define declaration?
- Sat Aug 17, 2024 7:48 am
- Forum: General Discussion
- Topic: gatt client with 128 bits service uuid
- Replies: 3
- Views: 815
gatt client with 128 bits service uuid
Hello! I'm trying to connect to a beacon with 128 bits service and char uuids. I'm getting warnings below : Screenshot from 2024-08-17 10-39-37.png and the results are: I (2001) GATTC_DEMO: I (2011) GATTC_DEMO: 7c d9 f4 14 fe b1 I (2011) GATTC_DEMO: searched Adv Data Len 31, Scan Response Len 27 I (...