radioengine/settings/data/fmradioenginesettings.rss
branchRCL_3
changeset 20 93c594350b9a
parent 19 cce62ebc198e
equal deleted inserted replaced
19:cce62ebc198e 20:93c594350b9a
     1 /*
       
     2 * Copyright (c) 2009 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 "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:
       
    15 *
       
    16 */
       
    17 
       
    18 // Resource identifier
       
    19 NAME    QRST
       
    20 
       
    21 // System includes
       
    22 #include <uikon.rh>
       
    23 
       
    24 #include "radioengine.hrh"
       
    25 
       
    26 // Resource definitions
       
    27 
       
    28 // ---------------------------------------------------------
       
    29 //    Resource signature
       
    30 // ---------------------------------------------------------
       
    31 //
       
    32 
       
    33 RESOURCE RSS_SIGNATURE { }
       
    34 
       
    35 // ---------------------------------------------------------
       
    36 //
       
    37 // ---------------------------------------------------------
       
    38 //
       
    39 STRUCT RADIO_REGION
       
    40     {
       
    41     WORD id;
       
    42     LONG stepsize;
       
    43     LONG minfrequency;
       
    44     LONG maxfrequency;
       
    45     WORD decimalcount;
       
    46     LTEXT countrycodes[] = {""};
       
    47     }
       
    48 
       
    49 // ---------------------------------------------------------
       
    50 //
       
    51 // ---------------------------------------------------------
       
    52 //
       
    53 STRUCT RADIO_REGION_ARRAY
       
    54     {
       
    55     LLINK regions[];
       
    56     }
       
    57 
       
    58 // ---------------------------------------------------------
       
    59 //    r_qrad_regions
       
    60 //    Array of the supported regions
       
    61 // ---------------------------------------------------------
       
    62 //
       
    63 RESOURCE RADIO_REGION_ARRAY r_qrad_regions
       
    64     {
       
    65     regions =
       
    66         {
       
    67         r_qrad_region_japan,
       
    68         r_qrad_region_america,
       
    69         r_qrad_region_default
       
    70         };
       
    71     }
       
    72 
       
    73 // ---------------------------------------------------------
       
    74 //    r_qrad_region_japan
       
    75 //    Region settings for Japan
       
    76 //    Check country codes from:
       
    77 //    "COMPLEMENT TO ITU-T RECOMMENDATION E.212, LIST OF MOBILE COUNTRY OR GEOGRAPHICAL AREA CODES"
       
    78 // ---------------------------------------------------------
       
    79 //
       
    80 RESOURCE RADIO_REGION r_qrad_region_japan
       
    81     {
       
    82     id = ERadioRegionJapan;
       
    83     stepsize = 100;
       
    84     minfrequency = 76000;
       
    85     maxfrequency = 90000;
       
    86     decimalcount = 1;
       
    87     countrycodes =
       
    88         {
       
    89         "440",
       
    90         "441"
       
    91         };
       
    92     }
       
    93 
       
    94 // ---------------------------------------------------------
       
    95 //    r_qrad_region_america
       
    96 //    Region settings for America
       
    97 //    "COMPLEMENT TO ITU-T RECOMMENDATION E.212, LIST OF MOBILE COUNTRY OR GEOGRAPHICAL AREA CODES"
       
    98 // ---------------------------------------------------------
       
    99 //
       
   100 RESOURCE RADIO_REGION r_qrad_region_america
       
   101     {
       
   102     id = ERadioRegionAmerica;
       
   103     stepsize = 200;
       
   104     minfrequency = 88100;
       
   105     maxfrequency = 107900;
       
   106     decimalcount = 1;
       
   107     countrycodes =
       
   108         {
       
   109         "302",  // Canada
       
   110         "310",  // USA
       
   111         "311",  // USA
       
   112         "312",  // USA
       
   113         "313",  // USA
       
   114         "314",  // USA
       
   115         "315",  // USA
       
   116         "316",  // USA
       
   117         "332",  // United States Virgin Islands
       
   118         "334",  // Mexico
       
   119         "338",  // Jamaica
       
   120         "342",  // Barbados
       
   121         "344",  // Antigua and Barbuda
       
   122         "352",  // Grenada
       
   123         "360",  // Saint Vincent and the Grenadines
       
   124         "364",  // Bahamas
       
   125         "366",  // Common Wealth of Dominica
       
   126         "370",  // Dominican Republic
       
   127         "372",  // Haiti
       
   128         "374",  // Trinidad and Tobago
       
   129         "368",  // Cuba
       
   130         "702",  // Belize
       
   131         "704",  // Guatemala
       
   132         "706",  // El Salvador
       
   133         "708",  // Honduras
       
   134         "710",  // Nicaragua
       
   135         "712",  // Costa Rica
       
   136         "714",  // Panama
       
   137         "716",  // Peru
       
   138         "722",  // Argentina
       
   139         "724",  // Brazil
       
   140         "730",  // Chile
       
   141         "732",  // Colombia
       
   142         "734",  // Venezuela
       
   143         "736",  // Bolivia
       
   144         "738",  // Guyana
       
   145         "740",  // Ecuador
       
   146         "744",  // Paraguay
       
   147         "746",  // Suriname
       
   148         "748"   // Uruguay
       
   149         };
       
   150     }
       
   151 
       
   152 // ---------------------------------------------------------
       
   153 //    r_qrad_region_default
       
   154 //    Region settings for default region
       
   155 // ---------------------------------------------------------
       
   156 //
       
   157 RESOURCE RADIO_REGION r_qrad_region_default
       
   158     {
       
   159     id = ERadioRegionDefault;
       
   160     stepsize = 100;
       
   161     minfrequency = 87500;
       
   162     maxfrequency = 108000;
       
   163     decimalcount = 2;
       
   164     }