# AT+QCAINFO

Verify CA performance and check multiple CCs for Carrier Aggregation on the modem along with frequency band and bandwidth per component carrier.

### Test Command

```
AT+QCAINFO=?
```

{% code title="Response" overflow="wrap" %}

```html
''
```

{% endcode %}

### Execution Command

Execute the below Command to query the carrier aggregation (CA) information&#x20;

```
AT+QCAINFO
```

{% code title="Response" overflow="wrap" %}

```html
+QCAINFO: "PCC",<freq>,<bandwidth>,<band>, <pcell_state>,<PCID>,<RSRP>,<RSRQ>,<RSSI>,<SINR> 
+QCAINFO: "SCC",<freq>,<bandwidth>,<band>, <scell_state>,<PCID>,<RSRP>,<RSRQ>,<RSSI>,<SINR>
+QCAINFO: "SCC",<freq>,<bandwidth>,<band>, <scell_state>,<PCID>,<RSRP>,<RSRQ>,<RSSI>,<SINR>
```

{% endcode %}

{% code title="If no active secondary cell" overflow="wrap" %}

```html
''
```

{% endcode %}

> Example:
>
> **mmcli -m 2 --command="AT+QCAINFO"**
>
> &#x20;
>
> response: ' '

### Parameters

"-" or - indicates the parameter is invalid under the current condition.

<table><thead><tr><th width="173.33333333333331">Parameter</th><th width="186">String</th><th>Description</th></tr></thead><tbody><tr><td>&#x3C;PCC></td><td></td><td>Primary carrier component</td></tr><tr><td>&#x3C;SCC></td><td></td><td>Secondary carrier component.</td></tr><tr><td>&#x3C;freq></td><td></td><td>EARFCN</td></tr><tr><td>&#x3C;bandwidth></td><td>Integer type</td><td><p>Bandwidth.</p><p>6 -- 1.4 MHz</p><p>15 -- 3 MHz</p><p>25 -- 5 MHz</p><p>50 -- 10 MHz</p><p>75 -- 15 MHz</p><p>100 -- 20 MHz</p></td></tr><tr><td>&#x3C;band></td><td>String type</td><td><p>DL bandwidth.</p><p>"LTE BAND 1 / 2 / 3 / ... / 66"</p></td></tr><tr><td>&#x3C;pcell_state></td><td>Integer type</td><td><p>Primary cell state</p><p>0 -- No serving<br>1 -- Registered</p></td></tr><tr><td>&#x3C;scell_state></td><td>Integer type</td><td>Secondary cell state<br>0 -- Deconfigured<br>1 -- Configuration deactivated<br>2 -- Configuration activated</td></tr><tr><td>&#x3C;PCID></td><td>Integer type</td><td>Physical Cell ID</td></tr><tr><td>&#x3C;RSRP></td><td>Integer type</td><td>Reference Signal Received Power</td></tr><tr><td>&#x3C;RSRQ></td><td>Integer type</td><td>Reference Signal Received Quality</td></tr><tr><td>&#x3C;RSSI></td><td>Integer type</td><td>Received Signal Strength Indication</td></tr><tr><td>&#x3C;SINR></td><td>Integer type</td><td>Logarithmic value of SINR. Values are in 1/5th of a dB. Range: 0–250 (-20 to +30 dB).</td></tr></tbody></table>
