Extended dynamic mode means # channels up > # channels down.
| 139 | |
| 140 | // Extended dynamic mode means # channels up > # channels down. |
| 141 | bool MSInfo::msCanUseExtendedUplink() |
| 142 | { |
| 143 | // The Blackberry and iphone set the GeranFeaturePackI bit, but |
| 144 | // the danged Multitech modems truncate the MS capabilities before |
| 145 | // the GeranFeaturePackI bit, even though they do support extended uplink TBF |
| 146 | // They are multislot class 12, so if the MS multislot class > 10, assume ok. |
| 147 | return gL2MAC.macUplinkPersist > 0 && this->msIsRegistered() |
| 148 | && (this->sgsnGetGeranFeaturePackI(this->msTlli) || |
| 149 | this->sgsnGetMultislotClass(this->msTlli) > 10); |
| 150 | } |
| 151 | |
| 152 | bool MSInfo::msIsRegistered() |
| 153 | { |
no test coverage detected