mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
All virtual functions inside BluetoothService needed to be pure for the Intel Galileo
This commit is contained in:
parent
963c157bc5
commit
32c6b91e5a
1 changed files with 4 additions and 4 deletions
8
BTD.h
8
BTD.h
|
@ -214,13 +214,13 @@ public:
|
||||||
* Used to pass acldata to the Bluetooth service.
|
* Used to pass acldata to the Bluetooth service.
|
||||||
* @param ACLData Pointer to the incoming acldata.
|
* @param ACLData Pointer to the incoming acldata.
|
||||||
*/
|
*/
|
||||||
virtual void ACLData(uint8_t* ACLData);
|
virtual void ACLData(uint8_t* ACLData) = 0;
|
||||||
/** Used to run the different state machines in the Bluetooth service. */
|
/** Used to run the different state machines in the Bluetooth service. */
|
||||||
virtual void Run();
|
virtual void Run() = 0;
|
||||||
/** Used to reset the Bluetooth service. */
|
/** Used to reset the Bluetooth service. */
|
||||||
virtual void Reset();
|
virtual void Reset() = 0;
|
||||||
/** Used to disconnect both the L2CAP Channel and the HCI Connection for the Bluetooth service. */
|
/** Used to disconnect both the L2CAP Channel and the HCI Connection for the Bluetooth service. */
|
||||||
virtual void disconnect();
|
virtual void disconnect() = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue