* fix for omx when performing GST build * wireless android auto bluetooth negotation * Grab local bluetooth adapter * Handling ping and voice session * wait for both usb and wifi device ]connections * Make btservice launch with openauto, allows for wireless connection automatically * WiFi hotspot info pulled from openauto config * Install btservice correctly Co-authored-by: Rhys_M <rhys1802@hotmail.co.uk> Co-authored-by: Robert Judka <robertjudka@gmail.com>
23 lines
589 B
C++
23 lines
589 B
C++
#pragma once
|
|
|
|
#include <QBluetoothAddress>
|
|
#include "OpenautoLog.hpp"
|
|
#include "btservice/AndroidBluetoothService.hpp"
|
|
#include "btservice/AndroidBluetoothServer.hpp"
|
|
#include "openauto/Configuration/Configuration.hpp"
|
|
namespace openauto{
|
|
|
|
namespace btservice{
|
|
|
|
class btservice{
|
|
public:
|
|
btservice(openauto::configuration::IConfiguration::Pointer config);
|
|
private:
|
|
const uint16_t servicePortNumber = 22;
|
|
openauto::btservice::AndroidBluetoothServer androidBluetoothServer;
|
|
openauto::btservice::AndroidBluetoothService androidBluetoothService;
|
|
|
|
};
|
|
|
|
}
|
|
} |