MCPcopy Create free account
hub / github.com/LowPowerLab/RFM69 / sendFrame

Method sendFrame

RFM69_ATC.cpp:68–70  ·  view source on GitHub ↗

============================================================================= sendFrame() - the basic version is used to match the RFM69 prototype so we can extend it ============================================================================= this sendFrame is generally called by the internal RFM69 functions. Simply transfer to our modified version.

Source from the content-addressed store, hash-verified

66//=============================================================================
67// this sendFrame is generally called by the internal RFM69 functions. Simply transfer to our modified version.
68void RFM69_ATC::sendFrame(uint16_t toAddress, const void* buffer, uint8_t bufferSize, bool requestACK, bool sendACK) {
69 sendFrame(toAddress, buffer, bufferSize, requestACK, sendACK, false, 0); // default sendFrame
70}
71
72//=============================================================================
73// sendFrame() - the new one with additional parameters. This packages recv'd RSSI with the packet, if required.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected