| 124 | } |
| 125 | |
| 126 | radioVector *Transceiver::fixRadioVector(BitVector &burst, |
| 127 | int RSSI, |
| 128 | GSM::Time &wTime) |
| 129 | { |
| 130 | |
| 131 | // modulate and stick into queue |
| 132 | signalVector* modBurst = modulateBurst(burst, |
| 133 | 8 + (wTime.TN() % 4 == 0), |
| 134 | mSPSTx); |
| 135 | scaleVector(*modBurst,txFullScale * pow(10,-RSSI/10)); |
| 136 | |
| 137 | radioVector *newVec = new radioVector(*modBurst,wTime); |
| 138 | //fillerActive[ARFCN][wTime.TN()] = (ARFCN==0) || (RSSI != 255); |
| 139 | |
| 140 | delete modBurst; |
| 141 | return newVec; |
| 142 | } |
| 143 | |
| 144 | #ifdef TRANSMIT_LOGGING |
| 145 | void Transceiver::unModulateVector(signalVector wVector) |
nothing calls this directly
no test coverage detected