Skip to content

Commit

Permalink
bluetooth/server: Don't show blackboard on start
Browse files Browse the repository at this point in the history
  • Loading branch information
kallisti5 committed Apr 10, 2016
1 parent 94215f0 commit e91079d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/servers/bluetooth/BluetoothServer.cpp
Expand Up @@ -56,9 +56,10 @@ DispatchEvent(struct hci_event_header* header, int32 code, size_t size)


BluetoothServer::BluetoothServer()
: BApplication(BLUETOOTH_SIGNATURE)
, fSDPThreadID(-1)
, fIsShuttingDown(false)
:
BApplication(BLUETOOTH_SIGNATURE),
fSDPThreadID(-1),
fIsShuttingDown(false)
{
Output::Instance()->Run();
Output::Instance()->SetTitle("Bluetooth message gathering");
Expand Down Expand Up @@ -115,8 +116,6 @@ void BluetoothServer::ArgvReceived(int32 argc, char **argv)

void BluetoothServer::ReadyToRun(void)
{
ShowWindow(Output::Instance());

fDeviceManager->StartMonitoringDevice("bluetooth/h2");
fDeviceManager->StartMonitoringDevice("bluetooth/h3");
fDeviceManager->StartMonitoringDevice("bluetooth/h4");
Expand Down

0 comments on commit e91079d

Please sign in to comment.