| 169 | |
| 170 | #ifdef USRP1 |
| 171 | void *AlignRadioServiceLoopAdapter(RadioInterface *radioInterface) |
| 172 | { |
| 173 | while (1) { |
| 174 | radioInterface->alignRadio(); |
| 175 | pthread_testcancel(); |
| 176 | } |
| 177 | return NULL; |
| 178 | } |
| 179 | |
| 180 | void RadioInterface::alignRadio() { |
| 181 | sleep(60); |
nothing calls this directly
no test coverage detected