MCPcopy Create free account
hub / github.com/OpenEPaperLink/OpenEPaperLink / sendHighspeed

Function sendHighspeed

ESP32_AP-Flasher/src/serialap.cpp:378–391  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

376 return false;
377}
378bool 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
394void addRXQueue(uint8_t* data, uint8_t len, uint8_t type) {

Callers 1

bringAPOnlineFunction · 0.85

Calls 4

txStartFunction · 0.85
waitCmdReplyFunction · 0.85
txEndFunction · 0.85
printMethod · 0.45

Tested by

no test coverage detected