| 627 | } |
| 628 | |
| 629 | static bool sendTA(PDCHL1Downlink *down,TBF *tbf) |
| 630 | { |
| 631 | RLCMsgPacketPowerControlTimingAdvance *tamsg = new RLCMsgPacketPowerControlTimingAdvance(tbf); |
| 632 | // DEBUG: If you change the TFI or downlink flag, this |
| 633 | // is unanswered, as expected: |
| 634 | //tamsg->setGlobalTFI(1,tbf->mtTFI); |
| 635 | GPRSLOG(1) << "GPRS sendTA "<<tbf<<" sending:" << tamsg; |
| 636 | RLCDownlinkMessage *msg = tamsg; |
| 637 | // Lets ask for a response and see what happens: |
| 638 | return down->send1MsgFrame(tbf,msg,2,MsgTransTA,NULL); |
| 639 | } |
| 640 | |
| 641 | bool MSInfo::msCanUseDownlinkTn(unsigned tn) |
| 642 | { |
no test coverage detected