os/boardsupport/emulator/emulatorbsp/hcr/hcr_psl_config.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // This file is part of the EPOC Emulator Variant Base Port
    15 // Hardware Configuration Respoitory Platform Specific Layer (PSL) 
    16 //
    17 
    18 
    19 /** 
    20 @file hcr_psl_config.cpp
    21 File provides the compiled repository (currently empty) EPOC Emulator platform. 
    22 
    23 @internalTechnology
    24 */
    25 
    26 // -- HCR INCLUDES ------------------------------------------------------------
    27 
    28 #include "hcrconfig.h"
    29 
    30 #include "hcr_hai.h"
    31 #include "hcr_uids.h"
    32 
    33 
    34 using namespace HCR;
    35 
    36 
    37 
    38 // -- HCR BSP SETTING INCLUDES ------------------------------------------------
    39 
    40 // Includes for setting published by base port ASSP/SOC interconnections
    41 // e.g. #include "hcr_psl_config_mha_inc.inl"
    42 
    43 
    44 
    45 
    46 // -- HCR BSP LARGE SETTING DATA (LSD) VALUES ---------------------------------
    47 
    48 // Includes for setting published by base port ASSP/SOC interconnections
    49 // e.g. #include "hcr_psl_config_mha_lsd.inl"
    50 
    51 
    52 
    53 
    54 // -- HCR BSP SETTINGS LIST ---------------------------------------------------
    55 
    56 SSettingC gSettingsList[] = 
    57     {
    58     
    59 // Includes for setting published by base port ASSP/SOC interconnections
    60 // e.g. #include "hcr_psl_config_mha.inl"
    61 
    62 	HCR_LAST_SETTING
    63 	};
    64 	
    65 	
    66 SRepositoryBase gHeader = 
    67     {
    68     HCR_FINGER_PRINT, 
    69     EReposCompiled, 
    70     KRepositoryFirstVersion,
    71     EReposReadOnly,
    72     HCR_SETTING_COUNT(gSettingsList)
    73     };
    74 
    75 
    76 GLDEF_C SRepositoryCompiled gRepository = 
    77     { 
    78     &gHeader, 
    79     gSettingsList 
    80     };