BLE event code

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
FaBi_2763241
Level 4
Level 4
10 likes given 5 likes given First like received

Hello

what BLE event is representing code 0x10012 ?

I am using a PSOC 6 with the PDL middleware library, in the file cy_ble_stack.h the general events listed with prefix 0x100 are shown from 0x1000 to 0x1004, then those with prefix 0x200 and so on. I have seen this code event popping up in uart terminal while debugging, just between a connection and the discovery while running in central role from PSOC6.

Thanks.

Fausto

0 Likes
1 Solution
Yugandhar
Moderator
Moderator
Moderator
500 solutions authored 1000 replies posted 5 likes given

Hello Fausto,

The event 0x10012 is service specific event which can be found in "cy_ble_event_handler.h" file in PDL-->middleware-->BLE. The code corresponds to "CY_BLE_EVT_GATTC_DISC_SKIPPED_SERVICE" defines that in the GATT Client - The service (not defined in the GATT database) was found during the server device discovery and the discovery procedure skips that service.

Please refer to this event in cy_ble_event_handler.h for more information.

Thanks,

P Yugandhar.

View solution in original post

2 Replies
Yugandhar
Moderator
Moderator
Moderator
500 solutions authored 1000 replies posted 5 likes given

Hello Fausto,

The event 0x10012 is service specific event which can be found in "cy_ble_event_handler.h" file in PDL-->middleware-->BLE. The code corresponds to "CY_BLE_EVT_GATTC_DISC_SKIPPED_SERVICE" defines that in the GATT Client - The service (not defined in the GATT database) was found during the server device discovery and the discovery procedure skips that service.

Please refer to this event in cy_ble_event_handler.h for more information.

Thanks,

P Yugandhar.

Thank you P Yugandhar

that explains it.

Regards

Fausto

0 Likes