summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSerhii Kostiuk <serhii.o.kostiuk@globallogic.com>2019-07-15 17:12:17 +0300
committerSerhii Kostiuk <serhii.o.kostiuk@globallogic.com>2019-07-15 17:25:19 +0300
commit05628f9b5868c60d68aa750f547b010d22ac27b4 (patch)
treebbc5177fdd3886efde841c35b64cd044d46eeb0f /src
parent6042426e8d21b9b92f7078f64f4b50c2f1b8bc8d (diff)
downloadlibmts-io-05628f9b5868c60d68aa750f547b010d22ac27b4.tar.gz
libmts-io-05628f9b5868c60d68aa750f547b010d22ac27b4.tar.bz2
libmts-io-05628f9b5868c60d68aa750f547b010d22ac27b4.zip
[MTS-MTQ] QuectelRadio implementation
Cleanup: Removed a comment for a function whose implementation was moved to the radio-specific classes
Diffstat (limited to 'src')
-rw-r--r--src/MTS_IO_CellularRadio.cpp76
1 files changed, 0 insertions, 76 deletions
diff --git a/src/MTS_IO_CellularRadio.cpp b/src/MTS_IO_CellularRadio.cpp
index 195ba4f..4dcea7d 100644
--- a/src/MTS_IO_CellularRadio.cpp
+++ b/src/MTS_IO_CellularRadio.cpp
@@ -609,82 +609,6 @@ CellularRadio::CODE CellularRadio::getStaticInformation(Json::Value& jData) {
return FAILURE;
}
-/* AT#RFSTS - NETWORK STATUS
-
- (GSM network)
- #RFSTS:<PLMN>,<ARFCN>,<RSSI>,<LAC>,<RAC>,<TXPWR>,<MM>,<RR>,<NOM>,<CID>,<IMSI>,<NetNameAsc>,<SD>,<ABND>
- Where:
- <PLMN> - Country code and operator code(MCC, MNC)
- <ARFCN> - GSM Assigned Radio Channel
- <RSSI> - Received Signal Strength Indication
- <LAC> - Localization Area Code
- <RAC> - Routing Area Code
- <TXPWR> - Tx Power
- <MM> - Mobility Management state
- <RR> - Radio Resource state
- <NOM> - Network Operator Mode
- <CID> - Cell ID
- <IMSI> - International Mobile Subscriber Identity
- <NetNameAsc> - Operator name
- <SD> - Service Domain
- 0 - No Service
- 1 - CS only
- 2 - PS only
- 3 - CS+PS
- <ABND> - Active Band
- 1 - GSM 850
- 2 - GSM 900
- 3 - DCS 1800
- 4 - PCS 1900
-
-
- (WCDMA network)
- #RFSTS:
- <PLMN>,<UARFCN>,<PSC>,<Ec/Io>,<RSCP>, RSSI>,<LAC>,<RAC>,<TXPWR>,<DRX>,<MM>,<RRC>,<NOM>,<BLER>,<CID>,<IMSI>,
- <NetNameAsc>,<SD>,<nAST>[,<nUARFCN><nPSC>,<nEc/Io>]
- Where:
- <PLMN> - Country code and operator code(MCC, MNC)
- <UARFCN> - UMTS Assigned Radio Channel
- <PSC> - Active PSC(Primary Synchronization Code)
- <Ec/Io> - Active Ec/Io(chip energy per total wideband power in dBm)
- <RSCP> - Active RSCP (Received Signal Code Power in dBm)
- <RSSI> - Received Signal Strength Indication
- <LAC> - Localization Area Code
- <RAC> - Routing Area Code
- <TXPWR> - Tx Power
- <DRX> - Discontinuous reception cycle Length (cycle length in ms)
- <MM> - Mobility Management state
- <RR> - Radio Resource state
- <NOM> - Network Operator Mode
- <BLER> - Block Error Rate (e.g., 005 means 0.5 %)
- <CID> - Cell ID
- <IMSI> - International Mobile Station ID
- <NetNameAsc> - Operator name
- <SD> - Service Domain (see above)
- <nAST> - Number of Active Set (Maximum 6)
- <nUARFCN> UARFCN of n th active set
- <nPSC> PSC of n th active set
- <nEc/Io > Ec/Io of n th active Set
-
- (LTE Network)
- #RFSTS:
- <PLMN> -
- <EARFCN> -
- <RSRP> -
- <RSSI> -
- <RSRQ> -
- <TAC> -
- [<TXPWR>] -
- <DRX> -
- <MM> -
- <RRC> -
- <CID> -
- <IMSI> -
- [<NetNameAsc>] -
- <SD> -
- <ABND> -
-*/
-
// Get the LAC for the LTE radio that's not in the #RFSTS or +QENG response
std::string CellularRadio::queryLteLac() {
std::string CGREGstring;