Default to non-RAD1 setups.

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@6617 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
Kurtis Heimerl
2013-10-02 01:54:16 +00:00
parent 7a5d549aa5
commit 8006dd55ff
2 changed files with 4 additions and 4 deletions

View File

@@ -2103,14 +2103,14 @@ ConfigurationKeyMap getConfigurationKeys()
map[tmp->getName()] = *tmp;
delete tmp;
tmp = new ConfigurationKey("GSM.Radio.RxGain","47",
tmp = new ConfigurationKey("GSM.Radio.RxGain","0",
"dB",
ConfigurationKey::FACTORY,
ConfigurationKey::VALRANGE,
"25:75",// educated guess
"0:75",// educated guess
true,
"Receiver gain setting in dB. "
"Ideal value is dictated by the hardware; 47 dB for RAD1. "
"Ideal value is dictated by the hardware; 47 dB for RAD1, less for USRPs "
"This database parameter is static but the receiver gain can be modified in real time with the CLI rxgain command."
);
map[tmp->getName()] = *tmp;

View File

@@ -171,7 +171,7 @@ INSERT OR IGNORE INTO "CONFIG" VALUES('GSM.Radio.PowerManager.Period','6000',0,0
INSERT OR IGNORE INTO "CONFIG" VALUES('GSM.Radio.PowerManager.SamplePeriod','2000',0,0,'Sample period for the output power control loopm in milliseconds.');
INSERT OR IGNORE INTO "CONFIG" VALUES('GSM.Radio.PowerManager.TargetT3122','5000',0,0,'Target value for T3122, the random access hold-off timer, for the power control loop.');
INSERT OR IGNORE INTO "CONFIG" VALUES('GSM.Radio.RSSITarget','-50',0,0,'Target uplink RSSI for MS power control loop, in dB wrt to A/D full scale. Should be 6-10 dB above the noise floor.');
INSERT OR IGNORE INTO "CONFIG" VALUES('GSM.Radio.RxGain','47',1,0,'Receiver gain setting in dB. Ideal value is dictated by the hardware; 47 dB for RAD1. This database parameter is static but the receiver gain can be modified in real time with the CLI rxgain command. Static.');
INSERT OR IGNORE INTO "CONFIG" VALUES('GSM.Radio.RxGain','0',1,0,'Receiver gain setting in dB. Ideal value is dictated by the hardware; 47 dB for RAD1, less for USRP. This database parameter is static but the receiver gain can be modified in real time with the CLI rxgain command. Static.');
INSERT OR IGNORE INTO "CONFIG" VALUES('GSM.ShowCountry','0',0,0,'1=enabled, 0=disabled - Tell the phone to show the country name based on the MCC.');
INSERT OR IGNORE INTO "CONFIG" VALUES('GSM.Timer.T3103','5000',1,0,'Handover timeout in milliseconds, GSM 04.08 11.1.2. This is the timeout for a handset to sieze a channel during handover. Static.');
INSERT OR IGNORE INTO "CONFIG" VALUES('GSM.Timer.T3105','50',1,0,'Milliseconds for handset to respond to physical information. GSM 04.08 11.1.2. Static.');