Archived:Trying to switch Bluetooth on with the Power State API does not work (Known Issue)
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.
Changing the Bluetooth power state with SDK Central Repository keys does not work on S60 3rd Edition and FP1 devices.
Article Metadata
Compatibility
Platform(s): S60 3rd Edition, S60 3rd Edition FP1
Article
Created: User:Technical writer 1
(29 Aug 2007)
Last edited: hamishwillee
(19 Jun 2012)
Description
The header file btserversdkcrkeys.h includes Central Repository keys for controlling the Bluetooth power state. However, setting the power state to EBTPowerOn does not switch Bluetooth on even though the status icon indicates that it is activated.
How to reproduce
CRepository* cenRep = CRepository::NewLC( KCRUidBluetoothPowerState );
TInt state, err = KErrNone;
cenRep->Get( KBTPowerState, state );
if( state == EBTPowerOff )
{
err = cenRep->Set( KBTPowerState, EBTPowerOn );
}
CleanupStack::PopAndDestroy(); // cenRep
Solution
Use the Bluetooth Notifier API to switch Bluetooth on.


(no comments yet)