| 850 | |
| 851 | |
| 852 | void Transceiver::writeClockInterface() |
| 853 | { |
| 854 | char command[50]; |
| 855 | // FIME -- See tracker #315. |
| 856 | //sprintf(command,"IND CLOCK %llu",(unsigned long long) (mTransmitDeadlineClock.FN()+10)); |
| 857 | sprintf(command,"IND CLOCK %llu",(unsigned long long) (mTransmitDeadlineClock.FN()+2)); |
| 858 | |
| 859 | LOG(INFO) << "ClockInterface: sending " << command; |
| 860 | |
| 861 | mClockSocket.write(command,strlen(command)+1); |
| 862 | |
| 863 | mLastClockUpdateTime = mTransmitDeadlineClock; |
| 864 | |
| 865 | } |
| 866 | |
| 867 | void *FIFOServiceLoopAdapter(Transceiver *transceiver) |
| 868 | { |
no test coverage detected