| 376 | return false; |
| 377 | } |
| 378 | bool sendHighspeed() { |
| 379 | if (apInfo.state == AP_STATE_NORADIO) return true; |
| 380 | if (!txStart()) return false; |
| 381 | for (uint8_t attempt = 0; attempt < 5; attempt++) { |
| 382 | cmdReplyValue = CMD_REPLY_WAIT; |
| 383 | AP_SERIAL_PORT.print("HSPD"); |
| 384 | if (waitCmdReply()) { |
| 385 | txEnd(); |
| 386 | return true; |
| 387 | } |
| 388 | } |
| 389 | txEnd(); |
| 390 | return false; |
| 391 | } |
| 392 | |
| 393 | // add RX'd request from the AP to the processor queue |
| 394 | void addRXQueue(uint8_t* data, uint8_t len, uint8_t type) { |
no test coverage detected