| 91 | return false; |
| 92 | } |
| 93 | void txEnd() { |
| 94 | if (xPortInIsrContext()) { |
| 95 | xSemaphoreGiveFromISR(txActive, NULL); |
| 96 | } else { |
| 97 | xSemaphoreGive(txActive); |
| 98 | } |
| 99 | } |
| 100 | bool waitCmdReply() { |
| 101 | uint32_t val = millis(); |
| 102 | while (millis() < val + 200) { |
no outgoing calls
no test coverage detected