btservices_plat/bluetooth_dut_mode_api/inc/btengdomainpskeys.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 13 Oct 2010 14:43:49 +0300
branchRCL_3
changeset 72 4b59561a31c0
parent 0 f63038272f30
permissions -rw-r--r--
Revision: 201039 Kit: 201041

/*
* Copyright (c) 2006-2008 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  Bluetooth Engine domain publish & subscribe key definitions.
*
*/


#ifndef BTENG_DOMAIN_PS_KEYS_H
#define BTENG_DOMAIN_PS_KEYS_H

const TUint32 KBTBluetoothTestingMode = 0x101FFE48;

/**  Bluetooth Testing mode publish and subscribe UID */
const TUid KPSUidBluetoothTestingMode = {KBTBluetoothTestingMode};

/**  Bluetooth DUT mode - deprecated and replaced by Bluetooth Testing mode */
const TUid KPSUidBluetoothDutMode = {KBTBluetoothTestingMode};


/**
 * Publish and Subscribe key defining the Bluetooth
 * Device Under Test mode.
 *
 * Possible integer values:
 * 0 Device not in test mode
 * 1 Device in test mode
 *
 * Default value: 0
 */
const TUint KBTDutEnabled = 0x01;


/**  Enumeration for Bluetooth Device Under Test mode */
enum TBTDutModeValue
    {
    EBTDutOff,
    EBTDutOn
    };


/**
 * Publish and Subscribe key defining the Bluetooth
 * Secure Simple Pairing debug mode.
 *
 * Possible integer values:
 * 0 Device not in debug mode
 * 1 Device in debug mode
 *
 * Default value: 0
 */
const TUint KBTSspDebugmode = 0x02;


/**  Enumeration for Bluetooth Device Under Test mode */
enum TBTSspDebugModeValue
    {
    EBTSspDebugModeOff,
    EBTSspDebugModeOn
    };


#endif // BTENG_DOMAIN_PS_KEYS_H