wlan_bearer/wlanengine/wlan_common/wlanengine_common_3.1/inc/core_settings_default.h
changeset 0 c40eb8fe8501
equal deleted inserted replaced
-1:000000000000 0:c40eb8fe8501
       
     1 /*
       
     2 * Copyright (c) 2006-2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Default values for some of the settings.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CORE_SETTINGS_DEFAULT_H
       
    20 #define CORE_SETTINGS_DEFAULT_H
       
    21 
       
    22 #include "core_types.h"
       
    23 
       
    24 const core_uapsd_settings_s DEFAULT_UAPSD_SETTINGS =
       
    25     {
       
    26     core_max_service_period_length_all, // allow AP to send all buffered frames during a service period
       
    27     true_t,     // U-APSD is enabled for Voice
       
    28     true_t,     // U-APSD is enabled for Video
       
    29     true_t,     // U-APSD is enabled for BestEffort
       
    30     true_t      // U-APSD is enabled for Background
       
    31     };
       
    32 
       
    33 const core_power_save_settings_s DEFAULT_POWER_SAVE_SETTINGS =
       
    34     {
       
    35     true_t,     // stay in U-APSD power save when using Voice 
       
    36     false_t,    // allow CAM<>U-APSD power save transitions when using Video
       
    37     false_t,    // allow CAM<>U-APSD power save transitions when using BestEffort
       
    38     false_t,    // allow CAM<>U-APSD power save transitions when using Background
       
    39     false_t,    // allow CAM<>legacy power save transitions when using Voice    
       
    40     false_t,    // allow CAM<>legacy power save transitions when using Video    
       
    41     false_t,    // allow CAM<>legacy power save transitions when using BestEffort    
       
    42     false_t,    // allow CAM<>legacy power save transitions when using Background    
       
    43     };
       
    44 
       
    45 const core_block_ack_usage_s DEFAULT_BLOCK_ACK_USAGE =
       
    46     {
       
    47     0xFF,       // enabled for all traffic streams in TX direction
       
    48     0xFF        // enabled for all traffic streams in RX direction
       
    49     };
       
    50 
       
    51 #endif // CORE_SETTINGS_DEFAULT_H