| 649 | }; |
| 650 | |
| 651 | void updateContent(const uint8_t* dst) { |
| 652 | tagRecord* taginfo = tagRecord::findByMAC(dst); |
| 653 | if (taginfo != nullptr) { |
| 654 | clearPending(taginfo); |
| 655 | memset(taginfo->md5, 0, sizeof(taginfo->md5)); |
| 656 | taginfo->nextupdate = 0; |
| 657 | wsSendTaginfo(taginfo->mac, SYNC_TAGSTATUS); |
| 658 | } |
| 659 | } |
| 660 | |
| 661 | void setAPchannel() { |
| 662 | bool bSendRadioLayer = false; |
no test coverage detected