From 32c6b91e5a1eece453404590492d5f69df95a72c Mon Sep 17 00:00:00 2001 From: Kristian Lauszus Date: Sun, 24 Aug 2014 15:56:36 -0700 Subject: [PATCH] All virtual functions inside BluetoothService needed to be pure for the Intel Galileo --- BTD.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BTD.h b/BTD.h index 3a639abb..c62ad5eb 100755 --- a/BTD.h +++ b/BTD.h @@ -214,13 +214,13 @@ public: * Used to pass acldata to the Bluetooth service. * @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. */ - virtual void Run(); + virtual void Run() = 0; /** 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. */ - virtual void disconnect(); + virtual void disconnect() = 0; }; /**