Hello,
Legato version: 18.06
Module: WP76xx
- Legatos le_mrc_Rat_t has these technologies available:
enum le_mrc_Rat_t {
LE_MRC_RAT_UNKNOWN = 0, LE_MRC_RAT_GSM = 1<<0, LE_MRC_RAT_UMTS = 1<<1, LE_MRC_RAT_LTE = 1<<2,
LE_MRC_RAT_CDMA = 1<<3, LE_MRC_RAT_ALL
}
Im using googles geolocation service in order to obtain location from it, and I need to connect each of these RAT’s with lte
, gsm
, cdma
, and wcdma
.
Is this correct:
LE_MRC_RAT_UMTS = “wcdma”
LE_MRC_RAT_TDSCDMA = “cdma”
LE_MRC_RAT_LTE = “lte”
LE_MRC_RAT_CDMA = “cdma”
LE_MRC_RAT_GSM = “gsm”
I am unsured about the bold ones. Please help.