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

Method netSendDataAvail

ESP32_AP-Flasher/src/udp.cpp:196–201  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

194}
195
196void UDPcomm::netSendDataAvail(struct pendingData* pending) {
197 uint8_t buffer[sizeof(struct pendingData) + 1];
198 buffer[0] = PKT_AVAIL_DATA_REQ;
199 memcpy(buffer + 1, pending, sizeof(struct pendingData));
200 writeUdpPacket(buffer, sizeof(buffer), UDPIP);
201}
202
203void UDPcomm::netTaginfo(struct TagInfo* taginfoitem) {
204 uint8_t buffer[sizeof(struct TagInfo) + 1];

Callers 6

prepareDataAvailFunction · 0.80
sendAPSegmentedDataFunction · 0.80
showAPSegmentedInfoFunction · 0.80
sendTagCommandFunction · 0.80
sendTagMacFunction · 0.80
checkMirrorFunction · 0.80

Calls 1

memcpyFunction · 0.85

Tested by

no test coverage detected