Definition of the general handler of Gap related events. More...
#include <Gap.h>
| Public Member Functions | |
| virtual void | onScanRequestReceived (const ScanRequestEvent &event) | 
| Called when an advertising device receive a scan response.  More... | |
| virtual void | onAdvertisingEnd (const AdvertisingEndEvent &event) | 
| Called when advertising ends.  More... | |
| virtual void | onAdvertisingReport (const AdvertisingReportEvent &event) | 
| Called when a scanner receives an advertising or a scan response packet.  More... | |
| virtual void | onScanTimeout (const ScanTimeoutEvent &event) | 
| Called when scan times out.  More... | |
| virtual void | onPeriodicAdvertisingSyncEstablished (const PeriodicAdvertisingSyncEstablishedEvent &event) | 
| Called when first advertising packet in periodic advertising is received.  More... | |
| virtual void | onPeriodicAdvertisingReport (const PeriodicAdvertisingReportEvent &event) | 
| Called when a periodic advertising packet is received.  More... | |
| virtual void | onPeriodicAdvertisingSyncLoss (const PeriodicAdvertisingSyncLoss &event) | 
| Called when a periodic advertising sync has been lost.  More... | |
| virtual void | onConnectionComplete (const ConnectionCompleteEvent &event) | 
| Called when connection attempt ends or an advertising device has been connected.  More... | |
| virtual void | onUpdateConnectionParametersRequest (const UpdateConnectionParametersRequestEvent &event) | 
| Called when the peer request connection parameters updates.  More... | |
| virtual void | onConnectionParametersUpdateComplete (const ConnectionParametersUpdateCompleteEvent &event) | 
| Called when connection parameters have been updated.  More... | |
| virtual void | onDisconnectionComplete (const DisconnectionCompleteEvent &event) | 
| Called when a connection has been disconnected.  More... | |
| virtual void | onReadPhy (ble_error_t status, connection_handle_t connectionHandle, phy_t txPhy, phy_t rxPhy) | 
| Function invoked when the current transmitter and receiver PHY have been read for a given connection.  More... | |
| virtual void | onPhyUpdateComplete (ble_error_t status, connection_handle_t connectionHandle, phy_t txPhy, phy_t rxPhy) | 
| Function invoked when the update process of the PHY has been completed.  More... | |
| virtual void | onDataLengthChange (connection_handle_t connectionHandle, uint16_t txSize, uint16_t rxSize) | 
| Function invoked when the connections changes the maximum number of octets that can be sent or received by the controller in a single packet.  More... | |
| Protected Member Functions | |
| ~EventHandler () | |
| Prevent polymorphic deletion and avoid unnecessary virtual destructor as the Gap class will never delete the instance it contains.  More... | |
| 
 | protected | 
| 
 | virtual | 
Called when advertising ends.
Advertising ends when the process timeout or if it is stopped by the application or if the local device accepts a connection request.
| event | Advertising end event. | 
| 
 | virtual | 
Called when a scanner receives an advertising or a scan response packet.
| event | Advertising report. | 
| 
 | virtual | 
Called when connection attempt ends or an advertising device has been connected.
| event | Connection event. | 
| 
 | virtual | 
| 
 | virtual | 
Function invoked when the connections changes the maximum number of octets that can be sent or received by the controller in a single packet.
A single L2CAP packet can be fragmented across many such packets.
| connectionHandle | The handle of the connection that changed the size. | 
| txSize | Number of octets we can send on this connection in a single packet. | 
| rxSize | Number of octets we can receive on this connection in a single packet. | 
| 
 | virtual | 
| 
 | virtual | 
Called when a periodic advertising packet is received.
| event | Periodic advertisement event. | 
| 
 | virtual | 
Called when first advertising packet in periodic advertising is received.
| event | Periodic advertising sync event. | 
| 
 | virtual | 
Called when a periodic advertising sync has been lost.
| event | Details of the event. | 
| 
 | virtual | 
Function invoked when the update process of the PHY has been completed.
The process can be initiated by a call to the function setPhy, the local bluetooth subsystem or the peer.
| status | Status of the operation: BLE_ERROR_NONE in case of success or an appropriate error code. | 
| connectionHandle | The handle of the connection on which the operation was made. | 
| txPhy | PHY used by the transmitter. | 
| rxPhy | PHY used by the receiver. | 
| 
 | virtual | 
Function invoked when the current transmitter and receiver PHY have been read for a given connection.
| status | Status of the operation: BLE_ERROR_NONE in case of success or an appropriate error code. | 
| connectionHandle | The handle of the connection for which the PHYs have been read. | 
| txPhy | PHY used by the transmitter. | 
| rxPhy | PHY used by the receiver. | 
| 
 | virtual | 
Called when an advertising device receive a scan response.
| event | Scan request event. | 
| 
 | virtual | 
| 
 | virtual | 
Called when the peer request connection parameters updates.
Application must accept the update with acceptConnectionParametersUpdate() or reject it with rejectConnectionParametersUpdate().
| event | The connection parameters requested by the peer. |