============================================================================= 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.
| 66 | //============================================================================= |
| 67 | // this sendFrame is generally called by the internal RFM69 functions. Simply transfer to our modified version. |
| 68 | void 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. |
nothing calls this directly
no outgoing calls
no test coverage detected