| 808 | |
| 809 | |
| 810 | void Transceiver::writeClockInterface() |
| 811 | { |
| 812 | char command[50]; |
| 813 | // FIXME -- This should be adaptive. |
| 814 | sprintf(command,"IND CLOCK %llu",(unsigned long long) (mTransmitDeadlineClock.FN()+2)); |
| 815 | |
| 816 | LOG(INFO) << "ClockInterface: sending " << command; |
| 817 | |
| 818 | mClockSocket.write(command,strlen(command)+1); |
| 819 | |
| 820 | mLastClockUpdateTime = mTransmitDeadlineClock; |
| 821 | |
| 822 | } |
| 823 | |
| 824 | void *RxServiceLoopAdapter(Transceiver *transceiver) |
| 825 | { |
no test coverage detected