============================================================================= initialize() - some extra initialization before calling base class =============================================================================
| 37 | // initialize() - some extra initialization before calling base class |
| 38 | //============================================================================= |
| 39 | bool RFM69_ATC::initialize(uint8_t freqBand, uint16_t nodeID, uint8_t networkID) { |
| 40 | _targetRSSI = 0; // TomWS1: default to disabled |
| 41 | _ackRSSI = 0; // TomWS1: no existing response at init time |
| 42 | ACK_RSSI_REQUESTED = 0; // TomWS1: init to none |
| 43 | _transmitLevelStep = 1; //increment 1 step at a time by default |
| 44 | return RFM69::initialize(freqBand, nodeID, networkID); // use base class to initialize most everything |
| 45 | } |
| 46 | |
| 47 | //============================================================================= |
| 48 | // sendAck() - updated to call new sendFrame with additional parameters |
nothing calls this directly
no outgoing calls
no test coverage detected