()
| 1036 | var missed = false; |
| 1037 | pollingFast = true; |
| 1038 | function p() { |
| 1039 | startOperation(); |
| 1040 | var changed = readInput(); |
| 1041 | if (!changed && !missed) {missed = true; poll.set(60, p);} |
| 1042 | else {pollingFast = false; slowPoll();} |
| 1043 | endOperation(); |
| 1044 | } |
| 1045 | poll.set(20, p); |
| 1046 | } |
| 1047 |
nothing calls this directly
no test coverage detected