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

Method initialize

RFM69_ATC.cpp:39–45  ·  view source on GitHub ↗

============================================================================= initialize() - some extra initialization before calling base class =============================================================================

Source from the content-addressed store, hash-verified

37// initialize() - some extra initialization before calling base class
38//=============================================================================
39bool 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected