this loop services, among other things, the IND and ACK HANDOVER_COMPLETE, which affects the handover gap in the call. so it needs to be short. Like 10msec = 10000usec
| 139 | // this loop services, among other things, the IND and ACK HANDOVER_COMPLETE, which affects the |
| 140 | // handover gap in the call. so it needs to be short. Like 10msec = 10000usec |
| 141 | void* PeerInterface::serviceLoop2(void*) |
| 142 | { |
| 143 | // gTRX.C0() needs some time to get ready |
| 144 | sleep(8); |
| 145 | while (1) { |
| 146 | drive(); |
| 147 | usleep(10000); |
| 148 | } |
| 149 | return NULL; |
| 150 | } |
| 151 | |
| 152 | |
| 153 | void PeerInterface::drive() |