| 184 | } |
| 185 | |
| 186 | TaskHandle_t getClientTaskHandle() { |
| 187 | TaskHandle_t handle = nullptr; |
| 188 | withClientLock([&]() { handle = clientTaskHandle; }); |
| 189 | return handle; |
| 190 | } |
| 191 | |
| 192 | void resetClientState(ClientProtocol protocol) { |
| 193 | withClientLock([&]() { |
no test coverage detected