Which RAT suits which name

Hello,

Legato version: 18.06
Module: WP76xx

  1. 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.

LE_MRC_RAT_TDSCDMA should be TD-SCDMA according to cm_mrc.c

@lazzox

UMTS is 3G as we know it in Europe and 3G on AT&T in the US, TDSCDMA was the Chinese version of 3G deployed mainly in China.

Regards

Matt

1 Like