| 267 | } |
| 268 | |
| 269 | void *AlignRadioServiceLoopAdapter(RadioInterface *radioInterface) |
| 270 | { |
| 271 | while (1) { |
| 272 | radioInterface->alignRadio(); |
| 273 | pthread_testcancel(); |
| 274 | } |
| 275 | return NULL; |
| 276 | } |
| 277 | |
| 278 | void RadioInterface::alignRadio() { |
| 279 | sleep(60); |
nothing calls this directly
no test coverage detected