mirror of https://github.com/ARMmbed/mbed-os.git
parent
5598958c6d
commit
76624ad6ec
|
@ -1142,9 +1142,14 @@ public:
|
||||||
virtual void onReadPhy(
|
virtual void onReadPhy(
|
||||||
ble_error_t status,
|
ble_error_t status,
|
||||||
Handle_t connectionHandle,
|
Handle_t connectionHandle,
|
||||||
ble::phy_t txPhy,
|
Phy_t txPhy,
|
||||||
ble::phy_t rxPhy
|
Phy_t rxPhy
|
||||||
) = 0;
|
) {
|
||||||
|
(void)status;
|
||||||
|
(void)connectionHandle;
|
||||||
|
(void)txPhy;
|
||||||
|
(void)rxPhy;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function invoked when the update process of the PHY has been completed.
|
* Function invoked when the update process of the PHY has been completed.
|
||||||
|
@ -1170,9 +1175,14 @@ public:
|
||||||
virtual void onPhyUpdateComplete(
|
virtual void onPhyUpdateComplete(
|
||||||
ble_error_t status,
|
ble_error_t status,
|
||||||
Handle_t connectionHandle,
|
Handle_t connectionHandle,
|
||||||
ble::phy_t txPhy,
|
Phy_t txPhy,
|
||||||
ble::phy_t rxPhy
|
Phy_t rxPhy
|
||||||
) = 0;
|
) {
|
||||||
|
(void)status;
|
||||||
|
(void)connectionHandle;
|
||||||
|
(void)txPhy;
|
||||||
|
(void)rxPhy;
|
||||||
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue