Do the reverse encoding on usf, and return the reversed usf, ie, the returned usf is byte-swapped.
| 47 | // Do the reverse encoding on usf, and return the reversed usf, |
| 48 | // ie, the returned usf is byte-swapped. |
| 49 | static int decodeUSF(SoftVector &mC) |
| 50 | { |
| 51 | // TODO: Make this more robust. |
| 52 | // Update: No dont bother, should always be zero anyway. |
| 53 | return (mC.bit(0)<<2) | (mC.bit(6)<<1) | mC.bit(4); |
| 54 | } |
| 55 | |
| 56 | ARFCNManager *PDCHCommon::getRadio() { return mchParent->mchOldFec->getRadio(); } |
| 57 | unsigned PDCHCommon::ARFCN() { return mchParent->mchOldFec->ARFCN(); } |
no outgoing calls
no test coverage detected