Question
STM32WB55 - BLE Handle advertised and received
Below is the event occurring upon connection, in this event there is the Connection_Handle, this is the number I believe is identifying this specific connection.
Event upon connection:
typedef PACKED(struct)
{
...
uint16_t Connection_Handle; // <<<<<THIS
...
} hci_le_connection_complete_event_rp0;From my understanding, this number is being advertised to the master (prior the connection)
My question is how can I read it where is it placed in the ADV data?
Thanks