diff --git a/_a_x25_8h_source.html b/_a_x25_8h_source.html index e53f6768..9e6041d4 100644 --- a/_a_x25_8h_source.html +++ b/_a_x25_8h_source.html @@ -258,29 +258,29 @@ $(document).ready(function(){initNavTree('_a_x25_8h_source.html',''); initResiza
AFSKClient
Client for audio-based transmissions. Requires Arduino tone() function, and a module capable of direc...
Definition: AFSK.h:16
APRSClient
Client for APRS communication.
Definition: APRS.h:85
AX25Client
Client for AX25 communication.
Definition: AX25.h:233
-
AX25Client::sendFrame
int16_t sendFrame(AX25Frame *frame)
Transmit arbitrary AX.25 frame.
Definition: AX25.cpp:283
-
AX25Client::setCorrection
int16_t setCorrection(int16_t mark, int16_t space, float length=1.0f)
Set AFSK tone correction offset. On some platforms, this is required to get the audio produced by the...
Definition: AX25.cpp:232
-
AX25Client::transmit
int16_t transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00)
Transmit unnumbered information (UI) frame.
Definition: AX25.cpp:270
-
AX25Client::operator=
AX25Client & operator=(const AX25Client &ax25)
Overload for assignment operator.
Definition: AX25.cpp:216
-
AX25Client::begin
int16_t begin(const char *srcCallsign, uint8_t srcSSID=0x00, uint8_t preLen=8)
Initialization method.
Definition: AX25.cpp:244
-
AX25Client::AX25Client
AX25Client(PhysicalLayer *phy)
Constructor for 2-FSK mode.
Definition: AX25.cpp:187
+
AX25Client::sendFrame
int16_t sendFrame(AX25Frame *frame)
Transmit arbitrary AX.25 frame.
Definition: AX25.cpp:285
+
AX25Client::setCorrection
int16_t setCorrection(int16_t mark, int16_t space, float length=1.0f)
Set AFSK tone correction offset. On some platforms, this is required to get the audio produced by the...
Definition: AX25.cpp:234
+
AX25Client::transmit
int16_t transmit(const char *str, const char *destCallsign, uint8_t destSSID=0x00)
Transmit unnumbered information (UI) frame.
Definition: AX25.cpp:272
+
AX25Client::operator=
AX25Client & operator=(const AX25Client &ax25)
Overload for assignment operator.
Definition: AX25.cpp:218
+
AX25Client::begin
int16_t begin(const char *srcCallsign, uint8_t srcSSID=0x00, uint8_t preLen=8)
Initialization method.
Definition: AX25.cpp:246
+
AX25Client::AX25Client
AX25Client(PhysicalLayer *phy)
Constructor for 2-FSK mode.
Definition: AX25.cpp:189
AX25Frame
Abstraction of AX.25 frame format.
Definition: AX25.h:71
-
AX25Frame::setSendSequence
void setSendSequence(uint8_t seqNumber)
Method to set send sequence number.
Definition: AX25.cpp:183
-
AX25Frame::AX25Frame
AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control)
Overloaded constructor, for frames without info field.
Definition: AX25.cpp:5
+
AX25Frame::setSendSequence
void setSendSequence(uint8_t seqNumber)
Method to set send sequence number.
Definition: AX25.cpp:185
+
AX25Frame::AX25Frame
AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control)
Overloaded constructor, for frames without info field.
Definition: AX25.cpp:7
AX25Frame::repeaterCallsigns
char ** repeaterCallsigns
Array of repeater callsigns.
Definition: AX25.h:132
AX25Frame::srcCallsign
char srcCallsign[RADIOLIB_AX25_MAX_CALLSIGN_LEN+1]
Callsign of the source station.
Definition: AX25.h:86
-
AX25Frame::setRecvSequence
void setRecvSequence(uint8_t seqNumber)
Method to set receive sequence number.
Definition: AX25.cpp:179
+
AX25Frame::setRecvSequence
void setRecvSequence(uint8_t seqNumber)
Method to set receive sequence number.
Definition: AX25.cpp:181
AX25Frame::sendSeqNumber
uint16_t sendSeqNumber
Send sequence number.
Definition: AX25.h:121
AX25Frame::srcSSID
uint8_t srcSSID
SSID of the source station.
Definition: AX25.h:91
-
AX25Frame::operator=
AX25Frame & operator=(const AX25Frame &frame)
Overload for assignment operator.
Definition: AX25.cpp:108
+
AX25Frame::operator=
AX25Frame & operator=(const AX25Frame &frame)
Overload for assignment operator.
Definition: AX25.cpp:110
AX25Frame::control
uint8_t control
The control field.
Definition: AX25.h:101
AX25Frame::repeaterSSIDs
uint8_t * repeaterSSIDs
Array of repeater SSIDs.
Definition: AX25.h:137
AX25Frame::infoLen
uint16_t infoLen
Number of bytes in the information field.
Definition: AX25.h:111
-
AX25Frame::setRepeaters
int16_t setRepeaters(char **repeaterCallsigns, uint8_t *repeaterSSIDs, uint8_t numRepeaters)
Method to set the repeater callsigns and SSIDs.
Definition: AX25.cpp:143
+
AX25Frame::setRepeaters
int16_t setRepeaters(char **repeaterCallsigns, uint8_t *repeaterSSIDs, uint8_t numRepeaters)
Method to set the repeater callsigns and SSIDs.
Definition: AX25.cpp:145
AX25Frame::destCallsign
char destCallsign[RADIOLIB_AX25_MAX_CALLSIGN_LEN+1]
Callsign of the destination station.
Definition: AX25.h:76
AX25Frame::info
uint8_t * info
The info field.
Definition: AX25.h:127
AX25Frame::protocolID
uint8_t protocolID
The protocol identifier (PID) field.
Definition: AX25.h:106
-
AX25Frame::~AX25Frame
~AX25Frame()
Default destructor.
Definition: AX25.cpp:90
+
AX25Frame::~AX25Frame
~AX25Frame()
Default destructor.
Definition: AX25.cpp:92
AX25Frame::numRepeaters
uint8_t numRepeaters
Number of repeaters to be used.
Definition: AX25.h:96
AX25Frame::rcvSeqNumber
uint8_t rcvSeqNumber
Receive sequence number.
Definition: AX25.h:116
AX25Frame::destSSID
uint8_t destSSID
SSID of the destination station.
Definition: AX25.h:81
diff --git a/_build_opt_8h_source.html b/_build_opt_8h_source.html index 07e54fd3..c59dfd54 100644 --- a/_build_opt_8h_source.html +++ b/_build_opt_8h_source.html @@ -561,10 +561,10 @@ $(document).ready(function(){initNavTree('_build_opt_8h_source.html',''); initRe
473 
474 #if RADIOLIB_DEBUG
475  #if defined(RADIOLIB_BUILD_ARDUINO)
-
476  #define RADIOLIB_DEBUG_PRINT(...) Module::serialPrintf(__VA_ARGS__)
-
477  #define RADIOLIB_DEBUG_PRINTLN(M, ...) Module::serialPrintf(M "\n", ##__VA_ARGS__)
-
478  #define RADIOLIB_DEBUG_PRINT_LVL(LEVEL, M, ...) Module::serialPrintf(LEVEL "" M, ##__VA_ARGS__)
-
479  #define RADIOLIB_DEBUG_PRINTLN_LVL(LEVEL, M, ...) Module::serialPrintf(LEVEL "" M "\n", ##__VA_ARGS__)
+
476  #define RADIOLIB_DEBUG_PRINT(...) rlb_printf(__VA_ARGS__)
+
477  #define RADIOLIB_DEBUG_PRINTLN(M, ...) rlb_printf(M "\n", ##__VA_ARGS__)
+
478  #define RADIOLIB_DEBUG_PRINT_LVL(LEVEL, M, ...) rlb_printf(LEVEL "" M, ##__VA_ARGS__)
+
479  #define RADIOLIB_DEBUG_PRINTLN_LVL(LEVEL, M, ...) rlb_printf(LEVEL "" M "\n", ##__VA_ARGS__)
480 
481  // some platforms do not support printf("%f"), so it has to be done this way
482  #define RADIOLIB_DEBUG_PRINT_FLOAT(LEVEL, VAL, DECIMALS) RADIOLIB_DEBUG_PRINT(LEVEL); RADIOLIB_DEBUG_PORT.print(VAL, DECIMALS)
@@ -580,7 +580,7 @@ $(document).ready(function(){initNavTree('_build_opt_8h_source.html',''); initRe
492  #define RADIOLIB_DEBUG_PRINT_FLOAT(LEVEL, VAL, DECIMALS) RADIOLIB_DEBUG_PRINT(LEVEL "%.3f", VAL)
493  #endif
494 
-
495  #define RADIOLIB_DEBUG_HEXDUMP(LEVEL, ...) Module::hexdump(LEVEL, __VA_ARGS__)
+
495  #define RADIOLIB_DEBUG_HEXDUMP(LEVEL, ...) rlb_hexdump(LEVEL, __VA_ARGS__)
496 #else
497  #define RADIOLIB_DEBUG_PRINT(...) {}
498  #define RADIOLIB_DEBUG_PRINTLN(...) {}
diff --git a/_c_c1101_8h_source.html b/_c_c1101_8h_source.html index b14395fa..815c2c58 100644 --- a/_c_c1101_8h_source.html +++ b/_c_c1101_8h_source.html @@ -812,12 +812,12 @@ $(document).ready(function(){initNavTree('_c_c1101_8h_source.html',''); initResi
CC1101::setPacketReceivedAction
void setPacketReceivedAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is received.
Definition: CC1101.cpp:261
CC1101::getChipVersion
int16_t getChipVersion()
Read version SPI register. Should return CC1101_VERSION_LEGACY (0x04) or CC1101_VERSION_CURRENT (0x14...
Definition: CC1101.cpp:983
CC1101::setPacketSentAction
void setPacketSentAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is sent.
Definition: CC1101.cpp:269
-
CC1101::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
+
CC1101::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
CC1101::setRxBandwidth
int16_t setRxBandwidth(float rxBw)
Sets receiver bandwidth. Allowed values are 58, 68, 81, 102, 116, 135, 162, 203, 232,...
Definition: CC1101.cpp:482
CC1101::packetMode
int16_t packetMode()
Stops direct mode. It is required to call this method to switch from direct transmissions to packet-b...
Definition: CC1101.cpp:246
CC1101::setSyncWord
int16_t setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)
Sets 16-bit sync word as a two byte value.
Definition: CC1101.cpp:689
CC1101::autoSetRxBandwidth
int16_t autoSetRxBandwidth()
calculates and sets Rx bandwidth based on the freq, baud and freq uncertainty. Reimplement of atlas0f...
Definition: CC1101.cpp:503
-
CC1101::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
+
CC1101::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
CC1101::disableSyncWordFiltering
int16_t disableSyncWordFiltering(bool requireCarrierSense=false)
Disable preamble and sync word filtering and generation.
Definition: CC1101.cpp:857
CC1101::variablePacketLengthMode
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_CC1101_MAX_PACKET_LENGTH)
Set modem in variable packet length mode.
Definition: CC1101.cpp:834
CC1101::setDIOMapping
int16_t setDIOMapping(uint32_t pin, uint32_t value) override
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: CC1101.cpp:997
@@ -831,7 +831,7 @@ $(document).ready(function(){initNavTree('_c_c1101_8h_source.html',''); initResi
CC1101::enableSyncWordFiltering
int16_t enableSyncWordFiltering(uint8_t maxErrBits=0, bool requireCarrierSense=false)
Enable sync word filtering and generation.
Definition: CC1101.cpp:838
CC1101::standby
int16_t standby() override
Sets the module to standby mode.
Definition: CC1101.cpp:170
CC1101::setRfSwitchTable
void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: CC1101.cpp:960
-
CC1101::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+
CC1101::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
CC1101::disableAddressFiltering
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: CC1101.cpp:747
CC1101::setGdo0Action
void setGdo0Action(void(*func)(void), uint32_t dir)
Sets interrupt service routine to call when GDO0 activates.
Definition: CC1101.cpp:253
CC1101::receiveDirectAsync
int16_t receiveDirectAsync()
Starts asynchronous direct mode reception.
Definition: CC1101.cpp:229
@@ -840,7 +840,7 @@ $(document).ready(function(){initNavTree('_c_c1101_8h_source.html',''); initResi
CC1101::checkOutputPower
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable. This method is needed for compatibility with PhysicalLayer::ch...
Definition: CC1101.cpp:598
CC1101::clearGdo0Action
void clearGdo0Action()
Clears interrupt service routine to call when GDO0 activates.
Definition: CC1101.cpp:257
CC1101::getRSSI
float getRSSI() override
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. In direct or asynchronous...
Definition: CC1101.cpp:786
-
CC1101::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
CC1101::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
CC1101::getFrequencyDeviation
int16_t getFrequencyDeviation(float *freqDev)
Gets frequency deviation.
Definition: CC1101.cpp:548
CC1101::setPromiscuousMode
int16_t setPromiscuousMode(bool enable=true, bool requireCarrierSense=false)
Set modem in "sniff" mode: no packet filtering (e.g., no preamble, sync word, address,...
Definition: CC1101.cpp:872
CC1101::clearGdo2Action
void clearGdo2Action()
Clears interrupt service routine to call when GDO0 activates.
Definition: CC1101.cpp:285
@@ -856,14 +856,14 @@ $(document).ready(function(){initNavTree('_c_c1101_8h_source.html',''); initResi
CC1101::transmitDirectAsync
int16_t transmitDirectAsync(uint32_t frf=0)
Starts asynchronous direct mode transmission.
Definition: CC1101.cpp:198
CC1101::finishTransmit
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: CC1101.cpp:331
CC1101::setOOK
int16_t setOOK(bool enableOOK)
Enables/disables OOK modulation instead of FSK.
Definition: CC1101.cpp:757
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
-
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:74
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
+
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:75
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:141
-
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
-
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
-
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
+
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
+
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
+
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/_external_radio_8h_source.html b/_external_radio_8h_source.html index f3791635..721f8867 100644 --- a/_external_radio_8h_source.html +++ b/_external_radio_8h_source.html @@ -136,7 +136,7 @@ $(document).ready(function(){initNavTree('_external_radio_8h_source.html',''); i
ExternalRadio::getMod
Module * getMod() override
Method to retrieve pointer to the underlying Module instance.
Definition: ExternalRadio.cpp:40
ExternalRadio::setEncoding
int16_t setEncoding(uint8_t encoding) override
Dummy implementation overriding PhysicalLayer.
Definition: ExternalRadio.cpp:54
ExternalRadio::operator=
ExternalRadio & operator=(const ExternalRadio &ext)
Overload for assignment operator.
Definition: ExternalRadio.cpp:24
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:141
RadioLibHal
Hardware abstraction library base interface.
Definition: Hal.h:13
diff --git a/_f_e_c_8h_source.html b/_f_e_c_8h_source.html index bf021140..ef015aca 100644 --- a/_f_e_c_8h_source.html +++ b/_f_e_c_8h_source.html @@ -135,50 +135,40 @@ $(document).ready(function(){initNavTree('_f_e_c_8h_source.html',''); initResiza
71 // the global singleton
72 extern RadioLibBCH RadioLibBCHInstance;
73 
-
74 // macros to access bits in byte array, from http://www.mathcs.emory.edu/~cheung/Courses/255/Syllabus/1-C-intro/bit-array.html
-
75 #define SET_BIT_IN_ARRAY_MSB(A, k) ( A[((k)/8)] |= (1 << ((k)%8)) )
-
76 #define CLEAR_BIT_IN_ARRAY_MSB(A, k) ( A[((k)/8)] &= ~(1 << ((k)%8)) )
-
77 #define TEST_BIT_IN_ARRAY_MSB(A, k) ( A[((k)/8)] & (1 << ((k)%8)) )
-
78 #define GET_BIT_IN_ARRAY_MSB(A, k) ( (A[((k)/8)] & (1 << ((k)%8))) ? 1 : 0 )
-
79 #define SET_BIT_IN_ARRAY_LSB(A, k) ( A[((k)/8)] |= (1 << (7 - ((k)%8))) )
-
80 #define CLEAR_BIT_IN_ARRAY_LSB(A, k) ( A[((k)/8)] &= ~(1 << (7 - ((k)%8))) )
-
81 #define TEST_BIT_IN_ARRAY_LSB(A, k) ( A[((k)/8)] & (1 << (7 - ((k)%8))) )
-
82 #define GET_BIT_IN_ARRAY_LSB(A, k) ( (A[((k)/8)] & (1 << (7 - ((k)%8)))) ? 1 : 0 )
-
83 
-
123 class RadioLibConvCode {
-
124  public:
-
128  RadioLibConvCode();
-
129 
-
134  void begin(uint8_t rt);
-
135 
-
146  int16_t encode(const uint8_t* in, size_t in_bits, uint8_t* out, size_t* out_bits = NULL);
-
147 
-
148  private:
-
149  uint8_t enc_state = 0;
-
150  uint8_t rate = 0;
-
151 };
-
152 
-
153 // each 32-bit word stores 8 values, one per each nibble
-
154 static const uint32_t ConvCodeTable1_3[16] = {
-
155  0x07347043, 0x61521625, 0x16256152, 0x70430734,
-
156  0x43703407, 0x25165261, 0x52612516, 0x34074370,
-
157  0x70430734, 0x16256152, 0x61521625, 0x07347043,
-
158  0x34074370, 0x52612516, 0x25165261, 0x43703407,
-
159 };
-
160 
-
161 static const uint32_t ConvCodeTable1_2[4] = {
-
162  0x03122130, 0x21300312, 0x30211203, 0x12033021,
-
163 };
-
164 
-
165 extern RadioLibConvCode RadioLibConvCodeInstance;
-
166 
-
167 #endif
+
113 class RadioLibConvCode {
+
114  public:
+
118  RadioLibConvCode();
+
119 
+
124  void begin(uint8_t rt);
+
125 
+
136  int16_t encode(const uint8_t* in, size_t in_bits, uint8_t* out, size_t* out_bits = NULL);
+
137 
+
138  private:
+
139  uint8_t enc_state = 0;
+
140  uint8_t rate = 0;
+
141 };
+
142 
+
143 // each 32-bit word stores 8 values, one per each nibble
+
144 static const uint32_t ConvCodeTable1_3[16] = {
+
145  0x07347043, 0x61521625, 0x16256152, 0x70430734,
+
146  0x43703407, 0x25165261, 0x52612516, 0x34074370,
+
147  0x70430734, 0x16256152, 0x61521625, 0x07347043,
+
148  0x34074370, 0x52612516, 0x25165261, 0x43703407,
+
149 };
+
150 
+
151 static const uint32_t ConvCodeTable1_2[4] = {
+
152  0x03122130, 0x21300312, 0x30211203, 0x12033021,
+
153 };
+
154 
+
155 extern RadioLibConvCode RadioLibConvCodeInstance;
+
156 
+
157 #endif
RadioLibBCH
Class to calculate Bose–Chaudhuri–Hocquenghem (BCH) class of forward error correction codes....
Definition: FEC.h:26
RadioLibBCH::RadioLibBCH
RadioLibBCH()
Default constructor.
Definition: FEC.cpp:4
RadioLibBCH::begin
void begin(uint8_t n, uint8_t k, uint32_t poly)
Initialization method.
Definition: FEC.cpp:21
RadioLibBCH::~RadioLibBCH
~RadioLibBCH()
Default destructor.
Definition: FEC.cpp:8
RadioLibBCH::encode
uint32_t encode(uint32_t dataword)
Encoding method - encodes one data word (without check bits) into a code word (with check bits).
Definition: FEC.cpp:200
-
RadioLibConvCode
Class to perform convolutional coding with variable rates. Only 1/2 and 1/3 rate is currently support...
Definition: FEC.h:123
+
RadioLibConvCode
Class to perform convolutional coding with variable rates. Only 1/2 and 1/3 rate is currently support...
Definition: FEC.h:113
RadioLibConvCode::RadioLibConvCode
RadioLibConvCode()
Default constructor.
Definition: FEC.cpp:311
RadioLibConvCode::encode
int16_t encode(const uint8_t *in, size_t in_bits, uint8_t *out, size_t *out_bits=NULL)
Encoding method.
Definition: FEC.cpp:320
RadioLibConvCode::begin
void begin(uint8_t rt)
Initialization method.
Definition: FEC.cpp:315
diff --git a/_l_l_c_c68_8h_source.html b/_l_l_c_c68_8h_source.html index 0697da7e..7d44b3ce 100644 --- a/_l_l_c_c68_8h_source.html +++ b/_l_l_c_c68_8h_source.html @@ -131,7 +131,7 @@ $(document).ready(function(){initNavTree('_l_l_c_c68_8h_source.html',''); initRe
LLCC68::LLCC68
LLCC68(Module *mod)
Default constructor.
Definition: LLCC68.cpp:4
LLCC68::setDataRate
int16_t setDataRate(DataRate_t dr) override
Set data.
Definition: LLCC68.cpp:56
LLCC68::setSpreadingFactor
int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa spreading factor. Allowed values range from 5 to 11, depending on currently set spreading f...
Definition: LLCC68.cpp:38
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1262
Derived class for SX1262 modules.
Definition: SX1262.h:22
DataRate_t
Common data rate structure.
Definition: PhysicalLayer.h:74
diff --git a/_l_r1110_8h_source.html b/_l_r1110_8h_source.html index 67097e1a..7a441064 100644 --- a/_l_r1110_8h_source.html +++ b/_l_r1110_8h_source.html @@ -140,7 +140,7 @@ $(document).ready(function(){initNavTree('_l_r1110_8h_source.html',''); initResi
LR1110::checkOutputPower
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable. This method is needed for compatibility with PhysicalLayer::ch...
Definition: LR1110.cpp:87
LR1110::beginGFSK
int16_t beginGFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6)
Initialization method for FSK modem.
Definition: LR1110.cpp:21
LR11x0
Base class for LR11x0 series. All derived classes for LR11x0 (e.g. LR1110 or LR1120) inherit from thi...
Definition: LR11x0.h:871
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
diff --git a/_l_r1120_8h_source.html b/_l_r1120_8h_source.html index ff830635..fe7edc4a 100644 --- a/_l_r1120_8h_source.html +++ b/_l_r1120_8h_source.html @@ -143,7 +143,7 @@ $(document).ready(function(){initNavTree('_l_r1120_8h_source.html',''); initResi
LR1120::beginLRFHSS
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6)
Initialization method for LR-FHSS modem.
Definition: LR1120.cpp:34
LR1120::LR1120
LR1120(Module *mod)
Default constructor.
Definition: LR1120.cpp:4
LR11x0
Base class for LR11x0 series. All derived classes for LR11x0 (e.g. LR1110 or LR1120) inherit from thi...
Definition: LR11x0.h:871
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
diff --git a/_l_r1121_8h_source.html b/_l_r1121_8h_source.html index 0d4585aa..afb5ee90 100644 --- a/_l_r1121_8h_source.html +++ b/_l_r1121_8h_source.html @@ -116,7 +116,7 @@ $(document).ready(function(){initNavTree('_l_r1121_8h_source.html',''); initResi
LR1120
Derived class for LR1120 modules.
Definition: LR1120.h:15
LR1121
Derived class for LR1121 modules.
Definition: LR1121.h:16
LR1121::LR1121
LR1121(Module *mod)
Default constructor.
Definition: LR1121.cpp:4
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
diff --git a/_l_r11x0_8h_source.html b/_l_r11x0_8h_source.html index 3826fefd..e92c4085 100644 --- a/_l_r11x0_8h_source.html +++ b/_l_r11x0_8h_source.html @@ -1315,12 +1315,12 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
LR11x0::MODE_STBY
@ MODE_STBY
Definition: LR11x0.h:893
LR11x0::MODE_TX_HF
@ MODE_TX_HF
Definition: LR11x0.h:901
LR11x0::startWifiScan
int16_t startWifiScan(char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)
Start passive WiFi scan. BUSY pin will be de-activated when the scan is finished.
Definition: LR11x0.cpp:1510
-
LR11x0::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
+
LR11x0::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
LR11x0::explicitHeader
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: LR11x0.cpp:1419
LR11x0::XTAL
bool XTAL
Whether the module has an XTAL (true) or TCXO (false). Defaults to false.
Definition: LR11x0.h:911
LR11x0::getWifiScanResult
int16_t getWifiScanResult(LR11x0WifiResult_t *result, uint8_t index, bool brief=false)
Retrieve passive WiFi scan result.
Definition: LR11x0.cpp:1569
LR11x0::setIrqAction
void setIrqAction(void(*func)(void))
Sets interrupt service routine to call when IRQ1 activates.
Definition: LR11x0.cpp:391
-
LR11x0::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
+
LR11x0::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
LR11x0::checkDataRate
int16_t checkDataRate(DataRate_t dr) override
Check the data rate can be configured by this module.
Definition: LR11x0.cpp:1088
LR11x0::startChannelScan
int16_t startChannelScan() override
Interrupt-driven channel activity detection method. IRQ1 will be activated when LoRa preamble is dete...
Definition: LR11x0.cpp:589
LR11x0::setCRC
int16_t setCRC(uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)
Sets CRC configuration.
Definition: LR11x0.cpp:1182
@@ -1343,7 +1343,7 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
LR11x0::setEncoding
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Available in GFSK mode only. Serves only as alias for PhysicalLayer compa...
Definition: LR11x0.cpp:1017
LR11x0::setLrFhssConfig
int16_t setLrFhssConfig(uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)
Sets LR-FHSS configuration.
Definition: LR11x0.cpp:1489
LR11x0::setPacketSentAction
void setPacketSentAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is sent.
Definition: LR11x0.cpp:407
-
LR11x0::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+
LR11x0::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
LR11x0::setRegulatorLDO
int16_t setRegulatorLDO()
Set regulator mode to LDO.
Definition: LR11x0.cpp:1427
LR11x0::clearPacketSentAction
void clearPacketSentAction() override
Clears interrupt service routine to call when a packet is sent.
Definition: LR11x0.cpp:411
LR11x0::updateGnssAlmanac
int16_t updateGnssAlmanac(uint8_t constellation)
Perform almanac update. Must be called immediately after gnssDelayUntilSubframe.
Definition: LR11x0.cpp:1937
@@ -1361,7 +1361,7 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
LR11x0::setBitRate
int16_t setBitRate(float br) override
Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps.
Definition: LR11x0.cpp:777
LR11x0::updateFirmware
int16_t updateFirmware(const uint32_t *image, size_t size, bool nonvolatile=true)
Method to upload new firmware image to the device. The device will be automatically erased,...
Definition: LR11x0.cpp:1694
LR11x0::gnssDelayUntilSubframe
int16_t gnssDelayUntilSubframe(LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation)
Blocking wait until the next subframe with almanac data is available. Used to control timing during a...
Definition: LR11x0.cpp:1911
-
LR11x0::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
LR11x0::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
LR11x0::implicitHeader
int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission.
Definition: LR11x0.cpp:1415
LR11x0::beginGFSK
int16_t beginGFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage)
Initialization method for FSK modem.
Definition: LR11x0.cpp:60
LR11x0::getTimeOnAir
RadioLibTime_t getTimeOnAir(size_t len) override
Get expected time-on-air for a given size of payload.
Definition: LR11x0.cpp:1293
@@ -1385,17 +1385,17 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
LR11x0::setBroadcastAddress
int16_t setBroadcastAddress(uint8_t broadAddr)
Sets broadcast address. Calling this method will also enable address filtering for node and broadcast...
Definition: LR11x0.cpp:951
LR11x0::invertIQ
int16_t invertIQ(bool enable) override
Enable/disable inversion of the I and Q signals.
Definition: LR11x0.cpp:1226
LR11x0::setWiFiScanAction
void setWiFiScanAction(void(*func)(void))
Sets interrupt service routine to call when a WiFi scan is completed.
Definition: LR11x0.cpp:1547
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
-
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:74
-
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:111
-
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:105
-
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:108
-
Module::MODE_END_OF_TABLE
@ MODE_END_OF_TABLE
End of table marker, use END_OF_MODE_TABLE constant instead. Value is zero to ensure zero-initialized...
Definition: Module.h:102
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
+
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:75
+
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:112
+
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:106
+
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:109
+
Module::MODE_END_OF_TABLE
@ MODE_END_OF_TABLE
End of table marker, use END_OF_MODE_TABLE constant instead. Value is zero to ensure zero-initialized...
Definition: Module.h:103
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:141
-
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
-
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
-
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
+
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
+
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
+
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
RadioLibTime_t
unsigned long RadioLibTime_t
Type used for durations in RadioLib.
Definition: TypeDef.h:642
LR11x0GnssAlmanacStatus_t
Structure to save information about the GNSS almanac. This is not the actual almanac,...
Definition: LR11x0.h:849
LR11x0GnssAlmanacStatus_t::start
RadioLibTime_t start
Timestamp of when almanac status was retrieved - timeUntilSubframe is relative to this value.
Definition: LR11x0.h:863
@@ -1454,7 +1454,7 @@ $(document).ready(function(){initNavTree('_l_r11x0_8h_source.html',''); initResi
LR11x0WifiResultFull_t::frameType
uint8_t frameType
Frame type. See LR11x0 user manual for details.
Definition: LR11x0.h:687
LR11x0WifiResultFull_t::frameSubType
uint8_t frameSubType
Frame sub type. See LR11x0 user manual for details.
Definition: LR11x0.h:690
LR11x0WifiResultFull_t::toDistributionSystem
bool toDistributionSystem
Frame sent from client station to distribution system.
Definition: LR11x0.h:693
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
ChannelScanConfig_t
Common channel scan configuration structure.
Definition: PhysicalLayer.h:125
DataRate_t
Common data rate structure.
Definition: PhysicalLayer.h:74
diff --git a/_module_8h_source.html b/_module_8h_source.html index b9971df1..e973f8bc 100644 --- a/_module_8h_source.html +++ b/_module_8h_source.html @@ -91,251 +91,243 @@ $(document).ready(function(){initNavTree('_module_8h_source.html',''); initResiz
3 
4 #include "TypeDef.h"
5 #include "Hal.h"
-
6 
-
7 #if defined(RADIOLIB_BUILD_ARDUINO)
-
8  #include <SPI.h>
-
9 #endif
-
10 
-
11 #if defined(STM32WLxx)
-
12  #include <SubGhz.h>
-
13 #endif
-
14 
-
19 #define END_OF_MODE_TABLE { Module::MODE_END_OF_TABLE, {} }
-
20 
-
27 #define RADIOLIB_MODULE_SPI_COMMAND_READ (0)
-
28 
-
30 #define RADIOLIB_MODULE_SPI_COMMAND_WRITE (1)
-
31 
-
33 #define RADIOLIB_MODULE_SPI_COMMAND_NOP (2)
-
34 
-
36 #define RADIOLIB_MODULE_SPI_COMMAND_STATUS (3)
-
37 
-
48 #define RADIOLIB_MODULE_SPI_WIDTH_ADDR (0)
-
49 
-
51 #define RADIOLIB_MODULE_SPI_WIDTH_CMD (1)
-
52 
-
54 #define RADIOLIB_MODULE_SPI_WIDTH_STATUS (2)
-
55 
-
65 class Module {
-
66  public:
-
74  static const size_t RFSWITCH_MAX_PINS = 5;
-
75 
-
81  struct RfSwitchMode_t {
-
83  uint8_t mode;
-
84 
-
86  uint32_t values[RFSWITCH_MAX_PINS];
-
87  };
-
88 
-
97  enum OpMode_t {
-
102  MODE_END_OF_TABLE = 0,
-
103 
-
105  MODE_IDLE,
-
106 
-
108  MODE_RX,
-
109 
-
111  MODE_TX,
-
112  };
-
113 
-
114  #if defined(RADIOLIB_BUILD_ARDUINO)
-
122  Module(uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio = RADIOLIB_NC);
-
123 
-
133  Module(uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio, SPIClass& spi, SPISettings spiSettings = RADIOLIB_DEFAULT_SPI_SETTINGS);
-
134  #endif
-
135 
-
144  Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio = RADIOLIB_NC);
-
145 
-
150  Module(const Module& mod);
-
151 
-
156  Module& operator=(const Module& mod);
-
157 
-
158  // public member variables
-
160  RadioLibHal* hal = NULL;
-
161 
-
163  typedef int16_t (*SPIparseStatusCb_t)(uint8_t in);
-
164 
-
166  typedef int16_t (*SPIcheckStatusCb_t)(Module* mod);
-
167 
-
168  enum BitWidth_t {
-
169  BITS_0 = 0,
-
170  BITS_8 = 8,
-
171  BITS_16 = 16,
-
172  BITS_32 = 32,
-
173  };
-
174 
-
179  struct SPIConfig_t {
-
181  bool stream;
-
182 
-
184  int16_t err;
-
185 
-
187  uint16_t cmds[4];
-
188 
-
190  BitWidth_t widths[3];
-
191 
-
193  uint8_t statusPos;
-
194 
-
196  SPIparseStatusCb_t parseStatusCb;
-
197 
-
199  SPIcheckStatusCb_t checkStatusCb;
-
200 
-
202  RadioLibTime_t timeout;
-
203  };
-
204 
-
206  SPIConfig_t spiConfig = {
-
207  .stream = false,
-
208  .err = RADIOLIB_ERR_UNKNOWN,
-
209  .cmds = { 0x00, 0x80, 0x00, 0x00 },
-
210  .widths = { Module::BITS_8, Module::BITS_0, Module::BITS_8 },
-
211  .statusPos = 0,
-
212  .parseStatusCb = nullptr,
-
213  .checkStatusCb = nullptr,
-
214  .timeout = 1000,
-
215  };
-
216 
-
217  #if RADIOLIB_INTERRUPT_TIMING
-
218 
-
222  typedef void (*TimerSetupCb_t)(uint32_t len);
-
223 
-
227  TimerSetupCb_t TimerSetupCb = nullptr;
-
228 
-
232  volatile bool TimerFlag = false;
-
233 
-
234  #endif
-
235 
-
236  // basic methods
-
237 
-
241  void init();
-
242 
-
246  void term();
-
247 
-
248  // SPI methods
-
249 
-
257  int16_t SPIgetRegValue(uint32_t reg, uint8_t msb = 7, uint8_t lsb = 0);
-
258 
-
269  int16_t SPIsetRegValue(uint32_t reg, uint8_t value, uint8_t msb = 7, uint8_t lsb = 0, uint8_t checkInterval = 2, uint8_t checkMask = 0xFF);
-
270 
-
277  void SPIreadRegisterBurst(uint32_t reg, size_t numBytes, uint8_t* inBytes);
-
278 
-
284  uint8_t SPIreadRegister(uint32_t reg);
-
285 
-
292  void SPIwriteRegisterBurst(uint32_t reg, uint8_t* data, size_t numBytes);
-
293 
-
299  void SPIwriteRegister(uint32_t reg, uint8_t data);
-
300 
-
309  void SPItransfer(uint16_t cmd, uint32_t reg, uint8_t* dataOut, uint8_t* dataIn, size_t numBytes);
-
310 
-
315  int16_t SPIcheckStream();
-
316 
-
326  int16_t SPIreadStream(uint16_t cmd, uint8_t* data, size_t numBytes, bool waitForGpio = true, bool verify = true);
-
327 
-
338  int16_t SPIreadStream(uint8_t* cmd, uint8_t cmdLen, uint8_t* data, size_t numBytes, bool waitForGpio = true, bool verify = true);
-
339 
-
349  int16_t SPIwriteStream(uint16_t cmd, uint8_t* data, size_t numBytes, bool waitForGpio = true, bool verify = true);
-
350 
-
361  int16_t SPIwriteStream(uint8_t* cmd, uint8_t cmdLen, uint8_t* data, size_t numBytes, bool waitForGpio = true, bool verify = true);
-
362 
-
374  int16_t SPItransferStream(const uint8_t* cmd, uint8_t cmdLen, bool write, uint8_t* dataOut, uint8_t* dataIn, size_t numBytes, bool waitForGpio);
-
375 
-
376  // pin number access methods
-
377 
-
382  uint32_t getCs() const { return(csPin); }
-
383 
-
388  uint32_t getIrq() const { return(irqPin); }
-
389 
-
394  uint32_t getRst() const { return(rstPin); }
-
395 
-
400  uint32_t getGpio() const { return(gpioPin); }
-
401 
-
418  void setRfSwitchPins(uint32_t rxEn, uint32_t txEn);
-
419 
-
482  void setRfSwitchTable(const uint32_t (&pins)[RFSWITCH_MAX_PINS], const RfSwitchMode_t table[]);
-
483 
-
491  const RfSwitchMode_t *findRfSwitchMode(uint8_t mode) const;
-
492 
-
497  void setRfSwitchState(uint8_t mode);
-
498 
-
506  void waitForMicroseconds(RadioLibTime_t start, RadioLibTime_t len);
-
507 
-
514  static uint32_t reflect(uint32_t in, uint8_t bits);
-
515 
-
516  #if RADIOLIB_DEBUG
-
526  static void hexdump(const char* level, uint8_t* data, size_t len, uint32_t offset = 0, uint8_t width = 1, bool be = false);
-
527 
-
534  void regdump(const char* level, uint16_t start, size_t len);
-
535  #endif
-
536 
-
537  #if RADIOLIB_DEBUG and defined(RADIOLIB_BUILD_ARDUINO)
-
538  static size_t serialPrintf(const char* format, ...);
-
539  #endif
-
540 
-
541 #if !RADIOLIB_GODMODE
-
542  private:
-
543 #endif
-
544  uint32_t csPin = RADIOLIB_NC;
-
545  uint32_t irqPin = RADIOLIB_NC;
-
546  uint32_t rstPin = RADIOLIB_NC;
-
547  uint32_t gpioPin = RADIOLIB_NC;
-
548 
-
549  // RF switch pins and table
-
550  uint32_t rfSwitchPins[RFSWITCH_MAX_PINS] = { RADIOLIB_NC, RADIOLIB_NC, RADIOLIB_NC, RADIOLIB_NC, RADIOLIB_NC };
-
551  const RfSwitchMode_t *rfSwitchTable = nullptr;
-
552 
-
553  #if RADIOLIB_INTERRUPT_TIMING
-
554  uint32_t prevTimingLen = 0;
-
555  #endif
-
556 };
-
557 
-
558 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
-
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:74
-
Module::SPIcheckStatusCb_t
int16_t(* SPIcheckStatusCb_t)(Module *mod)
Callback for validation SPI status.
Definition: Module.h:166
-
Module::SPIwriteRegisterBurst
void SPIwriteRegisterBurst(uint32_t reg, uint8_t *data, size_t numBytes)
SPI burst write method.
Definition: Module.cpp:143
-
Module::SPIgetRegValue
int16_t SPIgetRegValue(uint32_t reg, uint8_t msb=7, uint8_t lsb=0)
SPI read method that automatically masks unused bits. This method is the preferred SPI read mechanism...
Definition: Module.cpp:55
-
Module::spiConfig
SPIConfig_t spiConfig
SPI configuration structure. The default configuration corresponds to register-access modules,...
Definition: Module.h:206
-
Module::SPItransferStream
int16_t SPItransferStream(const uint8_t *cmd, uint8_t cmdLen, bool write, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes, bool waitForGpio)
SPI single transfer method for modules with stream-type SPI interface (SX126x, SX128x etc....
Definition: Module.cpp:316
-
Module::hal
RadioLibHal * hal
Hardware abstraction layer to be used.
Definition: Module.h:160
-
Module::term
void term()
Terminate low-level module control.
Definition: Module.cpp:50
-
Module::reflect
static uint32_t reflect(uint32_t in, uint8_t bits)
Function to reflect bits within a byte.
Definition: Module.cpp:464
-
Module::operator=
Module & operator=(const Module &mod)
Overload for assignment operator.
Definition: Module.cpp:33
-
Module::getGpio
uint32_t getGpio() const
Access method to get the pin number of second interrupt/GPIO.
Definition: Module.h:400
-
Module::findRfSwitchMode
const RfSwitchMode_t * findRfSwitchMode(uint8_t mode) const
Find a mode in the RfSwitchTable.
Definition: Module.cpp:590
-
Module::OpMode_t
OpMode_t
Constants to use in a mode table set be setRfSwitchTable. These constants work for most radios,...
Definition: Module.h:97
-
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:111
-
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:105
-
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:108
-
Module::MODE_END_OF_TABLE
@ MODE_END_OF_TABLE
End of table marker, use END_OF_MODE_TABLE constant instead. Value is zero to ensure zero-initialized...
Definition: Module.h:102
-
Module::SPIcheckStream
int16_t SPIcheckStream()
Method to check the result of last SPI stream transfer.
Definition: Module.cpp:293
-
Module::SPIwriteRegister
void SPIwriteRegister(uint32_t reg, uint8_t data)
SPI basic write method. Use of this method is reserved for special cases, SPIsetRegValue should be us...
Definition: Module.cpp:159
-
Module::setRfSwitchPins
void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: Module.cpp:567
-
Module::waitForMicroseconds
void waitForMicroseconds(RadioLibTime_t start, RadioLibTime_t len)
Wait for time to elapse, either using the microsecond timer, or the TimerFlag. Note that in interrupt...
Definition: Module.cpp:446
-
Module::Module
Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)
Module constructor.
Definition: Module.cpp:25
-
Module::SPIparseStatusCb_t
int16_t(* SPIparseStatusCb_t)(uint8_t in)
Callback for parsing SPI status.
Definition: Module.h:163
-
Module::getCs
uint32_t getCs() const
Access method to get the pin number of SPI chip select.
Definition: Module.h:382
-
Module::SPItransfer
void SPItransfer(uint16_t cmd, uint32_t reg, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes)
SPI single transfer method.
Definition: Module.cpp:175
-
Module::SPIreadRegister
uint8_t SPIreadRegister(uint32_t reg)
SPI basic read method. Use of this method is reserved for special cases, SPIgetRegValue should be use...
Definition: Module.cpp:125
-
Module::getIrq
uint32_t getIrq() const
Access method to get the pin number of interrupt/GPIO.
Definition: Module.h:388
-
Module::setRfSwitchTable
void setRfSwitchTable(const uint32_t(&pins)[RFSWITCH_MAX_PINS], const RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: Module.cpp:583
-
Module::SPIreadRegisterBurst
void SPIreadRegisterBurst(uint32_t reg, size_t numBytes, uint8_t *inBytes)
SPI burst read method.
Definition: Module.cpp:109
-
Module::init
void init()
Initialize low-level module control.
Definition: Module.cpp:43
-
Module::getRst
uint32_t getRst() const
Access method to get the pin number of hardware reset pin.
Definition: Module.h:394
-
Module::SPIreadStream
int16_t SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)
Method to perform a read transaction with SPI stream.
Definition: Module.cpp:237
-
Module::SPIsetRegValue
int16_t SPIsetRegValue(uint32_t reg, uint8_t value, uint8_t msb=7, uint8_t lsb=0, uint8_t checkInterval=2, uint8_t checkMask=0xFF)
Overwrite-safe SPI write method with verification. This method is the preferred SPI write mechanism.
Definition: Module.cpp:65
-
Module::SPIwriteStream
int16_t SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)
Method to perform a write transaction with SPI stream.
Definition: Module.cpp:265
-
Module::setRfSwitchState
void setRfSwitchState(uint8_t mode)
Set RF switch state.
Definition: Module.cpp:600
+
6 #include "utils/Utils.h"
+
7 
+
8 #if defined(RADIOLIB_BUILD_ARDUINO)
+
9  #include <SPI.h>
+
10 #endif
+
11 
+
12 #if defined(STM32WLxx)
+
13  #include <SubGhz.h>
+
14 #endif
+
15 
+
20 #define END_OF_MODE_TABLE { Module::MODE_END_OF_TABLE, {} }
+
21 
+
28 #define RADIOLIB_MODULE_SPI_COMMAND_READ (0)
+
29 
+
31 #define RADIOLIB_MODULE_SPI_COMMAND_WRITE (1)
+
32 
+
34 #define RADIOLIB_MODULE_SPI_COMMAND_NOP (2)
+
35 
+
37 #define RADIOLIB_MODULE_SPI_COMMAND_STATUS (3)
+
38 
+
49 #define RADIOLIB_MODULE_SPI_WIDTH_ADDR (0)
+
50 
+
52 #define RADIOLIB_MODULE_SPI_WIDTH_CMD (1)
+
53 
+
55 #define RADIOLIB_MODULE_SPI_WIDTH_STATUS (2)
+
56 
+
66 class Module {
+
67  public:
+
75  static const size_t RFSWITCH_MAX_PINS = 5;
+
76 
+
82  struct RfSwitchMode_t {
+
84  uint8_t mode;
+
85 
+
87  uint32_t values[RFSWITCH_MAX_PINS];
+
88  };
+
89 
+
98  enum OpMode_t {
+
103  MODE_END_OF_TABLE = 0,
+
104 
+
106  MODE_IDLE,
+
107 
+
109  MODE_RX,
+
110 
+
112  MODE_TX,
+
113  };
+
114 
+
115  #if defined(RADIOLIB_BUILD_ARDUINO)
+
123  Module(uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio = RADIOLIB_NC);
+
124 
+
134  Module(uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio, SPIClass& spi, SPISettings spiSettings = RADIOLIB_DEFAULT_SPI_SETTINGS);
+
135  #endif
+
136 
+
145  Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio = RADIOLIB_NC);
+
146 
+
151  Module(const Module& mod);
+
152 
+
157  Module& operator=(const Module& mod);
+
158 
+
159  // public member variables
+
161  RadioLibHal* hal = NULL;
+
162 
+
164  typedef int16_t (*SPIparseStatusCb_t)(uint8_t in);
+
165 
+
167  typedef int16_t (*SPIcheckStatusCb_t)(Module* mod);
+
168 
+
169  enum BitWidth_t {
+
170  BITS_0 = 0,
+
171  BITS_8 = 8,
+
172  BITS_16 = 16,
+
173  BITS_32 = 32,
+
174  };
+
175 
+
180  struct SPIConfig_t {
+
182  bool stream;
+
183 
+
185  int16_t err;
+
186 
+
188  uint16_t cmds[4];
+
189 
+
191  BitWidth_t widths[3];
+
192 
+
194  uint8_t statusPos;
+
195 
+
197  SPIparseStatusCb_t parseStatusCb;
+
198 
+
200  SPIcheckStatusCb_t checkStatusCb;
+
201 
+
203  RadioLibTime_t timeout;
+
204  };
+
205 
+
207  SPIConfig_t spiConfig = {
+
208  .stream = false,
+
209  .err = RADIOLIB_ERR_UNKNOWN,
+
210  .cmds = { 0x00, 0x80, 0x00, 0x00 },
+
211  .widths = { Module::BITS_8, Module::BITS_0, Module::BITS_8 },
+
212  .statusPos = 0,
+
213  .parseStatusCb = nullptr,
+
214  .checkStatusCb = nullptr,
+
215  .timeout = 1000,
+
216  };
+
217 
+
218  #if RADIOLIB_INTERRUPT_TIMING
+
219 
+
223  typedef void (*TimerSetupCb_t)(uint32_t len);
+
224 
+
228  TimerSetupCb_t TimerSetupCb = nullptr;
+
229 
+
233  volatile bool TimerFlag = false;
+
234 
+
235  #endif
+
236 
+
237  // basic methods
+
238 
+
242  void init();
+
243 
+
247  void term();
+
248 
+
249  // SPI methods
+
250 
+
258  int16_t SPIgetRegValue(uint32_t reg, uint8_t msb = 7, uint8_t lsb = 0);
+
259 
+
270  int16_t SPIsetRegValue(uint32_t reg, uint8_t value, uint8_t msb = 7, uint8_t lsb = 0, uint8_t checkInterval = 2, uint8_t checkMask = 0xFF);
+
271 
+
278  void SPIreadRegisterBurst(uint32_t reg, size_t numBytes, uint8_t* inBytes);
+
279 
+
285  uint8_t SPIreadRegister(uint32_t reg);
+
286 
+
293  void SPIwriteRegisterBurst(uint32_t reg, uint8_t* data, size_t numBytes);
+
294 
+
300  void SPIwriteRegister(uint32_t reg, uint8_t data);
+
301 
+
310  void SPItransfer(uint16_t cmd, uint32_t reg, uint8_t* dataOut, uint8_t* dataIn, size_t numBytes);
+
311 
+
316  int16_t SPIcheckStream();
+
317 
+
327  int16_t SPIreadStream(uint16_t cmd, uint8_t* data, size_t numBytes, bool waitForGpio = true, bool verify = true);
+
328 
+
339  int16_t SPIreadStream(uint8_t* cmd, uint8_t cmdLen, uint8_t* data, size_t numBytes, bool waitForGpio = true, bool verify = true);
+
340 
+
350  int16_t SPIwriteStream(uint16_t cmd, uint8_t* data, size_t numBytes, bool waitForGpio = true, bool verify = true);
+
351 
+
362  int16_t SPIwriteStream(uint8_t* cmd, uint8_t cmdLen, uint8_t* data, size_t numBytes, bool waitForGpio = true, bool verify = true);
+
363 
+
375  int16_t SPItransferStream(const uint8_t* cmd, uint8_t cmdLen, bool write, uint8_t* dataOut, uint8_t* dataIn, size_t numBytes, bool waitForGpio);
+
376 
+
377  // pin number access methods
+
378 
+
383  uint32_t getCs() const { return(csPin); }
+
384 
+
389  uint32_t getIrq() const { return(irqPin); }
+
390 
+
395  uint32_t getRst() const { return(rstPin); }
+
396 
+
401  uint32_t getGpio() const { return(gpioPin); }
+
402 
+
419  void setRfSwitchPins(uint32_t rxEn, uint32_t txEn);
+
420 
+
483  void setRfSwitchTable(const uint32_t (&pins)[RFSWITCH_MAX_PINS], const RfSwitchMode_t table[]);
+
484 
+
492  const RfSwitchMode_t *findRfSwitchMode(uint8_t mode) const;
+
493 
+
498  void setRfSwitchState(uint8_t mode);
+
499 
+
507  void waitForMicroseconds(RadioLibTime_t start, RadioLibTime_t len);
+
508 
+
509  #if RADIOLIB_DEBUG
+
516  void regdump(const char* level, uint16_t start, size_t len);
+
517  #endif
+
518 
+
519 #if !RADIOLIB_GODMODE
+
520  private:
+
521 #endif
+
522  uint32_t csPin = RADIOLIB_NC;
+
523  uint32_t irqPin = RADIOLIB_NC;
+
524  uint32_t rstPin = RADIOLIB_NC;
+
525  uint32_t gpioPin = RADIOLIB_NC;
+
526 
+
527  // RF switch pins and table
+
528  uint32_t rfSwitchPins[RFSWITCH_MAX_PINS] = { RADIOLIB_NC, RADIOLIB_NC, RADIOLIB_NC, RADIOLIB_NC, RADIOLIB_NC };
+
529  const RfSwitchMode_t *rfSwitchTable = nullptr;
+
530 
+
531  #if RADIOLIB_INTERRUPT_TIMING
+
532  uint32_t prevTimingLen = 0;
+
533  #endif
+
534 };
+
535 
+
536 #endif
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
+
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:75
+
Module::SPIcheckStatusCb_t
int16_t(* SPIcheckStatusCb_t)(Module *mod)
Callback for validation SPI status.
Definition: Module.h:167
+
Module::SPIwriteRegisterBurst
void SPIwriteRegisterBurst(uint32_t reg, uint8_t *data, size_t numBytes)
SPI burst write method.
Definition: Module.cpp:137
+
Module::SPIgetRegValue
int16_t SPIgetRegValue(uint32_t reg, uint8_t msb=7, uint8_t lsb=0)
SPI read method that automatically masks unused bits. This method is the preferred SPI read mechanism...
Definition: Module.cpp:49
+
Module::spiConfig
SPIConfig_t spiConfig
SPI configuration structure. The default configuration corresponds to register-access modules,...
Definition: Module.h:207
+
Module::SPItransferStream
int16_t SPItransferStream(const uint8_t *cmd, uint8_t cmdLen, bool write, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes, bool waitForGpio)
SPI single transfer method for modules with stream-type SPI interface (SX126x, SX128x etc....
Definition: Module.cpp:310
+
Module::hal
RadioLibHal * hal
Hardware abstraction layer to be used.
Definition: Module.h:161
+
Module::term
void term()
Terminate low-level module control.
Definition: Module.cpp:44
+
Module::operator=
Module & operator=(const Module &mod)
Overload for assignment operator.
Definition: Module.cpp:27
+
Module::getGpio
uint32_t getGpio() const
Access method to get the pin number of second interrupt/GPIO.
Definition: Module.h:401
+
Module::findRfSwitchMode
const RfSwitchMode_t * findRfSwitchMode(uint8_t mode) const
Find a mode in the RfSwitchTable.
Definition: Module.cpp:496
+
Module::OpMode_t
OpMode_t
Constants to use in a mode table set be setRfSwitchTable. These constants work for most radios,...
Definition: Module.h:98
+
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:112
+
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:106
+
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:109
+
Module::MODE_END_OF_TABLE
@ MODE_END_OF_TABLE
End of table marker, use END_OF_MODE_TABLE constant instead. Value is zero to ensure zero-initialized...
Definition: Module.h:103
+
Module::SPIcheckStream
int16_t SPIcheckStream()
Method to check the result of last SPI stream transfer.
Definition: Module.cpp:287
+
Module::SPIwriteRegister
void SPIwriteRegister(uint32_t reg, uint8_t data)
SPI basic write method. Use of this method is reserved for special cases, SPIsetRegValue should be us...
Definition: Module.cpp:153
+
Module::setRfSwitchPins
void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: Module.cpp:473
+
Module::waitForMicroseconds
void waitForMicroseconds(RadioLibTime_t start, RadioLibTime_t len)
Wait for time to elapse, either using the microsecond timer, or the TimerFlag. Note that in interrupt...
Definition: Module.cpp:440
+
Module::Module
Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)
Module constructor.
Definition: Module.cpp:19
+
Module::SPIparseStatusCb_t
int16_t(* SPIparseStatusCb_t)(uint8_t in)
Callback for parsing SPI status.
Definition: Module.h:164
+
Module::getCs
uint32_t getCs() const
Access method to get the pin number of SPI chip select.
Definition: Module.h:383
+
Module::SPItransfer
void SPItransfer(uint16_t cmd, uint32_t reg, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes)
SPI single transfer method.
Definition: Module.cpp:169
+
Module::SPIreadRegister
uint8_t SPIreadRegister(uint32_t reg)
SPI basic read method. Use of this method is reserved for special cases, SPIgetRegValue should be use...
Definition: Module.cpp:119
+
Module::getIrq
uint32_t getIrq() const
Access method to get the pin number of interrupt/GPIO.
Definition: Module.h:389
+
Module::setRfSwitchTable
void setRfSwitchTable(const uint32_t(&pins)[RFSWITCH_MAX_PINS], const RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: Module.cpp:489
+
Module::SPIreadRegisterBurst
void SPIreadRegisterBurst(uint32_t reg, size_t numBytes, uint8_t *inBytes)
SPI burst read method.
Definition: Module.cpp:103
+
Module::init
void init()
Initialize low-level module control.
Definition: Module.cpp:37
+
Module::getRst
uint32_t getRst() const
Access method to get the pin number of hardware reset pin.
Definition: Module.h:395
+
Module::SPIreadStream
int16_t SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)
Method to perform a read transaction with SPI stream.
Definition: Module.cpp:231
+
Module::SPIsetRegValue
int16_t SPIsetRegValue(uint32_t reg, uint8_t value, uint8_t msb=7, uint8_t lsb=0, uint8_t checkInterval=2, uint8_t checkMask=0xFF)
Overwrite-safe SPI write method with verification. This method is the preferred SPI write mechanism.
Definition: Module.cpp:59
+
Module::SPIwriteStream
int16_t SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)
Method to perform a write transaction with SPI stream.
Definition: Module.cpp:259
+
Module::setRfSwitchState
void setRfSwitchState(uint8_t mode)
Set RF switch state.
Definition: Module.cpp:506
RadioLibHal
Hardware abstraction library base interface.
Definition: Hal.h:13
RADIOLIB_ERR_UNKNOWN
#define RADIOLIB_ERR_UNKNOWN
There was an unexpected, unknown error. If you see this, something went incredibly wrong....
Definition: TypeDef.h:110
RadioLibTime_t
unsigned long RadioLibTime_t
Type used for durations in RadioLib.
Definition: TypeDef.h:642
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
-
Module::RfSwitchMode_t::mode
uint8_t mode
RF switching mode, one of OpMode_t or a custom radio-defined value.
Definition: Module.h:83
-
Module::RfSwitchMode_t::values
uint32_t values[RFSWITCH_MAX_PINS]
Output pin values.
Definition: Module.h:86
-
Module::SPIConfig_t
SPI configuration structure.
Definition: Module.h:179
-
Module::SPIConfig_t::stream
bool stream
Whether the SPI module is stream-type (SX126x/8x) or registrer access type (SX127x,...
Definition: Module.h:181
-
Module::SPIConfig_t::timeout
RadioLibTime_t timeout
Timeout in ms when waiting for GPIO signals.
Definition: Module.h:202
-
Module::SPIConfig_t::cmds
uint16_t cmds[4]
SPI commands.
Definition: Module.h:187
-
Module::SPIConfig_t::statusPos
uint8_t statusPos
Byte position of status command in SPI stream.
Definition: Module.h:193
-
Module::SPIConfig_t::widths
BitWidth_t widths[3]
Bit widths of SPI addresses, commands and status bytes.
Definition: Module.h:190
-
Module::SPIConfig_t::parseStatusCb
SPIparseStatusCb_t parseStatusCb
Callback for parsing SPI status.
Definition: Module.h:196
-
Module::SPIConfig_t::checkStatusCb
SPIcheckStatusCb_t checkStatusCb
Callback for validation SPI status.
Definition: Module.h:199
-
Module::SPIConfig_t::err
int16_t err
Last recorded SPI error - only updated for modules that return status during SPI transfers.
Definition: Module.h:184
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
+
Module::RfSwitchMode_t::mode
uint8_t mode
RF switching mode, one of OpMode_t or a custom radio-defined value.
Definition: Module.h:84
+
Module::RfSwitchMode_t::values
uint32_t values[RFSWITCH_MAX_PINS]
Output pin values.
Definition: Module.h:87
+
Module::SPIConfig_t
SPI configuration structure.
Definition: Module.h:180
+
Module::SPIConfig_t::stream
bool stream
Whether the SPI module is stream-type (SX126x/8x) or registrer access type (SX127x,...
Definition: Module.h:182
+
Module::SPIConfig_t::timeout
RadioLibTime_t timeout
Timeout in ms when waiting for GPIO signals.
Definition: Module.h:203
+
Module::SPIConfig_t::cmds
uint16_t cmds[4]
SPI commands.
Definition: Module.h:188
+
Module::SPIConfig_t::statusPos
uint8_t statusPos
Byte position of status command in SPI stream.
Definition: Module.h:194
+
Module::SPIConfig_t::widths
BitWidth_t widths[3]
Bit widths of SPI addresses, commands and status bytes.
Definition: Module.h:191
+
Module::SPIConfig_t::parseStatusCb
SPIparseStatusCb_t parseStatusCb
Callback for parsing SPI status.
Definition: Module.h:197
+
Module::SPIConfig_t::checkStatusCb
SPIcheckStatusCb_t checkStatusCb
Callback for validation SPI status.
Definition: Module.h:200
+
Module::SPIConfig_t::err
int16_t err
Last recorded SPI error - only updated for modules that return status during SPI transfers.
Definition: Module.h:185
diff --git a/_pager_8h_source.html b/_pager_8h_source.html index 4e1e8674..85f0e7ea 100644 --- a/_pager_8h_source.html +++ b/_pager_8h_source.html @@ -208,13 +208,13 @@ $(document).ready(function(){initNavTree('_pager_8h_source.html',''); initResiza
205 
206 #endif
PagerClient
Client for Pager communication.
Definition: Pager.h:62
-
PagerClient::begin
int16_t begin(float base, uint16_t speed, bool invert=false, uint16_t shift=RADIOLIB_PAGER_FREQ_SHIFT_HZ)
Initialization method.
Definition: Pager.cpp:33
-
PagerClient::sendTone
int16_t sendTone(uint32_t addr)
Method to send a tone-only alert to a destination pager.
Definition: Pager.cpp:57
-
PagerClient::PagerClient
PagerClient(PhysicalLayer *phy)
Default constructor.
Definition: Pager.cpp:26
-
PagerClient::startReceive
int16_t startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)
Start reception of POCSAG packets.
Definition: Pager.cpp:243
-
PagerClient::readData
int16_t readData(uint8_t *data, size_t *len, uint32_t *addr=NULL)
Reads data that was received after calling startReceive method.
Definition: Pager.cpp:348
-
PagerClient::transmit
int16_t transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD, uint8_t function=RADIOLIB_PAGER_FUNC_AUTO)
C-string transmit method.
Definition: Pager.cpp:67
-
PagerClient::available
size_t available()
Get the number of POCSAG batches available in buffer. Limited by the size of direct mode buffer!
Definition: Pager.cpp:297
+
PagerClient::begin
int16_t begin(float base, uint16_t speed, bool invert=false, uint16_t shift=RADIOLIB_PAGER_FREQ_SHIFT_HZ)
Initialization method.
Definition: Pager.cpp:35
+
PagerClient::sendTone
int16_t sendTone(uint32_t addr)
Method to send a tone-only alert to a destination pager.
Definition: Pager.cpp:59
+
PagerClient::PagerClient
PagerClient(PhysicalLayer *phy)
Default constructor.
Definition: Pager.cpp:28
+
PagerClient::startReceive
int16_t startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)
Start reception of POCSAG packets.
Definition: Pager.cpp:245
+
PagerClient::readData
int16_t readData(uint8_t *data, size_t *len, uint32_t *addr=NULL)
Reads data that was received after calling startReceive method.
Definition: Pager.cpp:350
+
PagerClient::transmit
int16_t transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD, uint8_t function=RADIOLIB_PAGER_FUNC_AUTO)
C-string transmit method.
Definition: Pager.cpp:69
+
PagerClient::available
size_t available()
Get the number of POCSAG batches available in buffer. Limited by the size of direct mode buffer!
Definition: Pager.cpp:299
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:141
RadioLibTime_t
unsigned long RadioLibTime_t
Type used for durations in RadioLib.
Definition: TypeDef.h:642
diff --git a/_physical_layer_8h_source.html b/_physical_layer_8h_source.html index e4740672..cb45f661 100644 --- a/_physical_layer_8h_source.html +++ b/_physical_layer_8h_source.html @@ -380,65 +380,65 @@ $(document).ready(function(){initNavTree('_physical_layer_8h_source.html',''); i
FSK4Client
Client for FSK-4 communication. The public interface is the same as Arduino Serial.
Definition: FSK4.h:15
HellClient
Client for Hellschreiber transmissions.
Definition: Hellschreiber.h:90
LoRaWANNode
LoRaWAN-compatible node (class A device).
Definition: LoRaWAN.h:533
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
MorseClient
Client for Morse Code communication. The public interface is the same as Arduino Serial.
Definition: Morse.h:93
PagerClient
Client for Pager communication.
Definition: Pager.h:62
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:141
-
PhysicalLayer::invertIQ
virtual int16_t invertIQ(bool enable)
Set IQ inversion. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:249
-
PhysicalLayer::clearChannelScanAction
virtual void clearChannelScanAction()
Clears interrupt service routine to call when a channel scan is finished.
Definition: PhysicalLayer.cpp:529
-
PhysicalLayer::checkOutputPower
virtual int16_t checkOutputPower(int8_t power, int8_t *clipped)
Check if output power is configurable. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:259
-
PhysicalLayer::startReceive
virtual int16_t startReceive()
Sets module to received mode using its default configuration.
Definition: PhysicalLayer.cpp:131
-
PhysicalLayer::randomByte
virtual uint8_t randomByte()
Get one truly random byte from RSSI noise. Must be implemented in module class.
Definition: PhysicalLayer.cpp:404
-
PhysicalLayer::finishTransmit
virtual int16_t finishTransmit()
Clean up after transmission is done.
Definition: PhysicalLayer.cpp:160
-
PhysicalLayer::checkIrq
int16_t checkIrq(RadioLibIrqType_t irq)
Check whether a specific IRQ bit is set (e.g. RxTimeout, CadDone).
Definition: PhysicalLayer.cpp:325
-
PhysicalLayer::setFrequencyDeviation
virtual int16_t setFrequencyDeviation(float freqDev)
Sets FSK frequency deviation from carrier frequency. Only available in FSK mode. Must be implemented ...
Definition: PhysicalLayer.cpp:234
-
PhysicalLayer::getPacketLength
virtual size_t getPacketLength(bool update=true)
Query modem for the packet length of received payload. Must be implemented in module class.
Definition: PhysicalLayer.cpp:290
-
PhysicalLayer::setPacketSentAction
virtual void setPacketSentAction(void(*func)(void))
Sets interrupt service routine to call when a packet is sent.
Definition: PhysicalLayer.cpp:517
-
PhysicalLayer::setDIOMapping
virtual int16_t setDIOMapping(uint32_t pin, uint32_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: PhysicalLayer.cpp:503
-
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
-
PhysicalLayer::dropSync
void dropSync()
Forcefully drop synchronization.
Definition: PhysicalLayer.cpp:427
-
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-
PhysicalLayer::read
uint8_t read(bool drop=true)
Get data from direct mode buffer.
Definition: PhysicalLayer.cpp:434
-
PhysicalLayer::getTimeOnAir
virtual RadioLibTime_t getTimeOnAir(size_t len)
Get expected time-on-air for a given size of payload.
Definition: PhysicalLayer.cpp:303
-
PhysicalLayer::checkDataRate
virtual int16_t checkDataRate(DataRate_t dr)
Check the data rate can be configured by this module. Must be implemented in module class if the modu...
Definition: PhysicalLayer.cpp:281
-
PhysicalLayer::getChannelScanResult
virtual int16_t getChannelScanResult()
Read the channel scan result.
Definition: PhysicalLayer.cpp:364
-
PhysicalLayer::clearPacketSentAction
virtual void clearPacketSentAction()
Clears interrupt service routine to call when a packet is sent.
Definition: PhysicalLayer.cpp:521
-
PhysicalLayer::setSyncWord
virtual int16_t setSyncWord(uint8_t *sync, size_t len)
Set sync word. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:265
-
PhysicalLayer::setDataRate
virtual int16_t setDataRate(DataRate_t dr)
Set data. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:276
-
PhysicalLayer::clearPacketReceivedAction
virtual void clearPacketReceivedAction()
Clears interrupt service routine to call when a packet is received.
Definition: PhysicalLayer.cpp:513
-
PhysicalLayer::calculateRxTimeout
virtual RadioLibTime_t calculateRxTimeout(RadioLibTime_t timeoutUs)
Calculate the timeout value for this specific module / series (in number of symbols or units of time)...
Definition: PhysicalLayer.cpp:308
-
PhysicalLayer::setIrq
int16_t setIrq(RadioLibIrqFlags_t irq)
Set interrupt on specific IRQ bit(s) (e.g. RxTimeout, CadDone). Keep in mind that not all radio modul...
Definition: PhysicalLayer.cpp:333
-
PhysicalLayer::setPreambleLength
virtual int16_t setPreambleLength(size_t len)
Set preamble length. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:271
-
PhysicalLayer::startDirect
int16_t startDirect()
Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX....
Definition: PhysicalLayer.cpp:408
-
PhysicalLayer::setFrequency
virtual int16_t setFrequency(float freq)
Sets carrier frequency. Must be implemented in module class.
Definition: PhysicalLayer.cpp:224
-
PhysicalLayer::setDirectSyncWord
int16_t setDirectSyncWord(uint32_t syncWord, uint8_t len)
Set sync word to be used to determine start of packet in direct reception mode.
Definition: PhysicalLayer.cpp:442
-
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
-
PhysicalLayer::getFreqStep
float getFreqStep() const
Gets the module frequency step size that was set in constructor.
Definition: PhysicalLayer.cpp:286
-
PhysicalLayer::transmitDirect
virtual int16_t transmitDirect(uint32_t frf=0)
Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module ...
Definition: PhysicalLayer.cpp:215
-
PhysicalLayer::getRSSI
virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:295
-
PhysicalLayer::available
int16_t available()
Get the number of direct mode bytes currently available in buffer.
Definition: PhysicalLayer.cpp:423
-
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
-
PhysicalLayer::scanChannel
virtual int16_t scanChannel()
Check whether the current communication channel is free or occupied. Performs CAD for LoRa modules,...
Definition: PhysicalLayer.cpp:368
-
PhysicalLayer::setDirectAction
virtual void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is received in direct mode....
Definition: PhysicalLayer.cpp:493
-
PhysicalLayer::clearIrqFlags
virtual int16_t clearIrqFlags(uint32_t irq)
Clear interrupt on a specific IRQ bit (e.g. RxTimeout, CadDone). Must be implemented in module class.
Definition: PhysicalLayer.cpp:350
-
PhysicalLayer::setEncoding
virtual int16_t setEncoding(uint8_t encoding)
Sets FSK data encoding. Only available in FSK mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:244
-
PhysicalLayer::standby
virtual int16_t standby()
Sets module to standby.
Definition: PhysicalLayer.cpp:122
-
PhysicalLayer::random
int32_t random(int32_t max)
Get truly random number in range 0 - max.
Definition: PhysicalLayer.cpp:377
-
PhysicalLayer::readBit
virtual void readBit(uint32_t pin)
Function to read and process data bit in direct reception mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:497
-
PhysicalLayer::setOutputPower
virtual int16_t setOutputPower(int8_t power)
Set output power. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:254
-
PhysicalLayer::receiveDirect
virtual int16_t receiveDirect()
Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module cla...
Definition: PhysicalLayer.cpp:220
-
PhysicalLayer::PhysicalLayer
PhysicalLayer(float step, size_t maxLen)
Default constructor.
Definition: PhysicalLayer.cpp:4
-
PhysicalLayer::setChannelScanAction
virtual void setChannelScanAction(void(*func)(void))
Sets interrupt service routine to call when a channel scan is finished.
Definition: PhysicalLayer.cpp:525
-
PhysicalLayer::startChannelScan
virtual int16_t startChannelScan()
Interrupt-driven channel activity detection method. Interrupt will be activated when packet is detect...
Definition: PhysicalLayer.cpp:355
-
PhysicalLayer::getIrqMapped
uint32_t getIrqMapped(RadioLibIrqFlags_t irq)
Convert from radio-agnostic IRQ flags to radio-specific flags.
Definition: PhysicalLayer.cpp:313
-
PhysicalLayer::setDataShaping
virtual int16_t setDataShaping(uint8_t sh)
Sets GFSK data shaping. Only available in FSK mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:239
-
PhysicalLayer::setPacketReceivedAction
virtual void setPacketReceivedAction(void(*func)(void))
Sets interrupt service routine to call when a packet is received.
Definition: PhysicalLayer.cpp:509
-
PhysicalLayer::setBitRate
virtual int16_t setBitRate(float br)
Sets FSK bit rate. Only available in FSK mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:229
-
PhysicalLayer::getSNR
virtual float getSNR()
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.
Definition: PhysicalLayer.cpp:299
-
PhysicalLayer::sleep
virtual int16_t sleep()
Sets module to sleep.
Definition: PhysicalLayer.cpp:118
-
PhysicalLayer::getIrqFlags
virtual uint32_t getIrqFlags()
Read currently active IRQ flags. Must be implemented in module class.
Definition: PhysicalLayer.cpp:341
-
PhysicalLayer::setIrqFlags
virtual int16_t setIrqFlags(uint32_t irq)
Set interrupt on DIO1 to be sent on a specific IRQ bit (e.g. RxTimeout, CadDone). Must be implemented...
Definition: PhysicalLayer.cpp:345
-
PhysicalLayer::clearIrq
int16_t clearIrq(RadioLibIrqFlags_t irq)
Clear interrupt on a specific IRQ bit (e.g. RxTimeout, CadDone). Keep in mind that not all radio modu...
Definition: PhysicalLayer.cpp:337
+
PhysicalLayer::invertIQ
virtual int16_t invertIQ(bool enable)
Set IQ inversion. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:250
+
PhysicalLayer::clearChannelScanAction
virtual void clearChannelScanAction()
Clears interrupt service routine to call when a channel scan is finished.
Definition: PhysicalLayer.cpp:530
+
PhysicalLayer::checkOutputPower
virtual int16_t checkOutputPower(int8_t power, int8_t *clipped)
Check if output power is configurable. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:260
+
PhysicalLayer::startReceive
virtual int16_t startReceive()
Sets module to received mode using its default configuration.
Definition: PhysicalLayer.cpp:132
+
PhysicalLayer::randomByte
virtual uint8_t randomByte()
Get one truly random byte from RSSI noise. Must be implemented in module class.
Definition: PhysicalLayer.cpp:405
+
PhysicalLayer::finishTransmit
virtual int16_t finishTransmit()
Clean up after transmission is done.
Definition: PhysicalLayer.cpp:161
+
PhysicalLayer::checkIrq
int16_t checkIrq(RadioLibIrqType_t irq)
Check whether a specific IRQ bit is set (e.g. RxTimeout, CadDone).
Definition: PhysicalLayer.cpp:326
+
PhysicalLayer::setFrequencyDeviation
virtual int16_t setFrequencyDeviation(float freqDev)
Sets FSK frequency deviation from carrier frequency. Only available in FSK mode. Must be implemented ...
Definition: PhysicalLayer.cpp:235
+
PhysicalLayer::getPacketLength
virtual size_t getPacketLength(bool update=true)
Query modem for the packet length of received payload. Must be implemented in module class.
Definition: PhysicalLayer.cpp:291
+
PhysicalLayer::setPacketSentAction
virtual void setPacketSentAction(void(*func)(void))
Sets interrupt service routine to call when a packet is sent.
Definition: PhysicalLayer.cpp:518
+
PhysicalLayer::setDIOMapping
virtual int16_t setDIOMapping(uint32_t pin, uint32_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: PhysicalLayer.cpp:504
+
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
+
PhysicalLayer::dropSync
void dropSync()
Forcefully drop synchronization.
Definition: PhysicalLayer.cpp:428
+
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
+
PhysicalLayer::read
uint8_t read(bool drop=true)
Get data from direct mode buffer.
Definition: PhysicalLayer.cpp:435
+
PhysicalLayer::getTimeOnAir
virtual RadioLibTime_t getTimeOnAir(size_t len)
Get expected time-on-air for a given size of payload.
Definition: PhysicalLayer.cpp:304
+
PhysicalLayer::checkDataRate
virtual int16_t checkDataRate(DataRate_t dr)
Check the data rate can be configured by this module. Must be implemented in module class if the modu...
Definition: PhysicalLayer.cpp:282
+
PhysicalLayer::getChannelScanResult
virtual int16_t getChannelScanResult()
Read the channel scan result.
Definition: PhysicalLayer.cpp:365
+
PhysicalLayer::clearPacketSentAction
virtual void clearPacketSentAction()
Clears interrupt service routine to call when a packet is sent.
Definition: PhysicalLayer.cpp:522
+
PhysicalLayer::setSyncWord
virtual int16_t setSyncWord(uint8_t *sync, size_t len)
Set sync word. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:266
+
PhysicalLayer::setDataRate
virtual int16_t setDataRate(DataRate_t dr)
Set data. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:277
+
PhysicalLayer::clearPacketReceivedAction
virtual void clearPacketReceivedAction()
Clears interrupt service routine to call when a packet is received.
Definition: PhysicalLayer.cpp:514
+
PhysicalLayer::calculateRxTimeout
virtual RadioLibTime_t calculateRxTimeout(RadioLibTime_t timeoutUs)
Calculate the timeout value for this specific module / series (in number of symbols or units of time)...
Definition: PhysicalLayer.cpp:309
+
PhysicalLayer::setIrq
int16_t setIrq(RadioLibIrqFlags_t irq)
Set interrupt on specific IRQ bit(s) (e.g. RxTimeout, CadDone). Keep in mind that not all radio modul...
Definition: PhysicalLayer.cpp:334
+
PhysicalLayer::setPreambleLength
virtual int16_t setPreambleLength(size_t len)
Set preamble length. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:272
+
PhysicalLayer::startDirect
int16_t startDirect()
Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX....
Definition: PhysicalLayer.cpp:409
+
PhysicalLayer::setFrequency
virtual int16_t setFrequency(float freq)
Sets carrier frequency. Must be implemented in module class.
Definition: PhysicalLayer.cpp:225
+
PhysicalLayer::setDirectSyncWord
int16_t setDirectSyncWord(uint32_t syncWord, uint8_t len)
Set sync word to be used to determine start of packet in direct reception mode.
Definition: PhysicalLayer.cpp:443
+
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
+
PhysicalLayer::getFreqStep
float getFreqStep() const
Gets the module frequency step size that was set in constructor.
Definition: PhysicalLayer.cpp:287
+
PhysicalLayer::transmitDirect
virtual int16_t transmitDirect(uint32_t frf=0)
Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module ...
Definition: PhysicalLayer.cpp:216
+
PhysicalLayer::getRSSI
virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:296
+
PhysicalLayer::available
int16_t available()
Get the number of direct mode bytes currently available in buffer.
Definition: PhysicalLayer.cpp:424
+
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
+
PhysicalLayer::scanChannel
virtual int16_t scanChannel()
Check whether the current communication channel is free or occupied. Performs CAD for LoRa modules,...
Definition: PhysicalLayer.cpp:369
+
PhysicalLayer::setDirectAction
virtual void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is received in direct mode....
Definition: PhysicalLayer.cpp:494
+
PhysicalLayer::clearIrqFlags
virtual int16_t clearIrqFlags(uint32_t irq)
Clear interrupt on a specific IRQ bit (e.g. RxTimeout, CadDone). Must be implemented in module class.
Definition: PhysicalLayer.cpp:351
+
PhysicalLayer::setEncoding
virtual int16_t setEncoding(uint8_t encoding)
Sets FSK data encoding. Only available in FSK mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:245
+
PhysicalLayer::standby
virtual int16_t standby()
Sets module to standby.
Definition: PhysicalLayer.cpp:123
+
PhysicalLayer::random
int32_t random(int32_t max)
Get truly random number in range 0 - max.
Definition: PhysicalLayer.cpp:378
+
PhysicalLayer::readBit
virtual void readBit(uint32_t pin)
Function to read and process data bit in direct reception mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:498
+
PhysicalLayer::setOutputPower
virtual int16_t setOutputPower(int8_t power)
Set output power. Must be implemented in module class if the module supports it.
Definition: PhysicalLayer.cpp:255
+
PhysicalLayer::receiveDirect
virtual int16_t receiveDirect()
Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module cla...
Definition: PhysicalLayer.cpp:221
+
PhysicalLayer::PhysicalLayer
PhysicalLayer(float step, size_t maxLen)
Default constructor.
Definition: PhysicalLayer.cpp:5
+
PhysicalLayer::setChannelScanAction
virtual void setChannelScanAction(void(*func)(void))
Sets interrupt service routine to call when a channel scan is finished.
Definition: PhysicalLayer.cpp:526
+
PhysicalLayer::startChannelScan
virtual int16_t startChannelScan()
Interrupt-driven channel activity detection method. Interrupt will be activated when packet is detect...
Definition: PhysicalLayer.cpp:356
+
PhysicalLayer::getIrqMapped
uint32_t getIrqMapped(RadioLibIrqFlags_t irq)
Convert from radio-agnostic IRQ flags to radio-specific flags.
Definition: PhysicalLayer.cpp:314
+
PhysicalLayer::setDataShaping
virtual int16_t setDataShaping(uint8_t sh)
Sets GFSK data shaping. Only available in FSK mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:240
+
PhysicalLayer::setPacketReceivedAction
virtual void setPacketReceivedAction(void(*func)(void))
Sets interrupt service routine to call when a packet is received.
Definition: PhysicalLayer.cpp:510
+
PhysicalLayer::setBitRate
virtual int16_t setBitRate(float br)
Sets FSK bit rate. Only available in FSK mode. Must be implemented in module class.
Definition: PhysicalLayer.cpp:230
+
PhysicalLayer::getSNR
virtual float getSNR()
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.
Definition: PhysicalLayer.cpp:300
+
PhysicalLayer::sleep
virtual int16_t sleep()
Sets module to sleep.
Definition: PhysicalLayer.cpp:119
+
PhysicalLayer::getIrqFlags
virtual uint32_t getIrqFlags()
Read currently active IRQ flags. Must be implemented in module class.
Definition: PhysicalLayer.cpp:342
+
PhysicalLayer::setIrqFlags
virtual int16_t setIrqFlags(uint32_t irq)
Set interrupt on DIO1 to be sent on a specific IRQ bit (e.g. RxTimeout, CadDone). Must be implemented...
Definition: PhysicalLayer.cpp:346
+
PhysicalLayer::clearIrq
int16_t clearIrq(RadioLibIrqFlags_t irq)
Clear interrupt on a specific IRQ bit (e.g. RxTimeout, CadDone). Keep in mind that not all radio modu...
Definition: PhysicalLayer.cpp:338
RTTYClient
Client for RTTY communication. The public interface is the same as Arduino Serial.
Definition: RTTY.h:17
SSTVClient
Client for SSTV transmissions.
Definition: SSTV.h:121
RadioLibTime_t
unsigned long RadioLibTime_t
Type used for durations in RadioLib.
Definition: TypeDef.h:642
diff --git a/_r_f69_8h_source.html b/_r_f69_8h_source.html index adf80173..e3460bfc 100644 --- a/_r_f69_8h_source.html +++ b/_r_f69_8h_source.html @@ -773,13 +773,13 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
1036 #endif
1037 
1038 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
-
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:74
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
+
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:75
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:141
-
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
-
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
-
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
+
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
+
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
+
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
RF69
Control class for RF69 module. Also serves as base class for SX1231.
Definition: RF69.h:479
RF69::getTemperature
int16_t getTemperature()
Measures temperature.
Definition: RF69.cpp:764
RF69::getChipVersion
int16_t getChipVersion()
Read version SPI register. Should return RF69_CHIP_VERSION (0x24) if SX127x is connected and working.
Definition: RF69.cpp:985
@@ -797,14 +797,14 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
RF69::getFrequencyDeviation
int16_t getFrequencyDeviation(float *freqDev)
Gets frequency deviation.
Definition: RF69.cpp:629
RF69::setOokFixedThreshold
int16_t setOokFixedThreshold(uint8_t value)
Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Pe...
Definition: RF69.cpp:512
RF69::clearPacketReceivedAction
void clearPacketReceivedAction() override
Clears interrupt service routine to call when a packet is received.
Definition: RF69.cpp:297
-
RF69::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
+
RF69::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
RF69::startReceive
int16_t startReceive() override
Interrupt-driven receive method. GDO0 will be activated when full packet is received.
Definition: RF69.cpp:234
RF69::finishTransmit
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: RF69.cpp:441
RF69::disableSyncWordFiltering
int16_t disableSyncWordFiltering()
Disable preamble and sync word filtering and generation.
Definition: RF69.cpp:807
RF69::setDataShaping
int16_t setDataShaping(uint8_t sh) override
Sets Gaussian filter bandwidth-time product that will be used for data shaping. Allowed values are RA...
Definition: RF69.cpp:876
RF69::setOokPeakThresholdDecrement
int16_t setOokPeakThresholdDecrement(uint8_t value)
Period of decrement of the RSSI threshold in the OOK demodulator.
Definition: RF69.cpp:516
RF69::setOOK
int16_t setOOK(bool enable)
Enables/disables OOK modulation instead of FSK. Note: This function calls setRxBandwidth again,...
Definition: RF69.cpp:486
-
RF69::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
+
RF69::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
RF69::disableAddressFiltering
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: RF69.cpp:747
RF69::readBit
void readBit(uint32_t pin) override
Function to read and process data bit in direct reception mode.
Definition: RF69.cpp:964
RF69::begin
int16_t begin(float freq=RADIOLIB_RF69_DEFAULT_FREQ, float br=RADIOLIB_RF69_DEFAULT_BR, float freqDev=RADIOLIB_RF69_DEFAULT_FREQDEV, float rxBw=RADIOLIB_RF69_DEFAULT_RXBW, int8_t pwr=RADIOLIB_RF69_DEFAULT_POWER, uint8_t preambleLen=RADIOLIB_RF69_DEFAULT_PREAMBLELEN)
Initialization method.
Definition: RF69.cpp:9
@@ -818,7 +818,7 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
RF69::setPreambleLength
int16_t setPreambleLength(uint8_t preambleLen)
Sets preamble length.
Definition: RF69.cpp:717
RF69::enableContinuousModeBitSync
int16_t enableContinuousModeBitSync()
Enable Bit synchronization in continuous mode.
Definition: RF69.cpp:812
RF69::getPacketLength
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: RF69.cpp:781
-
RF69::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+
RF69::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
RF69::clearDio0Action
void clearDio0Action()
Clears interrupt service routine to call when DIO0 activates.
Definition: RF69.cpp:274
RF69::setPacketSentAction
void setPacketSentAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is sent.
Definition: RF69.cpp:301
RF69::disableContinuousModeBitSync
int16_t disableContinuousModeBitSync()
Disable Bit synchronization in continuous mode.
Definition: RF69.cpp:821
@@ -831,7 +831,7 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
RF69::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510....
Definition: RF69.cpp:520
RF69::setEncoding
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Allowed values are RADIOLIB_ENCODING_NRZ, RADIOLIB_ENCODING_MANCHESTER an...
Definition: RF69.cpp:896
RF69::fifoAdd
bool fifoAdd(uint8_t *data, int totalLen, int *remLen)
Set interrupt service routine function to call when FIFO is empty.
Definition: RF69.cpp:338
-
RF69::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
RF69::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
RF69::setNodeAddress
int16_t setNodeAddress(uint8_t nodeAddr)
Sets node address. Calling this method will also enable address filtering for node address only.
Definition: RF69.cpp:729
RF69::receiveDirect
int16_t receiveDirect() override
Starts direct mode reception.
Definition: RF69.cpp:189
RF69::setAESKey
void setAESKey(uint8_t *key)
Sets AES key.
Definition: RF69.cpp:222
@@ -851,7 +851,7 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
RF69::RF69
RF69(Module *module)
Default constructor.
Definition: RF69.cpp:5
RF69::setRSSIThreshold
int16_t setRSSIThreshold(float dbm)
Sets the RSSI value above which the RSSI interrupt is signaled.
Definition: RF69.cpp:926
RF69::setRfSwitchTable
void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: RF69.cpp:936
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/_radio_lib_8h_source.html b/_radio_lib_8h_source.html index 648eec45..d553e976 100644 --- a/_radio_lib_8h_source.html +++ b/_radio_lib_8h_source.html @@ -202,7 +202,7 @@ $(document).ready(function(){initNavTree('_radio_lib_8h_source.html',''); initRe
157 #endif
158 
159 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
diff --git a/_s_t_m32_w_lx_8h_source.html b/_s_t_m32_w_lx_8h_source.html index bca919dc..d1c8d083 100644 --- a/_s_t_m32_w_lx_8h_source.html +++ b/_s_t_m32_w_lx_8h_source.html @@ -161,10 +161,10 @@ $(document).ready(function(){initNavTree('_s_t_m32_w_lx_8h_source.html',''); ini
166 #endif
167 
168 #endif
-
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:111
-
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:105
-
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:108
-
Module::MODE_END_OF_TABLE
@ MODE_END_OF_TABLE
End of table marker, use END_OF_MODE_TABLE constant instead. Value is zero to ensure zero-initialized...
Definition: Module.h:102
+
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:112
+
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:106
+
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:109
+
Module::MODE_END_OF_TABLE
@ MODE_END_OF_TABLE
End of table marker, use END_OF_MODE_TABLE constant instead. Value is zero to ensure zero-initialized...
Definition: Module.h:103
STM32WLx_Module
Definition: STM32WLx_Module.h:26
STM32WLx
Derived class for STM32WL modules.
Definition: STM32WLx.h:33
STM32WLx::setChannelScanAction
void setChannelScanAction(void(*func)(void)) override
Sets interrupt service routine to call when a channel scan is finished.
Definition: STM32WLx.cpp:146
diff --git a/_s_t_m32_w_lx___module_8h_source.html b/_s_t_m32_w_lx___module_8h_source.html index daa808a7..549b368f 100644 --- a/_s_t_m32_w_lx___module_8h_source.html +++ b/_s_t_m32_w_lx___module_8h_source.html @@ -115,7 +115,7 @@ $(document).ready(function(){initNavTree('_s_t_m32_w_lx___module_8h_source.html'
36 #endif
37 
38 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
STM32WLx_Module
Definition: STM32WLx_Module.h:26
diff --git a/_s_x1231_8h_source.html b/_s_x1231_8h_source.html index 2d8e42fc..cb0b33f6 100644 --- a/_s_x1231_8h_source.html +++ b/_s_x1231_8h_source.html @@ -189,7 +189,7 @@ $(document).ready(function(){initNavTree('_s_x1231_8h_source.html',''); initResi
119 #endif
120 
121 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
RF69
Control class for RF69 module. Also serves as base class for SX1231.
Definition: RF69.h:479
SX1231
Control class for SX1231 module. Overrides some methods from RF69 due to different register values.
Definition: SX1231.h:93
SX1231::begin
int16_t begin(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=125.0, int8_t power=10, uint8_t preambleLen=16)
Initialization method.
Definition: SX1231.cpp:8
diff --git a/_s_x1233_8h_source.html b/_s_x1233_8h_source.html index de69ffcc..1aa8c0ce 100644 --- a/_s_x1233_8h_source.html +++ b/_s_x1233_8h_source.html @@ -121,7 +121,7 @@ $(document).ready(function(){initNavTree('_s_x1233_8h_source.html',''); initResi
59 #endif
60 
61 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1231
Control class for SX1231 module. Overrides some methods from RF69 due to different register values.
Definition: SX1231.h:93
SX1233
Control class for SX1233 module. Overrides some methods from SX1231/RF69 due to different register va...
Definition: SX1233.h:23
SX1233::begin
int16_t begin(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=125.0, int8_t power=10, uint8_t preambleLen=16)
Initialization method.
Definition: SX1233.cpp:9
diff --git a/_s_x1261_8h_source.html b/_s_x1261_8h_source.html index d0557469..ad571d4a 100644 --- a/_s_x1261_8h_source.html +++ b/_s_x1261_8h_source.html @@ -120,7 +120,7 @@ $(document).ready(function(){initNavTree('_s_x1261_8h_source.html',''); initResi
51 #endif
52 
53 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1261
Derived class for SX1261 modules.
Definition: SX1261.h:22
SX1261::setOutputPower
int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values are in range from -17 to 14 dBm.
Definition: SX1261.cpp:8
SX1261::SX1261
SX1261(Module *mod)
Default constructor.
Definition: SX1261.cpp:4
diff --git a/_s_x1262_8h_source.html b/_s_x1262_8h_source.html index cbc47974..76db489d 100644 --- a/_s_x1262_8h_source.html +++ b/_s_x1262_8h_source.html @@ -134,7 +134,7 @@ $(document).ready(function(){initNavTree('_s_x1262_8h_source.html',''); initResi
119 #endif
120 
121 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1262
Derived class for SX1262 modules.
Definition: SX1262.h:22
SX1262::SX1262
SX1262(Module *mod)
Default constructor.
Definition: SX1262.cpp:4
SX1262::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz.
Definition: SX1262.cpp:68
diff --git a/_s_x1268_8h_source.html b/_s_x1268_8h_source.html index ac76f960..e5184716 100644 --- a/_s_x1268_8h_source.html +++ b/_s_x1268_8h_source.html @@ -133,7 +133,7 @@ $(document).ready(function(){initNavTree('_s_x1268_8h_source.html',''); initResi
117 #endif
118 
119 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1268
Derived class for SX1268 modules.
Definition: SX1268.h:21
SX1268::beginLRFHSS
int16_t beginLRFHSS(float freq=434.0, uint8_t bw=RADIOLIB_SX126X_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_SX126X_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6, bool useRegulatorLDO=false)
Initialization method for LR-FHSS modem. This modem only supports transmission!
Definition: SX1268.cpp:50
SX1268::setOutputPower
int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values are in range from -9 to 22 dBm.
Definition: SX1268.cpp:113
diff --git a/_s_x126x_8h_source.html b/_s_x126x_8h_source.html index 468b6dba..bd98828b 100644 --- a/_s_x126x_8h_source.html +++ b/_s_x126x_8h_source.html @@ -873,14 +873,14 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
1318 #endif
1319 
1320 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
-
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:74
-
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:111
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
+
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:75
+
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:112
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:141
-
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
-
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
-
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
+
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
+
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
+
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
SX126x
Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268) inherit from thi...
Definition: SX126x.h:474
SX126x::startChannelScan
int16_t startChannelScan() override
Interrupt-driven channel activity detection method. DIO1 will be activated when LoRa preamble is dete...
Definition: SX126x.cpp:794
SX126x::getFrequencyError
float getFrequencyError()
Gets frequency error of the latest received packet. WARNING: This functionality is based on SX128x im...
Definition: SX126x.cpp:1420
@@ -898,11 +898,11 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
SX126x::setRfSwitchTable
void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX126x.cpp:1597
SX126x::beginFSK
int16_t beginFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)
Initialization method for FSK modem.
Definition: SX126x.cpp:68
SX126x::setBandwidth
int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 7.8, 10.4, 15.6, 20.8, 31.25, 41.7, 62.5, 125....
Definition: SX126x.cpp:854
-
SX126x::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
+
SX126x::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
SX126x::explicitHeader
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX126x.cpp:1577
SX126x::clearChannelScanAction
void clearChannelScanAction() override
Clears interrupt service routine to call when a channel scan is finished.
Definition: SX126x.cpp:507
SX126x::forceLDRO
int16_t forceLDRO(bool enable)
Forces LoRa low data rate optimization. Only available in LoRa mode. After calling this method,...
Definition: SX126x.cpp:1601
-
SX126x::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
+
SX126x::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
SX126x::setDirectAction
void setDirectAction(void(*func)(void)) override
Set interrupt service routine function to call when data bit is received in direct mode.
Definition: SX126x.cpp:1666
SX126x::setIrqFlags
int16_t setIrqFlags(uint32_t irq) override
Set interrupt on DIO1 to be sent on a specific IRQ bit (e.g. RxTimeout, CadDone).
Definition: SX126x.cpp:1565
SX126x::spectralScanGetStatus
int16_t spectralScanGetStatus()
Read the status of spectral scan.
Definition: SX126x.cpp:1742
@@ -926,7 +926,7 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
SX126x::setCurrentLimit
int16_t setCurrentLimit(float currentLimit)
Sets current protection limit. Can be set in 2.5 mA steps.
Definition: SX126x.cpp:942
SX126x::setRxBoostedGainMode
int16_t setRxBoostedGainMode(bool rxbgm, bool persist=true)
Enables or disables Rx Boosted Gain mode as described in SX126x datasheet section 9....
Definition: SX126x.cpp:1135
SX126x::transmitDirect
int16_t transmitDirect(uint32_t frf=0) override
Starts direct mode transmission.
Definition: SX126x.cpp:323
-
SX126x::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+
SX126x::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
SX126x::variablePacketLengthMode
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)
Set modem in variable packet length mode. Available in FSK mode only.
Definition: SX126x.cpp:1477
SX126x::begin
int16_t begin(uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)
Initialization method for LoRa modem.
Definition: SX126x.cpp:22
SX126x::setCRC
int16_t setCRC(uint8_t len, uint16_t initial=0x1D0F, uint16_t polynomial=0x1021, bool inverted=true)
Sets CRC configuration.
Definition: SX126x.cpp:1286
@@ -938,7 +938,7 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
SX126x::SX126x
SX126x(Module *mod)
Default constructor.
Definition: SX126x.cpp:6
SX126x::clearIrqFlags
int16_t clearIrqFlags(uint32_t irq) override
Clear interrupt on a specific IRQ bit (e.g. RxTimeout, CadDone).
Definition: SX126x.cpp:1569
SX126x::getIrqFlags
uint32_t getIrqFlags() override
Read currently active IRQ flags.
Definition: SX126x.cpp:1559
-
SX126x::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
SX126x::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
SX126x::autoLDRO
int16_t autoLDRO()
Re-enables automatic LDRO configuration. Only available in LoRa mode. After calling this method,...
Definition: SX126x.cpp:1613
SX126x::fixedPacketLengthMode
int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode. Available in FSK mode only.
Definition: SX126x.cpp:1473
SX126x::setBroadcastAddress
int16_t setBroadcastAddress(uint8_t broadAddr)
Sets broadcast address. Calling this method will also enable address filtering for node and broadcast...
Definition: SX126x.cpp:1258
@@ -970,7 +970,7 @@ $(document).ready(function(){initNavTree('_s_x126x_8h_source.html',''); initResi
SX126x::getChannelScanResult
int16_t getChannelScanResult() override
Read the channel scan result.
Definition: SX126x.cpp:835
RadioLibTime_t
unsigned long RadioLibTime_t
Type used for durations in RadioLib.
Definition: TypeDef.h:642
RadioLibIrqFlags_t
uint32_t RadioLibIrqFlags_t
Type used for radio-agnostic IRQ flags. IRQ to enable corresponds to the bit index (RadioLibIrq_t)....
Definition: TypeDef.h:648
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
ChannelScanConfig_t
Common channel scan configuration structure.
Definition: PhysicalLayer.h:125
DataRate_t
Common data rate structure.
Definition: PhysicalLayer.h:74
diff --git a/_s_x1272_8h_source.html b/_s_x1272_8h_source.html index 11690f0b..38bbf4ed 100644 --- a/_s_x1272_8h_source.html +++ b/_s_x1272_8h_source.html @@ -255,7 +255,7 @@ $(document).ready(function(){initNavTree('_s_x1272_8h_source.html',''); initResi
324 #endif
325 
326 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1272
Derived class for SX1272 modules. Also used as base class for SX1273. Both modules use the same basic...
Definition: SX1272.h:94
SX1272::reset
void reset() override
Reset method. Will reset the chip to the default state using RST pin.
Definition: SX1272.cpp:76
SX1272::setBandwidth
int16_t setBandwidth(float bw)
Sets LoRa link bandwidth. Allowed values are 125, 250 and 500 kHz. Only available in LoRa mode.
Definition: SX1272.cpp:96
diff --git a/_s_x1273_8h_source.html b/_s_x1273_8h_source.html index 40670ffa..c5b279ca 100644 --- a/_s_x1273_8h_source.html +++ b/_s_x1273_8h_source.html @@ -123,7 +123,7 @@ $(document).ready(function(){initNavTree('_s_x1273_8h_source.html',''); initResi
72 #endif
73 
74 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1272
Derived class for SX1272 modules. Also used as base class for SX1273. Both modules use the same basic...
Definition: SX1272.h:94
SX1273
Derived class for SX1273 modules. Overrides some methods from SX1272 due to different parameter range...
Definition: SX1273.h:14
SX1273::begin
int16_t begin(float freq=915.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)
LoRa modem initialization method. Must be called at least once from Arduino sketch to initialize the ...
Definition: SX1273.cpp:8
diff --git a/_s_x1276_8h_source.html b/_s_x1276_8h_source.html index e64715c2..be4bbe6d 100644 --- a/_s_x1276_8h_source.html +++ b/_s_x1276_8h_source.html @@ -126,7 +126,7 @@ $(document).ready(function(){initNavTree('_s_x1276_8h_source.html',''); initResi
84 #endif
85 
86 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
RFM95
Only exists as alias for SX1276, since there seems to be no difference between RFM95 and SX1276 modul...
RFM96
Only exists as alias for SX1276, since there seems to be no difference between RFM96 and SX1276 modul...
SX1276
Derived class for SX1276 modules. Overrides some methods from SX1278 due to different parameter range...
Definition: SX1276.h:14
diff --git a/_s_x1277_8h_source.html b/_s_x1277_8h_source.html index a465457a..c118024e 100644 --- a/_s_x1277_8h_source.html +++ b/_s_x1277_8h_source.html @@ -129,7 +129,7 @@ $(document).ready(function(){initNavTree('_s_x1277_8h_source.html',''); initResi
99 #endif
100 
101 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
RFM97
Only exists as alias for SX1277, since there seems to be no difference between RFM97 and SX1277 modul...
SX1277
Derived class for SX1277 modules. Overrides some methods from SX1278 due to different parameter range...
Definition: SX1277.h:14
SX1277::setSpreadingFactor
int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa link spreading factor. Allowed values range from 6 to 9. Only available in LoRa mode.
Definition: SX1277.cpp:82
diff --git a/_s_x1278_8h_source.html b/_s_x1278_8h_source.html index dc660201..71d27844 100644 --- a/_s_x1278_8h_source.html +++ b/_s_x1278_8h_source.html @@ -268,7 +268,7 @@ $(document).ready(function(){initNavTree('_s_x1278_8h_source.html',''); initResi
342 #endif
343 
344 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
RFM98
Only exists as alias for SX1278, since there seems to be no difference between RFM98 and SX1278 modul...
SX1278
Derived class for SX1278 modules. Also used as base class for SX1276, SX1277, SX1279,...
Definition: SX1278.h:105
SX1278::SX1278
SX1278(Module *mod)
Default constructor. Called from Arduino sketch when creating new LoRa instance.
Definition: SX1278.cpp:5
diff --git a/_s_x1279_8h_source.html b/_s_x1279_8h_source.html index 6b3f3198..87a510b7 100644 --- a/_s_x1279_8h_source.html +++ b/_s_x1279_8h_source.html @@ -121,7 +121,7 @@ $(document).ready(function(){initNavTree('_s_x1279_8h_source.html',''); initResi
72 #endif
73 
74 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1278
Derived class for SX1278 modules. Also used as base class for SX1276, SX1277, SX1279,...
Definition: SX1278.h:105
SX1279
Derived class for SX1279 modules. Overrides some methods from SX1278 due to different parameter range...
Definition: SX1279.h:14
SX1279::begin
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)
LoRa modem initialization method. Must be called at least once from Arduino sketch to initialize the ...
Definition: SX1279.cpp:8
diff --git a/_s_x127x_8h_source.html b/_s_x127x_8h_source.html index 283d3192..56366768 100644 --- a/_s_x127x_8h_source.html +++ b/_s_x127x_8h_source.html @@ -910,14 +910,14 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
1273 #endif
1274 
1275 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
-
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:74
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
+
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:75
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:141
-
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
-
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
-
PhysicalLayer::getRSSI
virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:295
-
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
+
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
+
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
+
PhysicalLayer::getRSSI
virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:296
+
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
SX127x
Base class for SX127x series. All derived classes for SX127x (e.g. SX1278 or SX1272) inherit from thi...
Definition: SX127x.h:583
SX127x::packetMode
int16_t packetMode()
Disables direct mode and enables packet mode, allowing the module to receive packets....
Definition: SX127x.cpp:379
SX127x::clearChannelScanAction
void clearChannelScanAction() override
Clears interrupt service routine to call when a channel scan is finished.
Definition: SX127x.cpp:494
@@ -937,7 +937,7 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
SX127x::clearPacketSentAction
void clearPacketSentAction() override
Clears interrupt service routine to call when a packet is sent.
Definition: SX127x.cpp:486
SX127x::reset
virtual void reset()=0
Reset method. Will reset the chip to the default state using RST pin. Declared pure virtual since SX1...
SX127x::setPacketSentAction
void setPacketSentAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is sent.
Definition: SX127x.cpp:482
-
SX127x::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
+
SX127x::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
SX127x::invertIQ
int16_t invertIQ(bool enable) override
Enable/disable inversion of the I and Q signals.
Definition: SX127x.cpp:1735
SX127x::fifoAdd
bool fifoAdd(uint8_t *data, int totalLen, int *remLen)
Set interrupt service routine function to call when FIFO is empty.
Definition: SX127x.cpp:521
SX127x::setCurrentLimit
int16_t setCurrentLimit(uint8_t currentLimit)
Sets current limit for over current protection at transmitter amplifier. Allowed values range from 45...
Definition: SX127x.cpp:754
@@ -947,7 +947,7 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
SX127x::getPacketLength
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: SX127x.cpp:1206
SX127x::getSNR
float getSNR() override
Gets signal-to-noise ratio of the latest received packet. Only available in LoRa mode.
Definition: SX127x.cpp:895
SX127x::setOokPeakThresholdStep
int16_t setOokPeakThresholdStep(uint8_t value)
Size of each decrement of the RSSI threshold in the OOK demodulator.
Definition: SX127x.cpp:1150
-
SX127x::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
+
SX127x::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
SX127x::getAFCError
float getAFCError()
Gets current AFC error.
Definition: SX127x.cpp:879
SX127x::setRSSIThreshold
int16_t setRSSIThreshold(float dbm)
Sets the RSSI value above which the RSSI interrupt is signaled.
Definition: SX127x.cpp:1444
SX127x::getFHSSChannel
uint8_t getFHSSChannel(void)
Gets the FHSS channel in use.
Definition: SX127x.cpp:1775
@@ -968,7 +968,7 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
SX127x::setPreambleLength
int16_t setPreambleLength(size_t preambleLength) override
Sets LoRa or FSK preamble length. Allowed values range from 6 to 65535 in LoRa mode or 0 to 65535 in ...
Definition: SX127x.cpp:778
SX127x::setOokThresholdType
int16_t setOokThresholdType(uint8_t type)
Selects the type of threshold in the OOK data slicer.
Definition: SX127x.cpp:1126
SX127x::setRfSwitchPins
void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX127x.cpp:1523
-
SX127x::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+
SX127x::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
SX127x::getTempRaw
int8_t getTempRaw()
Reads uncalibrated temperature value. This function will change operating mode and should not be call...
Definition: SX127x.cpp:1560
SX127x::randomByte
uint8_t randomByte() override
Get one truly random byte from RSSI noise.
Definition: SX127x.cpp:1531
SX127x::clearDio1Action
void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: SX127x.cpp:467
@@ -981,7 +981,7 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
SX127x::setIrqFlags
int16_t setIrqFlags(uint32_t irq) override
Set interrupt on DIO1 to be sent on a specific IRQ bit (e.g. RxTimeout, CadDone). NOTE: Unlike other ...
Definition: SX127x.cpp:1317
SX127x::setAFCAGCTrigger
int16_t setAFCAGCTrigger(uint8_t trigger)
Controls trigger of AFC and AGC.
Definition: SX127x.cpp:1030
SX127x::setCrcFiltering
int16_t setCrcFiltering(bool enable=true)
Enable CRC filtering and generation.
Definition: SX127x.cpp:1434
-
SX127x::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
SX127x::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
SX127x::setRfSwitchTable
void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX127x.cpp:1527
SX127x::setNodeAddress
int16_t setNodeAddress(uint8_t nodeAddr)
Sets FSK node address. Calling this method will enable address filtering. Only available in FSK mode.
Definition: SX127x.cpp:1080
SX127x::setEncoding
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Only available in FSK mode. Allowed values are RADIOLIB_ENCODING_NRZ,...
Definition: SX127x.cpp:1479
@@ -1008,7 +1008,7 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
SX127x::disableAddressFiltering
int16_t disableAddressFiltering()
Disables FSK address filtering.
Definition: SX127x.cpp:1108
RadioLibTime_t
unsigned long RadioLibTime_t
Type used for durations in RadioLib.
Definition: TypeDef.h:642
RadioLibIrqFlags_t
uint32_t RadioLibIrqFlags_t
Type used for radio-agnostic IRQ flags. IRQ to enable corresponds to the bit index (RadioLibIrq_t)....
Definition: TypeDef.h:648
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/_s_x1280_8h_source.html b/_s_x1280_8h_source.html index 9bf024cd..7039fc90 100644 --- a/_s_x1280_8h_source.html +++ b/_s_x1280_8h_source.html @@ -116,7 +116,7 @@ $(document).ready(function(){initNavTree('_s_x1280_8h_source.html',''); initResi
54 #endif
55 
56 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1280
Derived class for SX1280 modules.
Definition: SX1280.h:16
SX1280::SX1280
SX1280(Module *mod)
Default constructor.
Definition: SX1280.cpp:5
SX1280::range
int16_t range(bool master, uint32_t addr, uint16_t calTable[3][6]=NULL)
Blocking ranging method.
Definition: SX1280.cpp:9
diff --git a/_s_x1281_8h_source.html b/_s_x1281_8h_source.html index de41ea7e..f7cc3bd2 100644 --- a/_s_x1281_8h_source.html +++ b/_s_x1281_8h_source.html @@ -109,7 +109,7 @@ $(document).ready(function(){initNavTree('_s_x1281_8h_source.html',''); initResi
29 #endif
30 
31 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1281
Derived class for SX1281 modules.
Definition: SX1281.h:15
SX1281::SX1281
SX1281(Module *mod)
Default constructor.
Definition: SX1281.cpp:4
SX128x
Base class for SX128x series. All derived classes for SX128x (e.g. SX1280 or SX1281) inherit from thi...
Definition: SX128x.h:351
diff --git a/_s_x1282_8h_source.html b/_s_x1282_8h_source.html index 55399dbb..c1d79a25 100644 --- a/_s_x1282_8h_source.html +++ b/_s_x1282_8h_source.html @@ -110,7 +110,7 @@ $(document).ready(function(){initNavTree('_s_x1282_8h_source.html',''); initResi
30 #endif
31 
32 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
SX1280
Derived class for SX1280 modules.
Definition: SX1280.h:16
SX1282
Derived class for SX1282 modules.
Definition: SX1282.h:16
SX1282::SX1282
SX1282(Module *mod)
Default constructor.
Definition: SX1282.cpp:5
diff --git a/_s_x128x_8h_source.html b/_s_x128x_8h_source.html index 7eed2532..8ba1e7ff 100644 --- a/_s_x128x_8h_source.html +++ b/_s_x128x_8h_source.html @@ -648,13 +648,13 @@ $(document).ready(function(){initNavTree('_s_x128x_8h_source.html',''); initResi
928 #endif
929 
930 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
-
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:74
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
+
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:75
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:141
-
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
-
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
-
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
+
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
+
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
+
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
SX128x
Base class for SX128x series. All derived classes for SX128x (e.g. SX1280 or SX1281) inherit from thi...
Definition: SX128x.h:351
SX128x::setDio1Action
void setDio1Action(void(*func)(void))
Sets interrupt service routine to call when DIO1 activates.
Definition: SX128x.cpp:491
SX128x::setPreambleLength
int16_t setPreambleLength(uint32_t preambleLength)
Sets preamble length for currently active modem. Allowed values range from 1 to 65535.
Definition: SX128x.cpp:859
@@ -669,12 +669,12 @@ $(document).ready(function(){initNavTree('_s_x128x_8h_source.html',''); initResi
SX128x::standby
int16_t standby() override
Sets the module to standby mode (overload for PhysicalLayer compatibility, uses 13 MHz RC oscillator)...
Definition: SX128x.cpp:474
SX128x::beginFLRC
int16_t beginFLRC(float freq=2400.0, uint16_t br=650, uint8_t cr=3, int8_t pwr=10, uint16_t preambleLength=16, uint8_t dataShaping=RADIOLIB_SHAPING_0_5)
Initialization method for FLRC modem.
Definition: SX128x.cpp:213
SX128x::scanChannel
int16_t scanChannel() override
Performs scan for LoRa transmission in the current channel. Detects both preamble and payload.
Definition: SX128x.cpp:423
-
SX128x::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
+
SX128x::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
SX128x::setGainControl
int16_t setGainControl(uint8_t gain=0)
Enables or disables receiver manual gain control.
Definition: SX128x.cpp:1214
SX128x::getPacketLength
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: SX128x.cpp:1338
SX128x::finishTransmit
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: SX128x.cpp:579
SX128x::invertIQ
int16_t invertIQ(bool enable) override
Enable/disable inversion of the I and Q signals.
Definition: SX128x.cpp:1448
-
SX128x::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
+
SX128x::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
SX128x::transmitDirect
int16_t transmitDirect(uint32_t frf=0) override
Starts direct mode transmission.
Definition: SX128x.cpp:400
SX128x::setRfSwitchPins
void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX128x.cpp:1434
SX128x::checkOutputPower
int16_t checkOutputPower(int8_t pwr, int8_t *clipped) override
Check if output power is configurable.
Definition: SX128x.cpp:851
@@ -685,7 +685,7 @@ $(document).ready(function(){initNavTree('_s_x128x_8h_source.html',''); initResi
SX128x::setEncoding
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Serves only as alias for PhysicalLayer compatibility.
Definition: SX128x.cpp:1430
SX128x::setWhitening
int16_t setWhitening(bool enabled)
Sets whitening parameters, not available for LoRa or FLRC modem.
Definition: SX128x.cpp:1166
SX128x::randomByte
uint8_t randomByte() override
Dummy random method, to ensure PhysicalLayer compatibility.
Definition: SX128x.cpp:1442
-
SX128x::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+
SX128x::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
SX128x::setAccessAddress
int16_t setAccessAddress(uint32_t addr)
Sets BLE access address.
Definition: SX128x.cpp:1186
SX128x::startChannelScan
int16_t startChannelScan() override
Interrupt-driven channel activity detection method. DIO1 will be activated when LoRa preamble is dete...
Definition: SX128x.cpp:681
SX128x::explicitHeader
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX128x.cpp:1426
@@ -696,7 +696,7 @@ $(document).ready(function(){initNavTree('_s_x128x_8h_source.html',''); initResi
SX128x::setCRC
int16_t setCRC(uint8_t len, uint32_t initial=0x1D0F, uint16_t polynomial=0x1021)
Sets CRC configuration.
Definition: SX128x.cpp:1102
SX128x::sleep
int16_t sleep() override
Sets the module to sleep mode. To wake the device up, call standby(). Overload for PhysicalLayer comp...
Definition: SX128x.cpp:452
SX128x::clearPacketSentAction
void clearPacketSentAction() override
Clears interrupt service routine to call when a packet is sent.
Definition: SX128x.cpp:511
-
SX128x::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
SX128x::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
SX128x::clearDio1Action
void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: SX128x.cpp:495
SX128x::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in range from 2400.0 to 2500.0 MHz.
Definition: SX128x.cpp:742
SX128x::getChannelScanResult
int16_t getChannelScanResult() override
Read the channel scan result.
Definition: SX128x.cpp:721
@@ -719,7 +719,7 @@ $(document).ready(function(){initNavTree('_s_x128x_8h_source.html',''); initResi
RADIOLIB_SHAPING_0_5
#define RADIOLIB_SHAPING_0_5
Gaussian shaping filter, BT = 0.5.
Definition: TypeDef.h:27
RadioLibTime_t
unsigned long RadioLibTime_t
Type used for durations in RadioLib.
Definition: TypeDef.h:642
RadioLibIrqFlags_t
uint32_t RadioLibIrqFlags_t
Type used for radio-agnostic IRQ flags. IRQ to enable corresponds to the bit index (RadioLibIrq_t)....
Definition: TypeDef.h:648
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
ChannelScanConfig_t
Common channel scan configuration structure.
Definition: PhysicalLayer.h:125
DataRate_t
Common data rate structure.
Definition: PhysicalLayer.h:74
diff --git a/_si4430_8h_source.html b/_si4430_8h_source.html index 4bc03736..cdf77389 100644 --- a/_si4430_8h_source.html +++ b/_si4430_8h_source.html @@ -125,7 +125,7 @@ $(document).ready(function(){initNavTree('_si4430_8h_source.html',''); initResiz
65 #endif
66 
67 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
Si4430
Derived class for Si4430 modules.
Definition: Si4430.h:15
Si4430::setFrequency
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values range from 900.0 MHz to 960.0 MHz.
Definition: Si4430.cpp:24
Si4430::begin
int16_t begin(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=181.1, int8_t power=10, uint8_t preambleLen=16)
Initialization method. Must be called at least once from Arduino sketch to initialize the module.
Definition: Si4430.cpp:8
diff --git a/_si4431_8h_source.html b/_si4431_8h_source.html index 31bba589..889beab2 100644 --- a/_si4431_8h_source.html +++ b/_si4431_8h_source.html @@ -123,7 +123,7 @@ $(document).ready(function(){initNavTree('_si4431_8h_source.html',''); initResiz
58 #endif
59 
60 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
Si4431
Derived class for Si4431 modules.
Definition: Si4431.h:15
Si4431::Si4431
Si4431(Module *mod)
Default constructor.
Definition: Si4431.cpp:4
Si4431::begin
int16_t begin(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=181.1, int8_t power=10, uint8_t preambleLen=16)
Initialization method. Must be called at least once from Arduino sketch to initialize the module.
Definition: Si4431.cpp:8
diff --git a/_si4432_8h_source.html b/_si4432_8h_source.html index 228246eb..ef99350a 100644 --- a/_si4432_8h_source.html +++ b/_si4432_8h_source.html @@ -125,7 +125,7 @@ $(document).ready(function(){initNavTree('_si4432_8h_source.html',''); initResiz
65 #endif
66 
67 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
Si4432
Derived class for Si4432 modules.
Definition: Si4432.h:15
Si4432::setOutputPower
int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values range from -1 to 20 dBm in 3 dBm steps.
Definition: Si4432.cpp:31
Si4432::begin
int16_t begin(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=181.1, int8_t power=10, uint8_t preambleLen=16)
Initialization method. Must be called at least once from Arduino sketch to initialize the module.
Definition: Si4432.cpp:8
diff --git a/_si443x_8h_source.html b/_si443x_8h_source.html index 60f41304..02823dbe 100644 --- a/_si443x_8h_source.html +++ b/_si443x_8h_source.html @@ -762,13 +762,13 @@ $(document).ready(function(){initNavTree('_si443x_8h_source.html',''); initResiz
858 #endif
859 
860 #endif
-
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
-
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:74
+
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:66
+
Module::RFSWITCH_MAX_PINS
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:75
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:141
-
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
-
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
-
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
-
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
PhysicalLayer::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
+
PhysicalLayer::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
+
PhysicalLayer::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
+
PhysicalLayer::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
Si443x
Base class for Si443x series. All derived classes for Si443x (e.g. Si4431 or Si4432) inherit from thi...
Definition: Si443x.h:553
Si443x::setPacketReceivedAction
void setPacketReceivedAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is received.
Definition: Si443x.cpp:213
Si443x::setEncoding
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Only available in FSK mode. Allowed values are RADIOLIB_ENCODING_NRZ,...
Definition: Si443x.cpp:552
@@ -776,12 +776,12 @@ $(document).ready(function(){initNavTree('_si443x_8h_source.html',''); initResiz
Si443x::receiveDirect
int16_t receiveDirect() override
Enables direct reception mode. While in direct mode, the module will not be able to transmit or recei...
Definition: Si443x.cpp:185
Si443x::readBit
void readBit(uint32_t pin) override
Function to read and process data bit in direct reception mode.
Definition: Si443x.cpp:623
Si443x::getPacketLength
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: Si443x.cpp:539
-
Si443x::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
+
Si443x::readData
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:210
Si443x::setRfSwitchPins
void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: Si443x.cpp:587
Si443x::begin
int16_t begin(float br, float freqDev, float rxBw, uint8_t preambleLen)
Initialization method.
Definition: Si443x.cpp:9
Si443x::setPreambleLength
int16_t setPreambleLength(uint8_t preambleLen)
Sets preamble length.
Definition: Si443x.cpp:523
Si443x::setDirectAction
void setDirectAction(void(*func)(void)) override
Set interrupt service routine function to call when data bit is received in direct mode.
Definition: Si443x.cpp:619
-
Si443x::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
+
Si443x::transmit
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:53
Si443x::clearPacketSentAction
void clearPacketSentAction() override
Clears interrupt service routine to call when a packet is sent.
Definition: Si443x.cpp:225
Si443x::setRxBandwidth
int16_t setRxBandwidth(float rxBw)
Sets receiver bandwidth. Allowed values range from 2.6 to 620.7 kHz.
Definition: Si443x.cpp:399
Si443x::getChipVersion
int16_t getChipVersion()
Read version SPI register. Should return RADIOLIB_SI443X_DEVICE_VERSION (0x06) if Si443x is connected...
Definition: Si443x.cpp:614
@@ -792,9 +792,9 @@ $(document).ready(function(){initNavTree('_si443x_8h_source.html',''); initResiz
Si443x::setIrqAction
void setIrqAction(void(*func)(void))
Sets interrupt service routine to call when IRQ activates.
Definition: Si443x.cpp:205
Si443x::setRfSwitchTable
void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: Si443x.cpp:591
Si443x::clearIrqAction
void clearIrqAction()
Clears interrupt service routine to call when IRQ activates.
Definition: Si443x.cpp:209
-
Si443x::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
+
Si443x::startTransmit
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:150
Si443x::sleep
int16_t sleep() override
Sets the module to sleep to save power. Module will not be able to transmit or receive any data while...
Definition: Si443x.cpp:117
-
Si443x::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
+
Si443x::receive
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:113
Si443x::variablePacketLengthMode
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SI443X_MAX_PACKET_LENGTH)
Set modem in variable packet length mode.
Definition: Si443x.cpp:632
Si443x::standby
int16_t standby() override
Sets the module to standby (with XTAL on).
Definition: Si443x.cpp:133
Si443x::fixedPacketLengthMode
int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_SI443X_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode.
Definition: Si443x.cpp:628
@@ -806,7 +806,7 @@ $(document).ready(function(){initNavTree('_si443x_8h_source.html',''); initResiz
Si443x::setSyncWord
int16_t setSyncWord(uint8_t *syncWord, size_t len) override
Sets sync word. Up to 4 bytes can be set as sync word.
Definition: Si443x.cpp:506
Si443x::setPacketSentAction
void setPacketSentAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is sent.
Definition: Si443x.cpp:221
Si443x::setBitRate
int16_t setBitRate(float br) override
Sets FSK bit rate. Allowed values range from 0.123 to 256.0 kbps.
Definition: Si443x.cpp:345
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/_utils_8h_source.html b/_utils_8h_source.html new file mode 100644 index 00000000..dbfa8486 --- /dev/null +++ b/_utils_8h_source.html @@ -0,0 +1,126 @@ + + + + + + + +RadioLib: src/utils/Utils.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
RadioLib +
+
Universal wireless communication library for Arduino
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Utils.h
+
+
+
1 #if !defined(_RADIOLIB_UTILS_H)
+
2 #define _RADIOLIB_UTILS_H
+
3 
+
4 #include "TypeDef.h"
+
5 
+
6 #include <stdint.h>
+
7 #include <stdlib.h>
+
8 
+
9 // macros to access bits in byte array, from http://www.mathcs.emory.edu/~cheung/Courses/255/Syllabus/1-C-intro/bit-array.html
+
10 #define SET_BIT_IN_ARRAY_MSB(A, k) ( A[((k)/8)] |= (1 << ((k)%8)) )
+
11 #define CLEAR_BIT_IN_ARRAY_MSB(A, k) ( A[((k)/8)] &= ~(1 << ((k)%8)) )
+
12 #define TEST_BIT_IN_ARRAY_MSB(A, k) ( A[((k)/8)] & (1 << ((k)%8)) )
+
13 #define GET_BIT_IN_ARRAY_MSB(A, k) ( (A[((k)/8)] & (1 << ((k)%8))) ? 1 : 0 )
+
14 #define SET_BIT_IN_ARRAY_LSB(A, k) ( A[((k)/8)] |= (1 << (7 - ((k)%8))) )
+
15 #define CLEAR_BIT_IN_ARRAY_LSB(A, k) ( A[((k)/8)] &= ~(1 << (7 - ((k)%8))) )
+
16 #define TEST_BIT_IN_ARRAY_LSB(A, k) ( A[((k)/8)] & (1 << (7 - ((k)%8))) )
+
17 #define GET_BIT_IN_ARRAY_LSB(A, k) ( (A[((k)/8)] & (1 << (7 - ((k)%8)))) ? 1 : 0 )
+
18 
+
25 uint32_t rlb_reflect(uint32_t in, uint8_t bits);
+
26 
+
36 void rlb_hexdump(const char* level, uint8_t* data, size_t len, uint32_t offset = 0, uint8_t width = 1, bool be = false);
+
37 
+
38 #if RADIOLIB_DEBUG and defined(RADIOLIB_BUILD_ARDUINO)
+
39 size_t rlb_printf(const char* format, ...);
+
40 #endif
+
41 
+
42 #endif
+
+
+ + + + diff --git a/class_c_c1101.html b/class_c_c1101.html index 70e2d290..4551d5c9 100644 --- a/class_c_c1101.html +++ b/class_c_c1101.html @@ -1924,10 +1924,10 @@ virtual void  radio.setRfSwitchTable(rfswitch_pins, rfswitch_table);
...
}
-
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:111
-
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:105
-
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:108
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:112
+
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:106
+
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:109
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/class_l_r11x0.html b/class_l_r11x0.html index d5ae6b89..efa78aaf 100644 --- a/class_l_r11x0.html +++ b/class_l_r11x0.html @@ -2675,10 +2675,10 @@ bool  radio.setRfSwitchTable(rfswitch_pins, rfswitch_table);
...
}
-
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:111
-
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:105
-
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:108
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:112
+
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:106
+
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:109
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/class_module-members.html b/class_module-members.html index f934d9da..6fccd138 100644 --- a/class_module-members.html +++ b/class_module-members.html @@ -109,29 +109,28 @@ $(document).ready(function(){initNavTree('class_module.html',''); initResizable( Module(const Module &mod)Module operator=(const Module &mod)Module OpMode_t enum nameModule - reflect(uint32_t in, uint8_t bits)Modulestatic - RFSWITCH_MAX_PINSModulestatic - setRfSwitchPins(uint32_t rxEn, uint32_t txEn)Module - setRfSwitchState(uint8_t mode)Module - setRfSwitchTable(const uint32_t(&pins)[RFSWITCH_MAX_PINS], const RfSwitchMode_t table[])Module - SPIcheckStatusCb_t typedefModule - SPIcheckStream()Module - spiConfigModule - SPIgetRegValue(uint32_t reg, uint8_t msb=7, uint8_t lsb=0)Module - SPIparseStatusCb_t typedefModule - SPIreadRegister(uint32_t reg)Module - SPIreadRegisterBurst(uint32_t reg, size_t numBytes, uint8_t *inBytes)Module - SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module - SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module - SPIsetRegValue(uint32_t reg, uint8_t value, uint8_t msb=7, uint8_t lsb=0, uint8_t checkInterval=2, uint8_t checkMask=0xFF)Module - SPItransfer(uint16_t cmd, uint32_t reg, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes)Module - SPItransferStream(const uint8_t *cmd, uint8_t cmdLen, bool write, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes, bool waitForGpio)Module - SPIwriteRegister(uint32_t reg, uint8_t data)Module - SPIwriteRegisterBurst(uint32_t reg, uint8_t *data, size_t numBytes)Module - SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module - SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module - term()Module - waitForMicroseconds(RadioLibTime_t start, RadioLibTime_t len)Module + RFSWITCH_MAX_PINSModulestatic + setRfSwitchPins(uint32_t rxEn, uint32_t txEn)Module + setRfSwitchState(uint8_t mode)Module + setRfSwitchTable(const uint32_t(&pins)[RFSWITCH_MAX_PINS], const RfSwitchMode_t table[])Module + SPIcheckStatusCb_t typedefModule + SPIcheckStream()Module + spiConfigModule + SPIgetRegValue(uint32_t reg, uint8_t msb=7, uint8_t lsb=0)Module + SPIparseStatusCb_t typedefModule + SPIreadRegister(uint32_t reg)Module + SPIreadRegisterBurst(uint32_t reg, size_t numBytes, uint8_t *inBytes)Module + SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module + SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module + SPIsetRegValue(uint32_t reg, uint8_t value, uint8_t msb=7, uint8_t lsb=0, uint8_t checkInterval=2, uint8_t checkMask=0xFF)Module + SPItransfer(uint16_t cmd, uint32_t reg, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes)Module + SPItransferStream(const uint8_t *cmd, uint8_t cmdLen, bool write, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes, bool waitForGpio)Module + SPIwriteRegister(uint32_t reg, uint8_t data)Module + SPIwriteRegisterBurst(uint32_t reg, uint8_t *data, size_t numBytes)Module + SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module + SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module + term()Module + waitForMicroseconds(RadioLibTime_t start, RadioLibTime_t len)Module diff --git a/class_module.html b/class_module.html index 1e13d4fe..c3060532 100644 --- a/class_module.html +++ b/class_module.html @@ -86,7 +86,6 @@ $(document).ready(function(){initNavTree('class_module.html',''); initResizable( Classes | Public Types | Public Member Functions | -Static Public Member Functions | Public Attributes | Static Public Attributes | List of all members @@ -228,12 +227,6 @@ void  Wait for time to elapse, either using the microsecond timer, or the TimerFlag. Note that in interrupt timing mode, it is up to the user to set up the timing interrupt! More...
  - - - - -

-Static Public Member Functions

static uint32_t reflect (uint32_t in, uint8_t bits)
 Function to reflect bits within a byte. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + +

Public Attributes

@@ -530,52 +523,6 @@ static const size_t  - - - -

◆ reflect()

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
uint32_t Module::reflect (uint32_t in,
uint8_t bits 
)
-
-static
-
- -

Function to reflect bits within a byte.

-
Parameters
- - - -
inThe input to reflect.
bitsNumber of bits to reflect.
-
-
-
Returns
The reflected input.
-
@@ -700,10 +647,10 @@ static const size_t 
radio.setRfSwitchTable(rfswitch_pins, rfswitch_table);
...
}
-
@ MODE_TX
Transmission mode.
Definition: Module.h:111
-
@ MODE_IDLE
Idle mode.
Definition: Module.h:105
-
@ MODE_RX
Receive mode.
Definition: Module.h:108
-
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
@ MODE_TX
Transmission mode.
Definition: Module.h:112
+
@ MODE_IDLE
Idle mode.
Definition: Module.h:106
+
@ MODE_RX
Receive mode.
Definition: Module.h:109
+
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/class_r_f69.html b/class_r_f69.html index fdf16400..0f6995ba 100644 --- a/class_r_f69.html +++ b/class_r_f69.html @@ -2153,10 +2153,10 @@ virtual void 
radio.setRfSwitchTable(rfswitch_pins, rfswitch_table);
...
}
-
@ MODE_TX
Transmission mode.
Definition: Module.h:111
-
@ MODE_IDLE
Idle mode.
Definition: Module.h:105
-
@ MODE_RX
Receive mode.
Definition: Module.h:108
-
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
@ MODE_TX
Transmission mode.
Definition: Module.h:112
+
@ MODE_IDLE
Idle mode.
Definition: Module.h:106
+
@ MODE_RX
Receive mode.
Definition: Module.h:109
+
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/class_s_t_m32_w_lx___module-members.html b/class_s_t_m32_w_lx___module-members.html index 909296e2..9d27fddf 100644 --- a/class_s_t_m32_w_lx___module-members.html +++ b/class_s_t_m32_w_lx___module-members.html @@ -109,30 +109,29 @@ $(document).ready(function(){initNavTree('class_s_t_m32_w_lx___module.html','');
Module(const Module &mod)Module
operator=(const Module &mod)Module
OpMode_t enum nameModule
reflect(uint32_t in, uint8_t bits)Modulestatic
RFSWITCH_MAX_PINSModulestatic
setRfSwitchPins(uint32_t rxEn, uint32_t txEn)Module
setRfSwitchState(uint8_t mode)Module
setRfSwitchTable(const uint32_t(&pins)[RFSWITCH_MAX_PINS], const RfSwitchMode_t table[])Module
SPIcheckStatusCb_t typedefModule
SPIcheckStream()Module
spiConfigModule
SPIgetRegValue(uint32_t reg, uint8_t msb=7, uint8_t lsb=0)Module
SPIparseStatusCb_t typedefModule
SPIreadRegister(uint32_t reg)Module
SPIreadRegisterBurst(uint32_t reg, size_t numBytes, uint8_t *inBytes)Module
SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module
SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module
SPIsetRegValue(uint32_t reg, uint8_t value, uint8_t msb=7, uint8_t lsb=0, uint8_t checkInterval=2, uint8_t checkMask=0xFF)Module
SPItransfer(uint16_t cmd, uint32_t reg, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes)Module
SPItransferStream(const uint8_t *cmd, uint8_t cmdLen, bool write, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes, bool waitForGpio)Module
SPIwriteRegister(uint32_t reg, uint8_t data)Module
SPIwriteRegisterBurst(uint32_t reg, uint8_t *data, size_t numBytes)Module
SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module
SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module
STM32WLx_Module() (defined in STM32WLx_Module)STM32WLx_Module
term()Module
waitForMicroseconds(RadioLibTime_t start, RadioLibTime_t len)Module
RFSWITCH_MAX_PINSModulestatic
setRfSwitchPins(uint32_t rxEn, uint32_t txEn)Module
setRfSwitchState(uint8_t mode)Module
setRfSwitchTable(const uint32_t(&pins)[RFSWITCH_MAX_PINS], const RfSwitchMode_t table[])Module
SPIcheckStatusCb_t typedefModule
SPIcheckStream()Module
spiConfigModule
SPIgetRegValue(uint32_t reg, uint8_t msb=7, uint8_t lsb=0)Module
SPIparseStatusCb_t typedefModule
SPIreadRegister(uint32_t reg)Module
SPIreadRegisterBurst(uint32_t reg, size_t numBytes, uint8_t *inBytes)Module
SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module
SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module
SPIsetRegValue(uint32_t reg, uint8_t value, uint8_t msb=7, uint8_t lsb=0, uint8_t checkInterval=2, uint8_t checkMask=0xFF)Module
SPItransfer(uint16_t cmd, uint32_t reg, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes)Module
SPItransferStream(const uint8_t *cmd, uint8_t cmdLen, bool write, uint8_t *dataOut, uint8_t *dataIn, size_t numBytes, bool waitForGpio)Module
SPIwriteRegister(uint32_t reg, uint8_t data)Module
SPIwriteRegisterBurst(uint32_t reg, uint8_t *data, size_t numBytes)Module
SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module
SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)Module
STM32WLx_Module() (defined in STM32WLx_Module)STM32WLx_Module
term()Module
waitForMicroseconds(RadioLibTime_t start, RadioLibTime_t len)Module
diff --git a/class_s_t_m32_w_lx___module.html b/class_s_t_m32_w_lx___module.html index 540cfbb2..8622732e 100644 --- a/class_s_t_m32_w_lx___module.html +++ b/class_s_t_m32_w_lx___module.html @@ -208,10 +208,6 @@ void void waitForMicroseconds (RadioLibTime_t start, RadioLibTime_t len)  Wait for time to elapse, either using the microsecond timer, or the TimerFlag. Note that in interrupt timing mode, it is up to the user to set up the timing interrupt! More...
  -- Static Public Member Functions inherited from Module -static uint32_t reflect (uint32_t in, uint8_t bits) - Function to reflect bits within a byte. More...
- Public Attributes inherited from Module RadioLibHalhal = NULL diff --git a/class_s_x126x.html b/class_s_x126x.html index 8ca1288c..0ea63bd2 100644 --- a/class_s_x126x.html +++ b/class_s_x126x.html @@ -2615,10 +2615,10 @@ bool  radio.setRfSwitchTable(rfswitch_pins, rfswitch_table);
...
}
-
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:111
-
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:105
-
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:108
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:112
+
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:106
+
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:109
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/class_s_x127x.html b/class_s_x127x.html index 4e8768f3..f7a45e68 100644 --- a/class_s_x127x.html +++ b/class_s_x127x.html @@ -2636,10 +2636,10 @@ void  radio.setRfSwitchTable(rfswitch_pins, rfswitch_table);
...
}
-
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:111
-
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:105
-
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:108
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:112
+
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:106
+
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:109
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/class_s_x128x.html b/class_s_x128x.html index 42cb33f6..4208c5de 100644 --- a/class_s_x128x.html +++ b/class_s_x128x.html @@ -2282,10 +2282,10 @@ virtual void  radio.setRfSwitchTable(rfswitch_pins, rfswitch_table);
...
}
-
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:111
-
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:105
-
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:108
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:112
+
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:106
+
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:109
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/class_si443x.html b/class_si443x.html index 1405906b..8801005e 100644 --- a/class_si443x.html +++ b/class_si443x.html @@ -1233,10 +1233,10 @@ virtual void  radio.setRfSwitchTable(rfswitch_pins, rfswitch_table);
...
}
-
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:111
-
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:105
-
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:108
-
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
+
Module::MODE_TX
@ MODE_TX
Transmission mode.
Definition: Module.h:112
+
Module::MODE_IDLE
@ MODE_IDLE
Idle mode.
Definition: Module.h:106
+
Module::MODE_RX
@ MODE_RX
Receive mode.
Definition: Module.h:109
+
Module::RfSwitchMode_t
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:82
diff --git a/dir_313caf1132e152dd9b58bea13a4052ca.js b/dir_313caf1132e152dd9b58bea13a4052ca.js index c7ac7ecb..f174ec1a 100644 --- a/dir_313caf1132e152dd9b58bea13a4052ca.js +++ b/dir_313caf1132e152dd9b58bea13a4052ca.js @@ -2,5 +2,6 @@ var dir_313caf1132e152dd9b58bea13a4052ca = [ [ "CRC.h", "_c_r_c_8h_source.html", null ], [ "Cryptography.h", "_cryptography_8h_source.html", null ], - [ "FEC.h", "_f_e_c_8h_source.html", null ] + [ "FEC.h", "_f_e_c_8h_source.html", null ], + [ "Utils.h", "_utils_8h_source.html", null ] ]; \ No newline at end of file diff --git a/files.html b/files.html index d14b1485..83b53f52 100644 --- a/files.html +++ b/files.html @@ -184,13 +184,14 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });  CRC.h  Cryptography.h  FEC.h - ArduinoHal.h - BuildOpt.h - BuildOptUser.h - Hal.h - Module.h - RadioLib.h - TypeDef.h + Utils.h + ArduinoHal.h + BuildOpt.h + BuildOptUser.h + Hal.h + Module.h + RadioLib.h + TypeDef.h diff --git a/functions_func_r.html b/functions_func_r.html index ab5cdda9..1a7dd306 100644 --- a/functions_func_r.html +++ b/functions_func_r.html @@ -136,10 +136,10 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza , PagerClient , PhysicalLayer , RF69 -, Si443x -, SX126x +, Si443x +, SX126x , SX127x -, SX128x +, SX128x
  • receive() : CC1101 @@ -148,7 +148,7 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza , PhysicalLayer , RF69 , Si443x -, SX126x +, SX126x , SX127x , SX128x
  • @@ -166,9 +166,6 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
  • receiveDirectAsync() : CC1101
  • -
  • reflect() -: Module -
  • reset() : CC1101 , LR11x0 diff --git a/functions_g.html b/functions_g.html index 3056ffc1..df5c35a5 100644 --- a/functions_g.html +++ b/functions_g.html @@ -171,13 +171,13 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable() : LR11x0 , PhysicalLayer , SX126x +, SX127x
  • getIRQFlags() : SX127x
  • getIrqFlags() -: SX127x -, SX128x +: SX128x
  • getIrqMapped() : PhysicalLayer diff --git a/functions_r.html b/functions_r.html index a74076d6..4eaf7dd1 100644 --- a/functions_r.html +++ b/functions_r.html @@ -175,9 +175,6 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
  • refIn : RadioLibCRC
  • -
  • reflect() -: Module -
  • refOut : RadioLibCRC
  • diff --git a/n_r_f24_8h_source.html b/n_r_f24_8h_source.html index 383fa056..f523c67d 100644 --- a/n_r_f24_8h_source.html +++ b/n_r_f24_8h_source.html @@ -381,12 +381,12 @@ $(document).ready(function(){initNavTree('n_r_f24_8h_source.html',''); initResiz
    489 };
    490 
    491 #endif
    -
    Module
    Implements all common low-level methods to control the wireless module. Every module class contains o...
    Definition: Module.h:65
    +
    Module
    Implements all common low-level methods to control the wireless module. Every module class contains o...
    Definition: Module.h:66
    PhysicalLayer
    Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
    Definition: PhysicalLayer.h:141
    -
    PhysicalLayer::readData
    virtual int16_t readData(uint8_t *data, size_t len)
    Reads data that was received after calling startReceive method.
    Definition: PhysicalLayer.cpp:209
    -
    PhysicalLayer::transmit
    int16_t transmit(const char *str, uint8_t addr=0)
    C-string transmit method.
    Definition: PhysicalLayer.cpp:52
    -
    PhysicalLayer::startTransmit
    int16_t startTransmit(const char *str, uint8_t addr=0)
    Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
    Definition: PhysicalLayer.cpp:149
    -
    PhysicalLayer::receive
    virtual int16_t receive(uint8_t *data, size_t len)
    Binary receive method. Must be implemented in module class.
    Definition: PhysicalLayer.cpp:112
    +
    PhysicalLayer::readData
    virtual int16_t readData(uint8_t *data, size_t len)
    Reads data that was received after calling startReceive method.
    Definition: PhysicalLayer.cpp:210
    +
    PhysicalLayer::transmit
    int16_t transmit(const char *str, uint8_t addr=0)
    C-string transmit method.
    Definition: PhysicalLayer.cpp:53
    +
    PhysicalLayer::startTransmit
    int16_t startTransmit(const char *str, uint8_t addr=0)
    Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
    Definition: PhysicalLayer.cpp:150
    +
    PhysicalLayer::receive
    virtual int16_t receive(uint8_t *data, size_t len)
    Binary receive method. Must be implemented in module class.
    Definition: PhysicalLayer.cpp:113
    nRF24
    Control class for nRF24 module.
    Definition: nRF24.h:184
    nRF24::setEncoding
    int16_t setEncoding(uint8_t encoding) override
    Dummy encoding configuration method, to ensure PhysicalLayer compatibility.
    Definition: nRF24.cpp:557
    nRF24::transmitDirect
    int16_t transmitDirect(uint32_t frf=0) override
    Starts direct mode transmission.
    Definition: nRF24.cpp:133
    @@ -396,13 +396,13 @@ $(document).ready(function(){initNavTree('n_r_f24_8h_source.html',''); initResiz
    nRF24::getPacketLength
    size_t getPacketLength(bool update=true) override
    Query modem for the packet length of received payload.
    Definition: nRF24.cpp:503
    nRF24::setPacketSentAction
    void setPacketSentAction(void(*func)(void)) override
    Sets interrupt service routine to call when a packet is sent.
    Definition: nRF24.cpp:170
    nRF24::setReceivePipe
    int16_t setReceivePipe(uint8_t pipeNum, uint8_t *addr)
    Sets address of receive pipes 0 or 1. The address width must be the same as the same as the configure...
    Definition: nRF24.cpp:405
    -
    nRF24::readData
    virtual int16_t readData(uint8_t *data, size_t len)
    Reads data that was received after calling startReceive method.
    Definition: PhysicalLayer.cpp:209
    +
    nRF24::readData
    virtual int16_t readData(uint8_t *data, size_t len)
    Reads data that was received after calling startReceive method.
    Definition: PhysicalLayer.cpp:210
    nRF24::startReceive
    int16_t startReceive() override
    Interrupt-driven receive method. IRQ will be activated when full packet is received.
    Definition: nRF24.cpp:226
    nRF24::setCrcFiltering
    int16_t setCrcFiltering(bool crcOn=true)
    Enable CRC filtering and generation.
    Definition: nRF24.cpp:510
    nRF24::getStatus
    int16_t getStatus(uint8_t mask=0xFF)
    Gets nRF24 status register.
    Definition: nRF24.cpp:488
    nRF24::clearPacketSentAction
    void clearPacketSentAction() override
    Clears interrupt service routine to call when a packet is sent.
    Definition: nRF24.cpp:174
    nRF24::receiveDirect
    int16_t receiveDirect() override
    Dummy direct mode reception method, to ensure PhysicalLayer compatibility.
    Definition: nRF24.cpp:148
    -
    nRF24::transmit
    int16_t transmit(const char *str, uint8_t addr=0)
    C-string transmit method.
    Definition: PhysicalLayer.cpp:52
    +
    nRF24::transmit
    int16_t transmit(const char *str, uint8_t addr=0)
    C-string transmit method.
    Definition: PhysicalLayer.cpp:53
    nRF24::disablePipe
    int16_t disablePipe(uint8_t pipeNum)
    Disables specified receive pipe.
    Definition: nRF24.cpp:457
    nRF24::setOutputPower
    int16_t setOutputPower(int8_t pwr) override
    Sets output power. Allowed values are -18, -12, -6 or 0 dBm.
    Definition: nRF24.cpp:323
    nRF24::setFrequencyDeviation
    int16_t setFrequencyDeviation(float freqDev) override
    Dummy configuration method, to ensure PhysicalLayer compatibility.
    Definition: nRF24.cpp:496
    @@ -412,11 +412,11 @@ $(document).ready(function(){initNavTree('n_r_f24_8h_source.html',''); initResiz
    nRF24::setPacketReceivedAction
    void setPacketReceivedAction(void(*func)(void)) override
    Sets interrupt service routine to call when a packet is received.
    Definition: nRF24.cpp:162
    nRF24::sleep
    int16_t sleep() override
    Sets the module to sleep mode.
    Definition: nRF24.cpp:67
    nRF24::setBitRate
    int16_t setBitRate(float br) override
    Sets bit rate. Allowed values are 2000, 1000 or 250 kbps.
    Definition: nRF24.cpp:295
    -
    nRF24::startTransmit
    int16_t startTransmit(const char *str, uint8_t addr=0)
    Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
    Definition: PhysicalLayer.cpp:149
    +
    nRF24::startTransmit
    int16_t startTransmit(const char *str, uint8_t addr=0)
    Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
    Definition: PhysicalLayer.cpp:150
    nRF24::setTransmitPipe
    int16_t setTransmitPipe(uint8_t *addr)
    Sets address of transmit pipe. The address width must be the same as the same as the configured in se...
    Definition: nRF24.cpp:390
    nRF24::clearIrqAction
    void clearIrqAction()
    Clears interrupt service routine .
    Definition: nRF24.cpp:158
    nRF24::nRF24
    nRF24(Module *mod)
    Default constructor.
    Definition: nRF24.cpp:5
    -
    nRF24::receive
    virtual int16_t receive(uint8_t *data, size_t len)
    Binary receive method. Must be implemented in module class.
    Definition: PhysicalLayer.cpp:112
    +
    nRF24::receive
    virtual int16_t receive(uint8_t *data, size_t len)
    Binary receive method. Must be implemented in module class.
    Definition: PhysicalLayer.cpp:113
    nRF24::setIrqAction
    void setIrqAction(void(*func)(void))
    Sets interrupt service routine to call when IRQ activates.
    Definition: nRF24.cpp:154
    nRF24::setAutoAck
    int16_t setAutoAck(bool autoAckOn=true)
    Enable or disable auto-acknowledge packets on all pipes.
    Definition: nRF24.cpp:521
    nRF24::isCarrierDetected
    bool isCarrierDetected()
    Checks if carrier was detected during last RX.
    Definition: nRF24.cpp:492
    diff --git a/navtreedata.js b/navtreedata.js index 368c87db..bfbcdc6b 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -55,12 +55,12 @@ var NAVTREE = var NAVTREEINDEX = [ "_a_f_s_k_8h_source.html", -"class_l_r1120.html#acf6ea475643c6eba63133641a8681a8f", -"class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b", -"class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899", -"class_s_x127x.html#aa565bbff460e487672953dc05d335cb0", -"dir_79690749eba542503bb1a9a3dbb495e1.html", -"pages.html" +"class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb", +"class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65", +"class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6", +"class_s_x127x.html#aa3eae13a7f0558c1bc881abebd958242", +"dir_747c20e84f9dfe1cc835713177129efc.html", +"n_r_f24_8h_source.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex0.js b/navtreeindex0.js index 69bc6444..0fac5348 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -59,6 +59,7 @@ var NAVTREEINDEX0 = "_si4432_8h_source.html":[4,0,0,0,6,2], "_si443x_8h_source.html":[4,0,0,0,6,3], "_type_def_8h_source.html":[4,0,0,9], +"_utils_8h_source.html":[4,0,0,2,3], "annotated.html":[3,0], "class_a_f_s_k_client.html":[3,0,0], "class_a_f_s_k_client.html#a0012621c1414f4c7573e961b57884a5b":[3,0,0,5], @@ -248,6 +249,5 @@ var NAVTREEINDEX0 = "class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7":[3,0,26,9], "class_l_r1120.html#a369b667c81e1ec724148b401c5aad79d":[3,0,26,5], "class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2":[3,0,26,7], -"class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5":[3,0,26,2], -"class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb":[3,0,26,6] +"class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5":[3,0,26,2] }; diff --git a/navtreeindex1.js b/navtreeindex1.js index efaf35f3..e6cf4ab5 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -1,5 +1,6 @@ var NAVTREEINDEX1 = { +"class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb":[3,0,26,6], "class_l_r1120.html#acf6ea475643c6eba63133641a8681a8f":[3,0,26,4], "class_l_r1120.html#ad49ce378101cf0c3894297808ae27f3a":[3,0,26,3], "class_l_r1120.html#ae652f10ebc1e4b8245eb5a0c97765257":[3,0,26,0], @@ -248,6 +249,5 @@ var NAVTREEINDEX1 = "class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab":[3,0,43,38], "class_physical_layer.html#a923654706eff5118ef6e84214e837f27":[3,0,43,57], "class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c":[3,0,43,14], -"class_physical_layer.html#a9ec0776e58831979405850594429e2d2":[3,0,43,68], -"class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65":[3,0,43,61] +"class_physical_layer.html#a9ec0776e58831979405850594429e2d2":[3,0,43,68] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index 4cd666ef..3f4f15a0 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,5 +1,6 @@ var NAVTREEINDEX2 = { +"class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65":[3,0,43,61], "class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b":[3,0,43,18], "class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26":[3,0,43,1], "class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,43,28], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35":[3,0,70,0], "class_s_x1261.html#ae8e9968a9ee1c2199ed9f968d8f4e3b1":[3,0,70,1], "class_s_x1262.html":[3,0,71], -"class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d":[3,0,71,0], -"class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6":[3,0,71,6] +"class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d":[3,0,71,0] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index 63ceae21..e4552636 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6":[3,0,71,6], "class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899":[3,0,71,5], "class_s_x1262.html#a33c304c19634a905c7318d9ca88f4e93":[3,0,71,4], "class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1":[3,0,71,2], @@ -248,6 +249,5 @@ var NAVTREEINDEX3 = "class_s_x127x.html#a9877550ed7881be06d00ea190f230fb9":[3,0,80,38], "class_s_x127x.html#a9b6532a25e1730973ac08146008adca5":[3,0,80,6], "class_s_x127x.html#a9ca9aa18e13e8390ec437e249e1d2472":[3,0,80,65], -"class_s_x127x.html#a9e7ecbc92c9d70f93211d21399d237d0":[3,0,80,34], -"class_s_x127x.html#aa3eae13a7f0558c1bc881abebd958242":[3,0,80,10] +"class_s_x127x.html#a9e7ecbc92c9d70f93211d21399d237d0":[3,0,80,34] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index 3237be9c..edc798f9 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,5 +1,6 @@ var NAVTREEINDEX4 = { +"class_s_x127x.html#aa3eae13a7f0558c1bc881abebd958242":[3,0,80,10], "class_s_x127x.html#aa565bbff460e487672953dc05d335cb0":[3,0,80,84], "class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f":[3,0,80,44], "class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1":[3,0,80,8], @@ -248,6 +249,5 @@ var NAVTREEINDEX4 = "dir_66ce0d8112a82c480b60d648cf9cb1ca.html":[4,0,0,1,13], "dir_68267d1309a1af8e8297ef4c3efbcdba.html":[4,0,0], "dir_6dea20bfcf2e1a380cdc520d491b79a2.html":[4,0,0,1,9], -"dir_70c194bd40717a4946dbd8bc35f09b17.html":[4,0,0,1,0], -"dir_747c20e84f9dfe1cc835713177129efc.html":[4,0,0,0,8] +"dir_70c194bd40717a4946dbd8bc35f09b17.html":[4,0,0,1,0] }; diff --git a/navtreeindex5.js b/navtreeindex5.js index d81144bf..7c2e2e69 100644 --- a/navtreeindex5.js +++ b/navtreeindex5.js @@ -1,5 +1,6 @@ var NAVTREEINDEX5 = { +"dir_747c20e84f9dfe1cc835713177129efc.html":[4,0,0,0,8], "dir_79690749eba542503bb1a9a3dbb495e1.html":[4,0,0,1], "dir_7ce43430bd3dd6c604a08a4c1ed5ec76.html":[4,0,0,1,3], "dir_8d5439df06ea2679013aa8390703d116.html":[4,0,0,0,3], @@ -23,8 +24,8 @@ var NAVTREEINDEX5 = "functions_enum.html":[3,3,4], "functions_eval.html":[3,3,5], "functions_f.html":[3,3,0,5], -"functions_func.html":[3,3,1], "functions_func.html":[3,3,1,0], +"functions_func.html":[3,3,1], "functions_func_b.html":[3,3,1,1], "functions_func_c.html":[3,3,1,2], "functions_func_d.html":[3,3,1,3], @@ -194,8 +195,8 @@ var NAVTREEINDEX5 = "group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd":[2,7,1], "group__typedefs.html#gafaf66becf1112a55ba8ad7402b802b77":[2,7,0], "hierarchy.html":[3,2], -"index.html":[0], "index.html":[], +"index.html":[0], "lr1110__transceiver__0303_8h_source.html":[4,0,0,0,2,0,0], "lr1110__transceiver__0304_8h_source.html":[4,0,0,0,2,0,1], "lr1110__transceiver__0305_8h.html":[4,0,0,0,2,0,2], @@ -248,6 +249,5 @@ var NAVTREEINDEX5 = "lr1121__transceiver__0103_8h.html#aa6490d72623bacfc624619b3c378ac5d":[4,0,0,0,2,0,11,0], "lr1121__transceiver__0103_8h.html#abc3d6c6ac5598d4ced54b6429770b305":[4,0,0,0,2,0,11,1], "lr1121__transceiver__0103_8h_source.html":[4,0,0,0,2,0,11], -"modules.html":[2], -"n_r_f24_8h_source.html":[4,0,0,0,3,0] +"modules.html":[2] }; diff --git a/navtreeindex6.js b/navtreeindex6.js index 5e0ed585..b3794ad7 100644 --- a/navtreeindex6.js +++ b/navtreeindex6.js @@ -1,5 +1,6 @@ var NAVTREEINDEX6 = { +"n_r_f24_8h_source.html":[4,0,0,0,3,0], "pages.html":[], "struct_bell_modem__t.html":[3,0,5], "struct_bell_modem__t.html#a27c1a411df3d887ca0ce246c3b5521f7":[3,0,5,3], diff --git a/search/all_10.js b/search/all_10.js index 7f5cc11b..5db191f0 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -1,183 +1,183 @@ var searchData= [ - ['scanchannel_485',['scanChannel',['../class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c',1,'LR11x0::scanChannel()'],['../class_physical_layer.html#af788cf83ceb0222cd0fa4a1323b9041b',1,'PhysicalLayer::scanChannel(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#abd9e39cc745acbf084cfa0d3f4d10718',1,'PhysicalLayer::scanChannel()'],['../class_s_x128x.html#ab55112682432f369fb17f8107ba5158b',1,'SX128x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x128x.html#a2f8427103d6609f3ac44b23fcca4f301',1,'SX128x::scanChannel() override'],['../class_s_x127x.html#a13ae97e18744dc617bc9326cfbaad3a3',1,'SX127x::scanChannel()'],['../class_s_x126x.html#a373012fb3276872238f654b66879a710',1,'SX126x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#acb8611a9c3862dd1bfa73ef47b8f9b20',1,'SX126x::scanChannel() override'],['../class_l_r11x0.html#a5e8f21878bdab1439805aea1e9da168d',1,'LR11x0::scanChannel()']]], - ['scanguard_486',['scanGuard',['../class_lo_ra_w_a_n_node.html#a2176aa3d546e6b00e870a7e1e310c403',1,'LoRaWANNode']]], - ['scanpixellen_487',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], - ['scheduletransmission_488',['scheduleTransmission',['../class_lo_ra_w_a_n_node.html#a16c7ae2edfe324e11498b13aa042665f',1,'LoRaWANNode']]], - ['sendframe_489',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()'],['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()']]], - ['sendheader_490',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], - ['sendline_491',['sendLine',['../class_s_s_t_v_client.html#ab8579712e82e806960ced7bf2750d9c6',1,'SSTVClient']]], - ['sendmaccommandreq_492',['sendMacCommandReq',['../class_lo_ra_w_a_n_node.html#adef05650cf4eb92042ca5e2688c1e164',1,'LoRaWANNode']]], - ['sendmice_493',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]], - ['sendposition_494',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], - ['sendreceive_495',['sendReceive',['../class_lo_ra_w_a_n_node.html#a85cf006ffd97ece3b2d2974b715540cb',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a11c2fbe631063da69355f8d74f4bf3b8',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a7123f9a907df9224b9b01282c12af459',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort=1, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a07ab107de181bde59c2731a5a64a1e2e',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)']]], - ['sendseqnumber_496',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], - ['sendtone_497',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]], - ['seqctrl_498',['seqCtrl',['../struct_l_r11x0_wifi_result_extended__t.html#ad86cb8ec2fca8dc1858a4fe6b0e1e9cf',1,'LR11x0WifiResultExtended_t']]], - ['service_499',['service',['../struct_l_r11x0_wifi_result_extended__t.html#a4ffbb47fb23051dfeb2fe7ae52ae6dea',1,'LR11x0WifiResultExtended_t']]], - ['setaccessaddress_500',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], - ['setaddresswidth_501',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], - ['setadr_502',['setADR',['../class_lo_ra_w_a_n_node.html#ae222275f807f472083ea6100c23c75ff',1,'LoRaWANNode']]], - ['setaeskey_503',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], - ['setafc_504',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], - ['setafcagctrigger_505',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], - ['setafcbandwidth_506',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], - ['setambienttemperature_507',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], - ['setautoack_508',['setAutoAck',['../classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe',1,'nRF24::setAutoAck(bool autoAckOn=true)'],['../classn_r_f24.html#ac1c3419442d93abeede39e7fda4db62e',1,'nRF24::setAutoAck(uint8_t pipeNum, bool autoAckOn)']]], - ['setbandwidth_509',['setBandwidth',['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_l_r11x0.html#a70d9849eb8e5ce2090e4e332252753d7',1,'LR11x0::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()']]], - ['setbitrate_510',['setBitRate',['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()'],['../class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9',1,'LR11x0::setBitRate()'],['../classn_r_f24.html#a760d3f47f58ddacdf41975447484a47c',1,'nRF24::setBitRate()'],['../class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56',1,'RF69::setBitRate()'],['../class_si443x.html#afcba86e79d229b3fd7268dcbd7c47b62',1,'Si443x::setBitRate()'],['../class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f',1,'SX1233::setBitRate()'],['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x128x.html#ad6570f33bae09bc8b7617f9da39033ac',1,'SX128x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()']]], - ['setbitratetolerance_511',['setBitRateTolerance',['../class_c_c1101.html#adc76af01dbc9171b3fdd7570624a4d4f',1,'CC1101']]], - ['setbroadcastaddress_512',['setBroadcastAddress',['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()']]], - ['setbuffernonces_513',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], - ['setbuffersession_514',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], - ['setchannelscanaction_515',['setChannelScanAction',['../class_s_t_m32_w_lx.html#a119ad225f9eba91e7c38f82cf0f1c89d',1,'STM32WLx::setChannelScanAction()'],['../class_s_x126x.html#aed0e7dcd60479c9db3d7a3408e7f396d',1,'SX126x::setChannelScanAction()'],['../class_s_x127x.html#ac23c2b384ae8611d59e10ef6a14fe7e4',1,'SX127x::setChannelScanAction()'],['../class_physical_layer.html#ae11c191a7edf3116bf468b9153237260',1,'PhysicalLayer::setChannelScanAction()']]], - ['setcodingrate_516',['setCodingRate',['../class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541',1,'LR11x0::setCodingRate()'],['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()']]], - ['setcorrection_517',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]], - ['setcrc_518',['setCRC',['../class_l_r11x0.html#a551b82787288b0b14e4d3124e6744dc3',1,'LR11x0::setCRC()'],['../class_s_x126x.html#a95007639c2648a1dbb614493224606f1',1,'SX126x::setCRC()'],['../class_s_x1272.html#abd912314a977f92c464d36d862329ffc',1,'SX1272::setCRC()'],['../class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1',1,'SX1278::setCRC()'],['../class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe',1,'SX128x::setCRC()']]], - ['setcrcfiltering_519',['setCrcFiltering',['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()']]], - ['setcsma_520',['setCSMA',['../class_lo_ra_w_a_n_node.html#a2d9a53560ebfbaf006eefd9761424d80',1,'LoRaWANNode']]], - ['setcurrentlimit_521',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], - ['setdatarate_522',['setDatarate',['../class_lo_ra_w_a_n_node.html#a14e8a8a098df28ff5ee294f235500499',1,'LoRaWANNode']]], - ['setdatarate_523',['setDataRate',['../class_l_l_c_c68.html#ac630770441cadc547892173bde7504f9',1,'LLCC68::setDataRate()'],['../class_l_r11x0.html#a056e65c58ff8fb18bd84917512790ee6',1,'LR11x0::setDataRate()'],['../class_s_x126x.html#af30a581d31feae6f50c0591d1ee113f1',1,'SX126x::setDataRate()'],['../class_s_x1272.html#a5b79b7cd20c4c3cd1f486f777b3457d1',1,'SX1272::setDataRate()'],['../class_s_x1273.html#acaffc772f70e7db371cbe736dc4a19ab',1,'SX1273::setDataRate()'],['../class_s_x1277.html#ac4bfae9258662381e685e46c803c984c',1,'SX1277::setDataRate()'],['../class_s_x1278.html#a286f1ee00e2c7f2ab1bd06b66196c3f9',1,'SX1278::setDataRate()'],['../class_s_x128x.html#adbf5a9ac62460efb1c709e51260dbe3d',1,'SX128x::setDataRate()'],['../class_physical_layer.html#a6ee1fed6bbb8d3571974153ac6f26751',1,'PhysicalLayer::setDataRate()']]], - ['setdatashaping_524',['setDataShaping',['../class_l_r11x0.html#a5a33df702da3f5b010e07d5e6fac7aa6',1,'LR11x0::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_external_radio.html#abe0bfb0f178783eff28bdc867e9324fd',1,'ExternalRadio::setDataShaping()'],['../class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9',1,'PhysicalLayer::setDataShaping()'],['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()']]], - ['setdatashapingook_525',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], - ['setdevicestatus_526',['setDeviceStatus',['../class_lo_ra_w_a_n_node.html#a5449e301634dff1838a1b024b4067034',1,'LoRaWANNode']]], - ['setdio0action_527',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], - ['setdio1action_528',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], - ['setdio2asrfswitch_529',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdiomapping_530',['setDIOMapping',['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a7243b3396edc1e6e67575894a5033afe',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#af7d373bc93e99790912cebe8d5ae6403',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]], - ['setdiopreambledetect_531',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], - ['setdirectaction_532',['setDirectAction',['../class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77',1,'RF69::setDirectAction()'],['../class_si443x.html#a48a59ff1ddc7c8ec820328174955de43',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#ae4b99d1bc67ac2c81eeb11dd6793a8c5',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#a2326cf28c385b8dd709cb62c9f665000',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction()'],['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()']]], - ['setdirectsyncword_533',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], - ['setdutycycle_534',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], - ['setdwelltime_535',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], - ['setencoding_536',['setEncoding',['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()'],['../class_external_radio.html#ae619f011daea49a97098d2897e5a3c2c',1,'ExternalRadio::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_l_r11x0.html#a8ae178a17f6e41b545b79cfffd3e2864',1,'LR11x0::setEncoding()'],['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()']]], - ['setfhsshoppingperiod_537',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], - ['setfifoemptyaction_538',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], - ['setfifofullaction_539',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], - ['setfrequency_540',['setFrequency',['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8',1,'LR1110::setFrequency()'],['../class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb',1,'LR1120::setFrequency()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x128x.html#ab9e16231c2c6bd0e4b4c6c2900b5b332',1,'SX128x::setFrequency()'],['../class_s_x1279.html#ab60691d073ca75ef09dab7a8f28fb7fb',1,'SX1279::setFrequency()'],['../class_s_x1278.html#adb4d95d3b2798cf8ea94890ae71dcc59',1,'SX1278::setFrequency()'],['../class_s_x1277.html#ad68ea24b46d9e7d3f82282cdccd20e00',1,'SX1277::setFrequency()'],['../class_s_x1276.html#a981b59110e514b7dcaec8490e1c4320c',1,'SX1276::setFrequency()'],['../class_s_x1272.html#ac1467a23e1f1bfdbd02f6d30654ed850',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency()'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency(float freq) override'],['../class_si4432.html#aed3561abdb30b4eaad52d984366aadf1',1,'Si4432::setFrequency()'],['../class_si4430.html#a3959e91bcae77b8240e9e447985e05b3',1,'Si4430::setFrequency()'],['../class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532',1,'RF69::setFrequency()'],['../classn_r_f24.html#a18f24764b2ecffc076e72dce0b036116',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency()'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency()'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency()']]], - ['setfrequencydeviation_541',['setFrequencyDeviation',['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()']]], - ['setgain_542',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], - ['setgaincontrol_543',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], - ['setgdo0action_544',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]], - ['setgdo2action_545',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]], - ['sethighsensitivitymode_546',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]], - ['setinversion_547',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]], - ['setirq_548',['setIrq',['../class_physical_layer.html#a8564f9834a0247e93e7620c23559ceb8',1,'PhysicalLayer']]], - ['setirqaction_549',['setIrqAction',['../class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18',1,'LR11x0::setIrqAction()'],['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], - ['setirqflags_550',['setIrqFlags',['../class_s_x126x.html#a50e757c2a63e5c7da5b0d0d6c00f91b5',1,'SX126x::setIrqFlags()'],['../class_physical_layer.html#af88dcb54dc8e9a1edaf9f1c3e5ee2b74',1,'PhysicalLayer::setIrqFlags()'],['../class_s_x128x.html#a6a2ec5d316975f390f20b4e0a2e11e98',1,'SX128x::setIrqFlags()'],['../class_s_x127x.html#aae42b94ab2ecf729f29f101222e97666',1,'SX127x::setIrqFlags()'],['../class_l_r11x0.html#a62c715ab18ea8a2e08a2791d3e764ee9',1,'LR11x0::setIrqFlags()']]], - ['setlnatestboost_551',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], - ['setlowbatterythreshold_552',['setLowBatteryThreshold',['../class_s_x127x.html#a9ca9aa18e13e8390ec437e249e1d2472',1,'SX127x']]], - ['setlrfhssconfig_553',['setLrFhssConfig',['../class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35',1,'LR11x0::setLrFhssConfig()'],['../class_s_x126x.html#aa1e7777fc8237e2c9d933cd4b6304e28',1,'SX126x::setLrFhssConfig()']]], - ['setmodem_554',['setModem',['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient']]], - ['setnodeaddress_555',['setNodeAddress',['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e',1,'LR11x0::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x126x.html#adf54f7b83aa47ad0b803147622b3c580',1,'SX126x::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()']]], - ['setook_556',['setOOK',['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()'],['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()']]], - ['setookfixedorfloorthreshold_557',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], - ['setookfixedthreshold_558',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], - ['setookpeakthresholddecrement_559',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]], - ['setookpeakthresholdstep_560',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], - ['setookthresholdtype_561',['setOokThresholdType',['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()'],['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()']]], - ['setoutputpower_562',['setOutputPower',['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower()'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()'],['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_si4432.html#a5e3017bce6d66d35b867e7878d108c68',1,'Si4432::setOutputPower()'],['../class_si4431.html#ad1538dbe67ed5d3682591d1d780ab0e9',1,'Si4431::setOutputPower()'],['../class_si4430.html#ab1303e014a4b8d2307a2b1deb061fdeb',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../classn_r_f24.html#a4fa66ce5fb6d7b22bbb439c2f9103bf3',1,'nRF24::setOutputPower()'],['../class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7',1,'LR1120::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1120.html#a1b1321eb695e4a6b583074bb92c33193',1,'LR1120::setOutputPower(int8_t power) override'],['../class_l_r1110.html#ae4eaaa6411bb1eeb131613fb3f43e5d1',1,'LR1110::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1110.html#a65c08f0475f888537e55401b75e58b23',1,'LR1110::setOutputPower(int8_t power) override'],['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()'],['../class_s_x128x.html#a1bc3372c47a4e3c81ef15bee448ba6b6',1,'SX128x::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower()']]], - ['setpacketreceivedaction_563',['setPacketReceivedAction',['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#ad98c4526ef971f9aadb30e351a37eaf9',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ae236a467095fb5364d0fc4a98d85f96e',1,'SX127x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_si443x.html#a0e098ea9aa3945f0c38f59efe43b147e',1,'Si443x::setPacketReceivedAction()'],['../class_r_f69.html#a74962c069e08890ac9566d48634c778e',1,'RF69::setPacketReceivedAction()'],['../classn_r_f24.html#a60df9afa489eabe3a3ca193ab7709165',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87',1,'LR11x0::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction(void(*func)(void)) override']]], - ['setpacketsentaction_564',['setPacketSentAction',['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_s_x128x.html#a1e6f938ce715dad9a6609bf56626a50d',1,'SX128x::setPacketSentAction()'],['../class_s_x127x.html#a3530e8e19cfe4d96fe49ca4e6386b099',1,'SX127x::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()'],['../class_si443x.html#af2d36121ca94736ef3ecb4c09aded753',1,'Si443x::setPacketSentAction()'],['../class_r_f69.html#a97603856caada65676ff4b11630c7f72',1,'RF69::setPacketSentAction()'],['../classn_r_f24.html#a26b5f873db167733df143a0608eea3ac',1,'nRF24::setPacketSentAction()'],['../class_l_r11x0.html#a92299e41f839590008b4e344776838a1',1,'LR11x0::setPacketSentAction()']]], - ['setpaconfig_565',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], - ['setparamptime_566',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], - ['setpreamblelength_567',['setPreambleLength',['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength()'],['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()']]], - ['setpromiscuousmode_568',['setPromiscuousMode',['../class_c_c1101.html#ac1155543b27e46fa27aa4c9180da18bb',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()']]], - ['setreceivepipe_569',['setReceivePipe',['../classn_r_f24.html#a31bcc5a8c3747bf08a273dbdadc5481a',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t *addr)'],['../classn_r_f24.html#ab5bc08aef88d8cf41c38369044005da8',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t addrByte)']]], - ['setrecvsequence_570',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], - ['setregulatordcdc_571',['setRegulatorDCDC',['../class_l_r11x0.html#a1ad485f14a333f06b642f2d60aacf76c',1,'LR11x0::setRegulatorDCDC()'],['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x::setRegulatorDCDC()']]], - ['setregulatorldo_572',['setRegulatorLDO',['../class_l_r11x0.html#a92ae10630cc327f441809ac1406737fd',1,'LR11x0::setRegulatorLDO()'],['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x::setRegulatorLDO()']]], - ['setrepeaters_573',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], - ['setrfswitchpins_574',['setRfSwitchPins',['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()']]], - ['setrfswitchstate_575',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]], - ['setrfswitchtable_576',['setRfSwitchTable',['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()'],['../class_l_r11x0.html#a1981f0dfceca2b6175a69530ea13d643',1,'LR11x0::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()'],['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()']]], - ['setrssiconfig_577',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], - ['setrssithreshold_578',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], - ['setrx2dr_579',['setRx2Dr',['../class_lo_ra_w_a_n_node.html#addfd8ac3d0bfe5a273e9ba10e51f8025',1,'LoRaWANNode']]], - ['setrxbandwidth_580',['setRxBandwidth',['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64',1,'LR11x0::setRxBandwidth()'],['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()']]], - ['setrxboostedgainmode_581',['setRxBoostedGainMode',['../class_l_r11x0.html#ab0cf34cc0b67484fbf0f258bff7e9a9a',1,'LR11x0::setRxBoostedGainMode()'],['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x::setRxBoostedGainMode()']]], - ['setsendsequence_582',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], - ['setspreadingfactor_583',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_l_r11x0.html#adf6895cbf7af7e00ea06c5b2b5040cb4',1,'LR11x0::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()']]], - ['setsyncbits_584',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x::setSyncBits()'],['../class_l_r11x0.html#a6501ef362df1a5b71927cfe4e43c202d',1,'LR11x0::setSyncBits()']]], - ['setsyncword_585',['setSyncWord',['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord()'],['../class_physical_layer.html#a6c71cdc1238e1368274670758431a977',1,'PhysicalLayer::setSyncWord()'],['../class_s_x128x.html#ad9584464d2e4cc09686cf4e83e65d3e0',1,'SX128x::setSyncWord()'],['../class_s_x127x.html#aaf400f33e17c1679c0b55cd70bef90b0',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x126x.html#a827a4754ea53388513d263e5d9171395',1,'SX126x::setSyncWord()'],['../class_si443x.html#af257fb09afaa6162e1506cfe87b219b3',1,'Si443x::setSyncWord()'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_l_r11x0.html#ab8c54b1b105605ffe0908c5ff9362932',1,'LR11x0::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_l_r11x0.html#a7ffa48f1b6aaaa3f48e4b51f8ada59d8',1,'LR11x0::setSyncWord(uint32_t syncWord)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord()']]], - ['settcxo_586',['setTCXO',['../class_l_r11x0.html#a971b4ccd1d5479e9d72aa9649e8fef55',1,'LR11x0::setTCXO()'],['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x::setTCXO()']]], - ['settransmitpipe_587',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], - ['settxpower_588',['setTxPower',['../class_lo_ra_w_a_n_node.html#a9af613f7d923e7bdcfdbd020132c6d4b',1,'LoRaWANNode']]], - ['setwhitening_589',['setWhitening',['../class_l_r11x0.html#adcde55b8660c24cf5783942a4132786d',1,'LR11x0::setWhitening()'],['../class_s_x126x.html#ae500bad45638a47264b7e5955a93107d',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], - ['setwifiscanaction_590',['setWiFiScanAction',['../class_l_r11x0.html#aff6060e116701c60e078d3d930723b4b',1,'LR11x0']]], - ['si4430_591',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()'],['../class_si4430.html',1,'Si4430']]], - ['si4431_592',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()'],['../class_si4431.html',1,'Si4431']]], - ['si4432_593',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()'],['../class_si4432.html',1,'Si4432']]], - ['si443x_594',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()'],['../class_si443x.html',1,'Si443x']]], - ['size_595',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]], - ['sleep_596',['sleep',['../class_s_x128x.html#ab0c26aebd432d36974b3066055df6b01',1,'SX128x::sleep()'],['../class_l_r11x0.html#ad2786a2f17af5769c772ebc73df88e1f',1,'LR11x0::sleep(bool retainConfig, uint32_t sleepTime)'],['../class_l_r11x0.html#ad5dde79f751bbd7ea277872e237f2a69',1,'LR11x0::sleep() override'],['../classn_r_f24.html#a69b75e0889c609099487a43c8c3b6721',1,'nRF24::sleep()'],['../class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c',1,'RF69::sleep()'],['../class_si443x.html#ab0cc51d6b4264acf8e3e49a3a490dee9',1,'Si443x::sleep()'],['../class_s_x126x.html#a882cec40d9aa98a0d536e6afb65b1719',1,'SX126x::sleep() override'],['../class_s_x126x.html#aad7e4df3e1ca20d524e1d776047e1013',1,'SX126x::sleep(bool retainConfig)'],['../class_s_x127x.html#a1ff85ee7979da08b4e66316f1ba2c6a9',1,'SX127x::sleep()'],['../class_s_x128x.html#a98ef7dc21647642b40baf8c0194788c4',1,'SX128x::sleep()'],['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()']]], - ['spectralscanabort_597',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]], - ['spectralscangetresult_598',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]], - ['spectralscangetstatus_599',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]], - ['spectralscanstart_600',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]], - ['spibegin_601',['spiBegin',['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal']]], - ['spibegintransaction_602',['spiBeginTransaction',['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal']]], - ['spicheckstatuscb_5ft_603',['SPIcheckStatusCb_t',['../class_module.html#a1ad7bef7d380d3b6b88dca99bd35d640',1,'Module']]], - ['spicheckstream_604',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]], - ['spiconfig_605',['spiConfig',['../class_module.html#a3a4fc4101fb3f134152b458c447b8ecb',1,'Module']]], - ['spiconfig_5ft_606',['SPIConfig_t',['../struct_module_1_1_s_p_i_config__t.html',1,'Module']]], - ['spiend_607',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal']]], - ['spiendtransaction_608',['spiEndTransaction',['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal']]], - ['spigetregvalue_609',['SPIgetRegValue',['../class_module.html#a369e916626c821ecec85f25d5b46d752',1,'Module']]], - ['spiparsestatuscb_5ft_610',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]], - ['spireadregister_611',['SPIreadRegister',['../class_module.html#ab250eb929068e0c890e16e8e6d7cd7e6',1,'Module']]], - ['spireadregisterburst_612',['SPIreadRegisterBurst',['../class_module.html#ac993ab8e2ea0f5aa93339d1f6ffb54ee',1,'Module']]], - ['spireadstream_613',['SPIreadStream',['../class_module.html#adacceb57ecfecb09150c135b2b44436f',1,'Module::SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], - ['spisetregvalue_614',['SPIsetRegValue',['../class_module.html#ade75c5403a05156b43cc7562563ae2d7',1,'Module']]], - ['spitransfer_615',['spiTransfer',['../class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a',1,'RadioLibHal']]], - ['spitransfer_616',['SPItransfer',['../class_module.html#aa6df70520aa015dd3a1bccdceae67232',1,'Module']]], - ['spitransferstream_617',['SPItransferStream',['../class_module.html#a4174159e476de5cef6ea3f89c883cb5e',1,'Module']]], - ['spiwriteregister_618',['SPIwriteRegister',['../class_module.html#a60ca6b4cae98f7d935191a569d519913',1,'Module']]], - ['spiwriteregisterburst_619',['SPIwriteRegisterBurst',['../class_module.html#a2826f0fa116eb0a4dd18ddb9b21e4caf',1,'Module']]], - ['spiwritestream_620',['SPIwriteStream',['../class_module.html#af99b0e74e67417a88f500ab7261ddd20',1,'Module::SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], - ['spreadingfactor_621',['spreadingFactor',['../struct_lo_ra_rate__t.html#a24fcb6220c0577f985478dc109750076',1,'LoRaRate_t']]], - ['srccallsign_622',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], - ['srcssid_623',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], - ['ssid_624',['ssid',['../struct_l_r11x0_wifi_result_extended__t.html#a640fdd5b33e6ab2f6867cd63da567147',1,'LR11x0WifiResultExtended_t']]], - ['sstvclient_625',['SSTVClient',['../class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a',1,'SSTVClient::SSTVClient(PhysicalLayer *phy)'],['../class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1',1,'SSTVClient::SSTVClient(AFSKClient *audio)'],['../class_s_s_t_v_client.html',1,'SSTVClient']]], - ['sstvmode_5ft_626',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], - ['standby_627',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby() override'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby(uint8_t mode) override'],['../class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665',1,'LR11x0::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby(uint8_t mode)'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby(uint8_t mode) override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby() override'],['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby(uint8_t mode, bool wakeup=true)'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby(uint8_t mode) override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby() override'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby(uint8_t mode) override'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby() override'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby(uint8_t mode) override'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby() override'],['../class_l_r11x0.html#a74c3f3f8409f1fd0f41347b7d3c7dc24',1,'LR11x0::standby()']]], - ['standby_20mode_20type_20aliases_2e_628',['Standby mode type aliases.',['../group__config__standby.html',1,'']]], - ['standbyxosc_629',['standbyXOSC',['../class_s_x126x.html#ae731568798d03d9722a440fd6a23faf2',1,'SX126x']]], - ['start_630',['start',['../struct_l_r11x0_gnss_almanac_status__t.html#a2228a69fda1002c027b7b487aa579afb',1,'LR11x0GnssAlmanacStatus_t']]], - ['startchannelscan_631',['startChannelScan',['../class_s_x128x.html#a948156af6e886bc46a6c6c5fb10a087a',1,'SX128x::startChannelScan()'],['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()'],['../class_s_x126x.html#a09a8fe05c23c652c7ace2e2f1bf51d93',1,'SX126x::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan() override'],['../class_l_r11x0.html#ab073ade3f6b9bbb383e388904812f575',1,'LR11x0::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override'],['../class_s_x128x.html#acdee68d9be73509f464226722551c4d9',1,'SX128x::startChannelScan()'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()'],['../class_physical_layer.html#a82a52062d9259c2c546d7bf8072b7a72',1,'PhysicalLayer::startChannelScan(const ChannelScanConfig_t &config)']]], - ['startdirect_632',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], - ['startranging_633',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], - ['startreceive_634',['startReceive',['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive()'],['../class_s_x127x.html#acaab95d4bf57bf33f6269d2f099e48e0',1,'SX127x::startReceive()'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive()'],['../class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d',1,'LR11x0::startReceive() override'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)'],['../classn_r_f24.html#a3c6aa3622c887118fb8d8cb2689fdff2',1,'nRF24::startReceive() override'],['../classn_r_f24.html#a38b0084ad11090f918f4f370b9df7514',1,'nRF24::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8',1,'RF69::startReceive() override'],['../class_r_f69.html#a21ae7524fe573f1a7e74dee342418222',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_si443x.html#ae188dec3175a3aec96844a613e911500',1,'Si443x::startReceive() override'],['../class_si443x.html#ad5adec16d570b0d1b09420919dbe77e4',1,'Si443x::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive() override'],['../class_s_x126x.html#a44856b641060cff8e9e2019901cd4751',1,'SX126x::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)'],['../class_s_x127x.html#abbe1076252a366c3c4aa323fdff7d40c',1,'SX127x::startReceive()'],['../class_s_x128x.html#a299dd5c01a6f7d2f8a96becd4fff1f09',1,'SX128x::startReceive()'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#ac88f9185b5e9fdc1d89df9797dcdd9b7',1,'PhysicalLayer::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags, RadioLibIrqFlags_t irqMask, size_t len)'],['../class_s_x128x.html#a803eaca8bb7fdfa3570cf4aa95f8e729',1,'SX128x::startReceive()']]], - ['startreceivedutycycle_635',['startReceiveDutyCycle',['../class_s_x126x.html#af9352e49d893151d68a314109140fe29',1,'SX126x']]], - ['startreceivedutycycleauto_636',['startReceiveDutyCycleAuto',['../class_s_x126x.html#ad0f95b62ee987010b00f4be75bf9ab4e',1,'SX126x']]], - ['startsignal_637',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], - ['starttransmit_638',['startTransmit',['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af79757dbbd62e080c1bad2e608ab940c',1,'PhysicalLayer::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a46fff7c4b2bb0eed3fd313d6413dc4e9',1,'SX128x::startTransmit()'],['../class_s_x127x.html#ae0902a990203ec67c628e5d006cbaa96',1,'SX127x::startTransmit()'],['../class_s_x126x.html#adf06ca0d64a61ce16a0a2f4f9a7d6a86',1,'SX126x::startTransmit()'],['../class_si443x.html#a187ea9ee96a67cd48e5b28be5b237c95',1,'Si443x::startTransmit()'],['../class_r_f69.html#af645f6b5d37812f6bb9ec11788e12066',1,'RF69::startTransmit()'],['../classn_r_f24.html#a8b2365ad11840d1d05b0e17b37ddacd2',1,'nRF24::startTransmit()'],['../class_l_r11x0.html#a459825c5b46a2ca515e62042d605aa67',1,'LR11x0::startTransmit()'],['../class_c_c1101.html#a6ff7e4066d189482c142e05384a38df0',1,'CC1101::startTransmit()'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit()'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#af79757dbbd62e080c1bad2e608ab940c',1,'CC1101::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_l_r11x0.html#a923654706eff5118ef6e84214e837f27',1,'LR11x0::startTransmit(const char *str, uint8_t addr=0)'],['../class_l_r11x0.html#af79757dbbd62e080c1bad2e608ab940c',1,'LR11x0::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#af79757dbbd62e080c1bad2e608ab940c',1,'nRF24::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#af79757dbbd62e080c1bad2e608ab940c',1,'RF69::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#af79757dbbd62e080c1bad2e608ab940c',1,'Si443x::startTransmit()'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX126x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX127x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX128x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)']]], - ['startwifiscan_639',['startWifiScan',['../class_l_r11x0.html#a3498e0e621f341e415145879989e0948',1,'LR11x0']]], - ['status_20codes_640',['Status Codes',['../group__status__codes.html',1,'']]], - ['statuspos_641',['statusPos',['../struct_module_1_1_s_p_i_config__t.html#a5b689d2722b8980a211a562ed394d23e',1,'Module::SPIConfig_t']]], - ['stm32wlx_642',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'STM32WLx'],['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx::STM32WLx()']]], - ['stm32wlx_5fmodule_643',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]], - ['stm32wlxhal_644',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]], - ['stream_645',['stream',['../struct_module_1_1_s_p_i_config__t.html#a1a088c02ed02361746621ffbc2526681',1,'Module::SPIConfig_t']]], - ['svid_646',['svId',['../struct_l_r11x0_gnss_satellite__t.html#a0513395fd04c052b862c443dfbe75e84',1,'LR11x0GnssSatellite_t']]], - ['sx1231_647',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()'],['../class_s_x1231.html',1,'SX1231']]], - ['sx1233_648',['SX1233',['../class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f',1,'SX1233::SX1233()'],['../class_s_x1233.html',1,'SX1233']]], - ['sx1261_649',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()'],['../class_s_x1261.html',1,'SX1261']]], - ['sx1262_650',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()'],['../class_s_x1262.html',1,'SX1262']]], - ['sx1268_651',['SX1268',['../class_s_x1268.html',1,'SX1268'],['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()']]], - ['sx126x_652',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]], - ['sx1272_653',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]], - ['sx1273_654',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]], - ['sx1276_655',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]], - ['sx1277_656',['SX1277',['../class_s_x1277.html',1,'SX1277'],['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()']]], - ['sx1278_657',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]], - ['sx1279_658',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]], - ['sx127x_659',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]], - ['sx1280_660',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]], - ['sx1281_661',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]], - ['sx1282_662',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()'],['../class_s_x1282.html',1,'SX1282']]], - ['sx128x_663',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x::SX128x()'],['../class_s_x128x.html',1,'SX128x']]], - ['symnum_664',['symNum',['../struct_c_a_d_scan_config__t.html#a5cb000f071f740c8cc81ea2f04dd9b60',1,'CADScanConfig_t']]] + ['scanchannel_484',['scanChannel',['../class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c',1,'LR11x0::scanChannel()'],['../class_physical_layer.html#af788cf83ceb0222cd0fa4a1323b9041b',1,'PhysicalLayer::scanChannel(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#abd9e39cc745acbf084cfa0d3f4d10718',1,'PhysicalLayer::scanChannel()'],['../class_s_x128x.html#ab55112682432f369fb17f8107ba5158b',1,'SX128x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x128x.html#a2f8427103d6609f3ac44b23fcca4f301',1,'SX128x::scanChannel() override'],['../class_s_x127x.html#a13ae97e18744dc617bc9326cfbaad3a3',1,'SX127x::scanChannel()'],['../class_s_x126x.html#a373012fb3276872238f654b66879a710',1,'SX126x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#acb8611a9c3862dd1bfa73ef47b8f9b20',1,'SX126x::scanChannel() override'],['../class_l_r11x0.html#a5e8f21878bdab1439805aea1e9da168d',1,'LR11x0::scanChannel()']]], + ['scanguard_485',['scanGuard',['../class_lo_ra_w_a_n_node.html#a2176aa3d546e6b00e870a7e1e310c403',1,'LoRaWANNode']]], + ['scanpixellen_486',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], + ['scheduletransmission_487',['scheduleTransmission',['../class_lo_ra_w_a_n_node.html#a16c7ae2edfe324e11498b13aa042665f',1,'LoRaWANNode']]], + ['sendframe_488',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()'],['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()']]], + ['sendheader_489',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], + ['sendline_490',['sendLine',['../class_s_s_t_v_client.html#ab8579712e82e806960ced7bf2750d9c6',1,'SSTVClient']]], + ['sendmaccommandreq_491',['sendMacCommandReq',['../class_lo_ra_w_a_n_node.html#adef05650cf4eb92042ca5e2688c1e164',1,'LoRaWANNode']]], + ['sendmice_492',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]], + ['sendposition_493',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], + ['sendreceive_494',['sendReceive',['../class_lo_ra_w_a_n_node.html#a85cf006ffd97ece3b2d2974b715540cb',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a11c2fbe631063da69355f8d74f4bf3b8',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a7123f9a907df9224b9b01282c12af459',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort=1, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a07ab107de181bde59c2731a5a64a1e2e',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)']]], + ['sendseqnumber_495',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], + ['sendtone_496',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]], + ['seqctrl_497',['seqCtrl',['../struct_l_r11x0_wifi_result_extended__t.html#ad86cb8ec2fca8dc1858a4fe6b0e1e9cf',1,'LR11x0WifiResultExtended_t']]], + ['service_498',['service',['../struct_l_r11x0_wifi_result_extended__t.html#a4ffbb47fb23051dfeb2fe7ae52ae6dea',1,'LR11x0WifiResultExtended_t']]], + ['setaccessaddress_499',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], + ['setaddresswidth_500',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], + ['setadr_501',['setADR',['../class_lo_ra_w_a_n_node.html#ae222275f807f472083ea6100c23c75ff',1,'LoRaWANNode']]], + ['setaeskey_502',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], + ['setafc_503',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], + ['setafcagctrigger_504',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], + ['setafcbandwidth_505',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], + ['setambienttemperature_506',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], + ['setautoack_507',['setAutoAck',['../classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe',1,'nRF24::setAutoAck(bool autoAckOn=true)'],['../classn_r_f24.html#ac1c3419442d93abeede39e7fda4db62e',1,'nRF24::setAutoAck(uint8_t pipeNum, bool autoAckOn)']]], + ['setbandwidth_508',['setBandwidth',['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_l_r11x0.html#a70d9849eb8e5ce2090e4e332252753d7',1,'LR11x0::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()']]], + ['setbitrate_509',['setBitRate',['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()'],['../class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9',1,'LR11x0::setBitRate()'],['../classn_r_f24.html#a760d3f47f58ddacdf41975447484a47c',1,'nRF24::setBitRate()'],['../class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56',1,'RF69::setBitRate()'],['../class_si443x.html#afcba86e79d229b3fd7268dcbd7c47b62',1,'Si443x::setBitRate()'],['../class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f',1,'SX1233::setBitRate()'],['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x128x.html#ad6570f33bae09bc8b7617f9da39033ac',1,'SX128x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()']]], + ['setbitratetolerance_510',['setBitRateTolerance',['../class_c_c1101.html#adc76af01dbc9171b3fdd7570624a4d4f',1,'CC1101']]], + ['setbroadcastaddress_511',['setBroadcastAddress',['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()']]], + ['setbuffernonces_512',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], + ['setbuffersession_513',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], + ['setchannelscanaction_514',['setChannelScanAction',['../class_s_t_m32_w_lx.html#a119ad225f9eba91e7c38f82cf0f1c89d',1,'STM32WLx::setChannelScanAction()'],['../class_s_x126x.html#aed0e7dcd60479c9db3d7a3408e7f396d',1,'SX126x::setChannelScanAction()'],['../class_s_x127x.html#ac23c2b384ae8611d59e10ef6a14fe7e4',1,'SX127x::setChannelScanAction()'],['../class_physical_layer.html#ae11c191a7edf3116bf468b9153237260',1,'PhysicalLayer::setChannelScanAction()']]], + ['setcodingrate_515',['setCodingRate',['../class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541',1,'LR11x0::setCodingRate()'],['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()']]], + ['setcorrection_516',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]], + ['setcrc_517',['setCRC',['../class_l_r11x0.html#a551b82787288b0b14e4d3124e6744dc3',1,'LR11x0::setCRC()'],['../class_s_x126x.html#a95007639c2648a1dbb614493224606f1',1,'SX126x::setCRC()'],['../class_s_x1272.html#abd912314a977f92c464d36d862329ffc',1,'SX1272::setCRC()'],['../class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1',1,'SX1278::setCRC()'],['../class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe',1,'SX128x::setCRC()']]], + ['setcrcfiltering_518',['setCrcFiltering',['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()']]], + ['setcsma_519',['setCSMA',['../class_lo_ra_w_a_n_node.html#a2d9a53560ebfbaf006eefd9761424d80',1,'LoRaWANNode']]], + ['setcurrentlimit_520',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], + ['setdatarate_521',['setDatarate',['../class_lo_ra_w_a_n_node.html#a14e8a8a098df28ff5ee294f235500499',1,'LoRaWANNode']]], + ['setdatarate_522',['setDataRate',['../class_l_l_c_c68.html#ac630770441cadc547892173bde7504f9',1,'LLCC68::setDataRate()'],['../class_l_r11x0.html#a056e65c58ff8fb18bd84917512790ee6',1,'LR11x0::setDataRate()'],['../class_s_x126x.html#af30a581d31feae6f50c0591d1ee113f1',1,'SX126x::setDataRate()'],['../class_s_x1272.html#a5b79b7cd20c4c3cd1f486f777b3457d1',1,'SX1272::setDataRate()'],['../class_s_x1273.html#acaffc772f70e7db371cbe736dc4a19ab',1,'SX1273::setDataRate()'],['../class_s_x1277.html#ac4bfae9258662381e685e46c803c984c',1,'SX1277::setDataRate()'],['../class_s_x1278.html#a286f1ee00e2c7f2ab1bd06b66196c3f9',1,'SX1278::setDataRate()'],['../class_s_x128x.html#adbf5a9ac62460efb1c709e51260dbe3d',1,'SX128x::setDataRate()'],['../class_physical_layer.html#a6ee1fed6bbb8d3571974153ac6f26751',1,'PhysicalLayer::setDataRate()']]], + ['setdatashaping_523',['setDataShaping',['../class_l_r11x0.html#a5a33df702da3f5b010e07d5e6fac7aa6',1,'LR11x0::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_external_radio.html#abe0bfb0f178783eff28bdc867e9324fd',1,'ExternalRadio::setDataShaping()'],['../class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9',1,'PhysicalLayer::setDataShaping()'],['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()']]], + ['setdatashapingook_524',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], + ['setdevicestatus_525',['setDeviceStatus',['../class_lo_ra_w_a_n_node.html#a5449e301634dff1838a1b024b4067034',1,'LoRaWANNode']]], + ['setdio0action_526',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], + ['setdio1action_527',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], + ['setdio2asrfswitch_528',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], + ['setdiomapping_529',['setDIOMapping',['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a7243b3396edc1e6e67575894a5033afe',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#af7d373bc93e99790912cebe8d5ae6403',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]], + ['setdiopreambledetect_530',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], + ['setdirectaction_531',['setDirectAction',['../class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77',1,'RF69::setDirectAction()'],['../class_si443x.html#a48a59ff1ddc7c8ec820328174955de43',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#ae4b99d1bc67ac2c81eeb11dd6793a8c5',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#a2326cf28c385b8dd709cb62c9f665000',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction()'],['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()']]], + ['setdirectsyncword_532',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], + ['setdutycycle_533',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], + ['setdwelltime_534',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], + ['setencoding_535',['setEncoding',['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()'],['../class_external_radio.html#ae619f011daea49a97098d2897e5a3c2c',1,'ExternalRadio::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_l_r11x0.html#a8ae178a17f6e41b545b79cfffd3e2864',1,'LR11x0::setEncoding()'],['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()']]], + ['setfhsshoppingperiod_536',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], + ['setfifoemptyaction_537',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], + ['setfifofullaction_538',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], + ['setfrequency_539',['setFrequency',['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8',1,'LR1110::setFrequency()'],['../class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb',1,'LR1120::setFrequency()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x128x.html#ab9e16231c2c6bd0e4b4c6c2900b5b332',1,'SX128x::setFrequency()'],['../class_s_x1279.html#ab60691d073ca75ef09dab7a8f28fb7fb',1,'SX1279::setFrequency()'],['../class_s_x1278.html#adb4d95d3b2798cf8ea94890ae71dcc59',1,'SX1278::setFrequency()'],['../class_s_x1277.html#ad68ea24b46d9e7d3f82282cdccd20e00',1,'SX1277::setFrequency()'],['../class_s_x1276.html#a981b59110e514b7dcaec8490e1c4320c',1,'SX1276::setFrequency()'],['../class_s_x1272.html#ac1467a23e1f1bfdbd02f6d30654ed850',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency()'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency(float freq) override'],['../class_si4432.html#aed3561abdb30b4eaad52d984366aadf1',1,'Si4432::setFrequency()'],['../class_si4430.html#a3959e91bcae77b8240e9e447985e05b3',1,'Si4430::setFrequency()'],['../class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532',1,'RF69::setFrequency()'],['../classn_r_f24.html#a18f24764b2ecffc076e72dce0b036116',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency()'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency()'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency()']]], + ['setfrequencydeviation_540',['setFrequencyDeviation',['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()']]], + ['setgain_541',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], + ['setgaincontrol_542',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], + ['setgdo0action_543',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]], + ['setgdo2action_544',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]], + ['sethighsensitivitymode_545',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]], + ['setinversion_546',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]], + ['setirq_547',['setIrq',['../class_physical_layer.html#a8564f9834a0247e93e7620c23559ceb8',1,'PhysicalLayer']]], + ['setirqaction_548',['setIrqAction',['../class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18',1,'LR11x0::setIrqAction()'],['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], + ['setirqflags_549',['setIrqFlags',['../class_s_x126x.html#a50e757c2a63e5c7da5b0d0d6c00f91b5',1,'SX126x::setIrqFlags()'],['../class_physical_layer.html#af88dcb54dc8e9a1edaf9f1c3e5ee2b74',1,'PhysicalLayer::setIrqFlags()'],['../class_s_x128x.html#a6a2ec5d316975f390f20b4e0a2e11e98',1,'SX128x::setIrqFlags()'],['../class_s_x127x.html#aae42b94ab2ecf729f29f101222e97666',1,'SX127x::setIrqFlags()'],['../class_l_r11x0.html#a62c715ab18ea8a2e08a2791d3e764ee9',1,'LR11x0::setIrqFlags()']]], + ['setlnatestboost_550',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], + ['setlowbatterythreshold_551',['setLowBatteryThreshold',['../class_s_x127x.html#a9ca9aa18e13e8390ec437e249e1d2472',1,'SX127x']]], + ['setlrfhssconfig_552',['setLrFhssConfig',['../class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35',1,'LR11x0::setLrFhssConfig()'],['../class_s_x126x.html#aa1e7777fc8237e2c9d933cd4b6304e28',1,'SX126x::setLrFhssConfig()']]], + ['setmodem_553',['setModem',['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient']]], + ['setnodeaddress_554',['setNodeAddress',['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e',1,'LR11x0::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x126x.html#adf54f7b83aa47ad0b803147622b3c580',1,'SX126x::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()']]], + ['setook_555',['setOOK',['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()'],['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()']]], + ['setookfixedorfloorthreshold_556',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], + ['setookfixedthreshold_557',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], + ['setookpeakthresholddecrement_558',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]], + ['setookpeakthresholdstep_559',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], + ['setookthresholdtype_560',['setOokThresholdType',['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()'],['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()']]], + ['setoutputpower_561',['setOutputPower',['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower()'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()'],['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_si4432.html#a5e3017bce6d66d35b867e7878d108c68',1,'Si4432::setOutputPower()'],['../class_si4431.html#ad1538dbe67ed5d3682591d1d780ab0e9',1,'Si4431::setOutputPower()'],['../class_si4430.html#ab1303e014a4b8d2307a2b1deb061fdeb',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../classn_r_f24.html#a4fa66ce5fb6d7b22bbb439c2f9103bf3',1,'nRF24::setOutputPower()'],['../class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7',1,'LR1120::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1120.html#a1b1321eb695e4a6b583074bb92c33193',1,'LR1120::setOutputPower(int8_t power) override'],['../class_l_r1110.html#ae4eaaa6411bb1eeb131613fb3f43e5d1',1,'LR1110::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1110.html#a65c08f0475f888537e55401b75e58b23',1,'LR1110::setOutputPower(int8_t power) override'],['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()'],['../class_s_x128x.html#a1bc3372c47a4e3c81ef15bee448ba6b6',1,'SX128x::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower()']]], + ['setpacketreceivedaction_562',['setPacketReceivedAction',['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#ad98c4526ef971f9aadb30e351a37eaf9',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ae236a467095fb5364d0fc4a98d85f96e',1,'SX127x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_si443x.html#a0e098ea9aa3945f0c38f59efe43b147e',1,'Si443x::setPacketReceivedAction()'],['../class_r_f69.html#a74962c069e08890ac9566d48634c778e',1,'RF69::setPacketReceivedAction()'],['../classn_r_f24.html#a60df9afa489eabe3a3ca193ab7709165',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87',1,'LR11x0::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction(void(*func)(void)) override']]], + ['setpacketsentaction_563',['setPacketSentAction',['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_s_x128x.html#a1e6f938ce715dad9a6609bf56626a50d',1,'SX128x::setPacketSentAction()'],['../class_s_x127x.html#a3530e8e19cfe4d96fe49ca4e6386b099',1,'SX127x::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()'],['../class_si443x.html#af2d36121ca94736ef3ecb4c09aded753',1,'Si443x::setPacketSentAction()'],['../class_r_f69.html#a97603856caada65676ff4b11630c7f72',1,'RF69::setPacketSentAction()'],['../classn_r_f24.html#a26b5f873db167733df143a0608eea3ac',1,'nRF24::setPacketSentAction()'],['../class_l_r11x0.html#a92299e41f839590008b4e344776838a1',1,'LR11x0::setPacketSentAction()']]], + ['setpaconfig_564',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], + ['setparamptime_565',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], + ['setpreamblelength_566',['setPreambleLength',['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength()'],['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()']]], + ['setpromiscuousmode_567',['setPromiscuousMode',['../class_c_c1101.html#ac1155543b27e46fa27aa4c9180da18bb',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()']]], + ['setreceivepipe_568',['setReceivePipe',['../classn_r_f24.html#a31bcc5a8c3747bf08a273dbdadc5481a',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t *addr)'],['../classn_r_f24.html#ab5bc08aef88d8cf41c38369044005da8',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t addrByte)']]], + ['setrecvsequence_569',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], + ['setregulatordcdc_570',['setRegulatorDCDC',['../class_l_r11x0.html#a1ad485f14a333f06b642f2d60aacf76c',1,'LR11x0::setRegulatorDCDC()'],['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x::setRegulatorDCDC()']]], + ['setregulatorldo_571',['setRegulatorLDO',['../class_l_r11x0.html#a92ae10630cc327f441809ac1406737fd',1,'LR11x0::setRegulatorLDO()'],['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x::setRegulatorLDO()']]], + ['setrepeaters_572',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], + ['setrfswitchpins_573',['setRfSwitchPins',['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()']]], + ['setrfswitchstate_574',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]], + ['setrfswitchtable_575',['setRfSwitchTable',['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()'],['../class_l_r11x0.html#a1981f0dfceca2b6175a69530ea13d643',1,'LR11x0::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()'],['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()']]], + ['setrssiconfig_576',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], + ['setrssithreshold_577',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], + ['setrx2dr_578',['setRx2Dr',['../class_lo_ra_w_a_n_node.html#addfd8ac3d0bfe5a273e9ba10e51f8025',1,'LoRaWANNode']]], + ['setrxbandwidth_579',['setRxBandwidth',['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64',1,'LR11x0::setRxBandwidth()'],['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()']]], + ['setrxboostedgainmode_580',['setRxBoostedGainMode',['../class_l_r11x0.html#ab0cf34cc0b67484fbf0f258bff7e9a9a',1,'LR11x0::setRxBoostedGainMode()'],['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x::setRxBoostedGainMode()']]], + ['setsendsequence_581',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], + ['setspreadingfactor_582',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_l_r11x0.html#adf6895cbf7af7e00ea06c5b2b5040cb4',1,'LR11x0::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()']]], + ['setsyncbits_583',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x::setSyncBits()'],['../class_l_r11x0.html#a6501ef362df1a5b71927cfe4e43c202d',1,'LR11x0::setSyncBits()']]], + ['setsyncword_584',['setSyncWord',['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord()'],['../class_physical_layer.html#a6c71cdc1238e1368274670758431a977',1,'PhysicalLayer::setSyncWord()'],['../class_s_x128x.html#ad9584464d2e4cc09686cf4e83e65d3e0',1,'SX128x::setSyncWord()'],['../class_s_x127x.html#aaf400f33e17c1679c0b55cd70bef90b0',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x126x.html#a827a4754ea53388513d263e5d9171395',1,'SX126x::setSyncWord()'],['../class_si443x.html#af257fb09afaa6162e1506cfe87b219b3',1,'Si443x::setSyncWord()'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_l_r11x0.html#ab8c54b1b105605ffe0908c5ff9362932',1,'LR11x0::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_l_r11x0.html#a7ffa48f1b6aaaa3f48e4b51f8ada59d8',1,'LR11x0::setSyncWord(uint32_t syncWord)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord()']]], + ['settcxo_585',['setTCXO',['../class_l_r11x0.html#a971b4ccd1d5479e9d72aa9649e8fef55',1,'LR11x0::setTCXO()'],['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x::setTCXO()']]], + ['settransmitpipe_586',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], + ['settxpower_587',['setTxPower',['../class_lo_ra_w_a_n_node.html#a9af613f7d923e7bdcfdbd020132c6d4b',1,'LoRaWANNode']]], + ['setwhitening_588',['setWhitening',['../class_l_r11x0.html#adcde55b8660c24cf5783942a4132786d',1,'LR11x0::setWhitening()'],['../class_s_x126x.html#ae500bad45638a47264b7e5955a93107d',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], + ['setwifiscanaction_589',['setWiFiScanAction',['../class_l_r11x0.html#aff6060e116701c60e078d3d930723b4b',1,'LR11x0']]], + ['si4430_590',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()'],['../class_si4430.html',1,'Si4430']]], + ['si4431_591',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()'],['../class_si4431.html',1,'Si4431']]], + ['si4432_592',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()'],['../class_si4432.html',1,'Si4432']]], + ['si443x_593',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()'],['../class_si443x.html',1,'Si443x']]], + ['size_594',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]], + ['sleep_595',['sleep',['../class_s_x128x.html#ab0c26aebd432d36974b3066055df6b01',1,'SX128x::sleep()'],['../class_l_r11x0.html#ad2786a2f17af5769c772ebc73df88e1f',1,'LR11x0::sleep(bool retainConfig, uint32_t sleepTime)'],['../class_l_r11x0.html#ad5dde79f751bbd7ea277872e237f2a69',1,'LR11x0::sleep() override'],['../classn_r_f24.html#a69b75e0889c609099487a43c8c3b6721',1,'nRF24::sleep()'],['../class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c',1,'RF69::sleep()'],['../class_si443x.html#ab0cc51d6b4264acf8e3e49a3a490dee9',1,'Si443x::sleep()'],['../class_s_x126x.html#a882cec40d9aa98a0d536e6afb65b1719',1,'SX126x::sleep() override'],['../class_s_x126x.html#aad7e4df3e1ca20d524e1d776047e1013',1,'SX126x::sleep(bool retainConfig)'],['../class_s_x127x.html#a1ff85ee7979da08b4e66316f1ba2c6a9',1,'SX127x::sleep()'],['../class_s_x128x.html#a98ef7dc21647642b40baf8c0194788c4',1,'SX128x::sleep()'],['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()']]], + ['spectralscanabort_596',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]], + ['spectralscangetresult_597',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]], + ['spectralscangetstatus_598',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]], + ['spectralscanstart_599',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]], + ['spibegin_600',['spiBegin',['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal']]], + ['spibegintransaction_601',['spiBeginTransaction',['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal']]], + ['spicheckstatuscb_5ft_602',['SPIcheckStatusCb_t',['../class_module.html#a1ad7bef7d380d3b6b88dca99bd35d640',1,'Module']]], + ['spicheckstream_603',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]], + ['spiconfig_604',['spiConfig',['../class_module.html#a3a4fc4101fb3f134152b458c447b8ecb',1,'Module']]], + ['spiconfig_5ft_605',['SPIConfig_t',['../struct_module_1_1_s_p_i_config__t.html',1,'Module']]], + ['spiend_606',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal']]], + ['spiendtransaction_607',['spiEndTransaction',['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal']]], + ['spigetregvalue_608',['SPIgetRegValue',['../class_module.html#a369e916626c821ecec85f25d5b46d752',1,'Module']]], + ['spiparsestatuscb_5ft_609',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]], + ['spireadregister_610',['SPIreadRegister',['../class_module.html#ab250eb929068e0c890e16e8e6d7cd7e6',1,'Module']]], + ['spireadregisterburst_611',['SPIreadRegisterBurst',['../class_module.html#ac993ab8e2ea0f5aa93339d1f6ffb54ee',1,'Module']]], + ['spireadstream_612',['SPIreadStream',['../class_module.html#adacceb57ecfecb09150c135b2b44436f',1,'Module::SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], + ['spisetregvalue_613',['SPIsetRegValue',['../class_module.html#ade75c5403a05156b43cc7562563ae2d7',1,'Module']]], + ['spitransfer_614',['spiTransfer',['../class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a',1,'RadioLibHal']]], + ['spitransfer_615',['SPItransfer',['../class_module.html#aa6df70520aa015dd3a1bccdceae67232',1,'Module']]], + ['spitransferstream_616',['SPItransferStream',['../class_module.html#a4174159e476de5cef6ea3f89c883cb5e',1,'Module']]], + ['spiwriteregister_617',['SPIwriteRegister',['../class_module.html#a60ca6b4cae98f7d935191a569d519913',1,'Module']]], + ['spiwriteregisterburst_618',['SPIwriteRegisterBurst',['../class_module.html#a2826f0fa116eb0a4dd18ddb9b21e4caf',1,'Module']]], + ['spiwritestream_619',['SPIwriteStream',['../class_module.html#af99b0e74e67417a88f500ab7261ddd20',1,'Module::SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], + ['spreadingfactor_620',['spreadingFactor',['../struct_lo_ra_rate__t.html#a24fcb6220c0577f985478dc109750076',1,'LoRaRate_t']]], + ['srccallsign_621',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], + ['srcssid_622',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], + ['ssid_623',['ssid',['../struct_l_r11x0_wifi_result_extended__t.html#a640fdd5b33e6ab2f6867cd63da567147',1,'LR11x0WifiResultExtended_t']]], + ['sstvclient_624',['SSTVClient',['../class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a',1,'SSTVClient::SSTVClient(PhysicalLayer *phy)'],['../class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1',1,'SSTVClient::SSTVClient(AFSKClient *audio)'],['../class_s_s_t_v_client.html',1,'SSTVClient']]], + ['sstvmode_5ft_625',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], + ['standby_626',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby() override'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby(uint8_t mode) override'],['../class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665',1,'LR11x0::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby(uint8_t mode)'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby(uint8_t mode) override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby() override'],['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby(uint8_t mode, bool wakeup=true)'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby(uint8_t mode) override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby() override'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby(uint8_t mode) override'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby() override'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby(uint8_t mode) override'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby() override'],['../class_l_r11x0.html#a74c3f3f8409f1fd0f41347b7d3c7dc24',1,'LR11x0::standby()']]], + ['standby_20mode_20type_20aliases_2e_627',['Standby mode type aliases.',['../group__config__standby.html',1,'']]], + ['standbyxosc_628',['standbyXOSC',['../class_s_x126x.html#ae731568798d03d9722a440fd6a23faf2',1,'SX126x']]], + ['start_629',['start',['../struct_l_r11x0_gnss_almanac_status__t.html#a2228a69fda1002c027b7b487aa579afb',1,'LR11x0GnssAlmanacStatus_t']]], + ['startchannelscan_630',['startChannelScan',['../class_s_x128x.html#a948156af6e886bc46a6c6c5fb10a087a',1,'SX128x::startChannelScan()'],['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()'],['../class_s_x126x.html#a09a8fe05c23c652c7ace2e2f1bf51d93',1,'SX126x::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan() override'],['../class_l_r11x0.html#ab073ade3f6b9bbb383e388904812f575',1,'LR11x0::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override'],['../class_s_x128x.html#acdee68d9be73509f464226722551c4d9',1,'SX128x::startChannelScan()'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()'],['../class_physical_layer.html#a82a52062d9259c2c546d7bf8072b7a72',1,'PhysicalLayer::startChannelScan(const ChannelScanConfig_t &config)']]], + ['startdirect_631',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], + ['startranging_632',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], + ['startreceive_633',['startReceive',['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive()'],['../class_s_x127x.html#acaab95d4bf57bf33f6269d2f099e48e0',1,'SX127x::startReceive()'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive()'],['../class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d',1,'LR11x0::startReceive() override'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)'],['../classn_r_f24.html#a3c6aa3622c887118fb8d8cb2689fdff2',1,'nRF24::startReceive() override'],['../classn_r_f24.html#a38b0084ad11090f918f4f370b9df7514',1,'nRF24::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8',1,'RF69::startReceive() override'],['../class_r_f69.html#a21ae7524fe573f1a7e74dee342418222',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_si443x.html#ae188dec3175a3aec96844a613e911500',1,'Si443x::startReceive() override'],['../class_si443x.html#ad5adec16d570b0d1b09420919dbe77e4',1,'Si443x::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive() override'],['../class_s_x126x.html#a44856b641060cff8e9e2019901cd4751',1,'SX126x::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)'],['../class_s_x127x.html#abbe1076252a366c3c4aa323fdff7d40c',1,'SX127x::startReceive()'],['../class_s_x128x.html#a299dd5c01a6f7d2f8a96becd4fff1f09',1,'SX128x::startReceive()'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#ac88f9185b5e9fdc1d89df9797dcdd9b7',1,'PhysicalLayer::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags, RadioLibIrqFlags_t irqMask, size_t len)'],['../class_s_x128x.html#a803eaca8bb7fdfa3570cf4aa95f8e729',1,'SX128x::startReceive()']]], + ['startreceivedutycycle_634',['startReceiveDutyCycle',['../class_s_x126x.html#af9352e49d893151d68a314109140fe29',1,'SX126x']]], + ['startreceivedutycycleauto_635',['startReceiveDutyCycleAuto',['../class_s_x126x.html#ad0f95b62ee987010b00f4be75bf9ab4e',1,'SX126x']]], + ['startsignal_636',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], + ['starttransmit_637',['startTransmit',['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af79757dbbd62e080c1bad2e608ab940c',1,'PhysicalLayer::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a46fff7c4b2bb0eed3fd313d6413dc4e9',1,'SX128x::startTransmit()'],['../class_s_x127x.html#ae0902a990203ec67c628e5d006cbaa96',1,'SX127x::startTransmit()'],['../class_s_x126x.html#adf06ca0d64a61ce16a0a2f4f9a7d6a86',1,'SX126x::startTransmit()'],['../class_si443x.html#a187ea9ee96a67cd48e5b28be5b237c95',1,'Si443x::startTransmit()'],['../class_r_f69.html#af645f6b5d37812f6bb9ec11788e12066',1,'RF69::startTransmit()'],['../classn_r_f24.html#a8b2365ad11840d1d05b0e17b37ddacd2',1,'nRF24::startTransmit()'],['../class_l_r11x0.html#a459825c5b46a2ca515e62042d605aa67',1,'LR11x0::startTransmit()'],['../class_c_c1101.html#a6ff7e4066d189482c142e05384a38df0',1,'CC1101::startTransmit()'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit()'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#af79757dbbd62e080c1bad2e608ab940c',1,'CC1101::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_l_r11x0.html#a923654706eff5118ef6e84214e837f27',1,'LR11x0::startTransmit(const char *str, uint8_t addr=0)'],['../class_l_r11x0.html#af79757dbbd62e080c1bad2e608ab940c',1,'LR11x0::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#af79757dbbd62e080c1bad2e608ab940c',1,'nRF24::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#af79757dbbd62e080c1bad2e608ab940c',1,'RF69::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#af79757dbbd62e080c1bad2e608ab940c',1,'Si443x::startTransmit()'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX126x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX127x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX128x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)']]], + ['startwifiscan_638',['startWifiScan',['../class_l_r11x0.html#a3498e0e621f341e415145879989e0948',1,'LR11x0']]], + ['status_20codes_639',['Status Codes',['../group__status__codes.html',1,'']]], + ['statuspos_640',['statusPos',['../struct_module_1_1_s_p_i_config__t.html#a5b689d2722b8980a211a562ed394d23e',1,'Module::SPIConfig_t']]], + ['stm32wlx_641',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'STM32WLx'],['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx::STM32WLx()']]], + ['stm32wlx_5fmodule_642',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]], + ['stm32wlxhal_643',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]], + ['stream_644',['stream',['../struct_module_1_1_s_p_i_config__t.html#a1a088c02ed02361746621ffbc2526681',1,'Module::SPIConfig_t']]], + ['svid_645',['svId',['../struct_l_r11x0_gnss_satellite__t.html#a0513395fd04c052b862c443dfbe75e84',1,'LR11x0GnssSatellite_t']]], + ['sx1231_646',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()'],['../class_s_x1231.html',1,'SX1231']]], + ['sx1233_647',['SX1233',['../class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f',1,'SX1233::SX1233()'],['../class_s_x1233.html',1,'SX1233']]], + ['sx1261_648',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()'],['../class_s_x1261.html',1,'SX1261']]], + ['sx1262_649',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()'],['../class_s_x1262.html',1,'SX1262']]], + ['sx1268_650',['SX1268',['../class_s_x1268.html',1,'SX1268'],['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()']]], + ['sx126x_651',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]], + ['sx1272_652',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]], + ['sx1273_653',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]], + ['sx1276_654',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]], + ['sx1277_655',['SX1277',['../class_s_x1277.html',1,'SX1277'],['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()']]], + ['sx1278_656',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]], + ['sx1279_657',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]], + ['sx127x_658',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]], + ['sx1280_659',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]], + ['sx1281_660',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]], + ['sx1282_661',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()'],['../class_s_x1282.html',1,'SX1282']]], + ['sx128x_662',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x::SX128x()'],['../class_s_x128x.html',1,'SX128x']]], + ['symnum_663',['symNum',['../struct_c_a_d_scan_config__t.html#a5cb000f071f740c8cc81ea2f04dd9b60',1,'CADScanConfig_t']]] ]; diff --git a/search/all_11.js b/search/all_11.js index 38ace962..84431692 100644 --- a/search/all_11.js +++ b/search/all_11.js @@ -1,24 +1,24 @@ var searchData= [ - ['term_665',['term',['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()'],['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()']]], - ['timeout_666',['timeout',['../struct_module_1_1_s_p_i_config__t.html#a56ecc0b9c1207d655c581e90faa77bb5',1,'Module::SPIConfig_t::timeout()'],['../struct_c_a_d_scan_config__t.html#a44223617e2d046318e75f863c618e26c',1,'CADScanConfig_t::timeout()']]], - ['timestamp_667',['timestamp',['../struct_l_r11x0_wifi_result_full__t.html#a4fbd2bfd834c890da47ab94c6f688738',1,'LR11x0WifiResultFull_t']]], - ['timeuntiluplink_668',['timeUntilUplink',['../class_lo_ra_w_a_n_node.html#a49e690c14858b46692e4ce9aa5a2566a',1,'LoRaWANNode']]], - ['todistributionsystem_669',['toDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#abe8e8b5e22a75ac988de6f98afa5fd61',1,'LR11x0WifiResultFull_t']]], - ['todo_20list_670',['Todo List',['../todo.html',1,'']]], - ['tone_671',['tone',['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()'],['../class_radio_lib_hal.html#a62c9032e834ba420d81dc3e69df64e17',1,'RadioLibHal::tone()']]], - ['tone_5ft_672',['tone_t',['../structtone__t.html',1,'']]], - ['tones_673',['tones',['../struct_s_s_t_v_mode__t.html#a7993c913a63cda9d927938fe0b08b8ea',1,'SSTVMode_t']]], - ['transmit_674',['transmit',['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit()'],['../class_s_x128x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX128x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX127x::transmit()'],['../class_c_c1101.html#a5086eb8a27aa842e94d1df54f385c39b',1,'CC1101::transmit()'],['../class_s_x126x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX126x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ada508497ee2e70170da3afe078e2fe0e',1,'Si443x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#ada508497ee2e70170da3afe078e2fe0e',1,'RF69::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#ada508497ee2e70170da3afe078e2fe0e',1,'nRF24::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit(const char *str, uint8_t addr=0)'],['../class_l_r11x0.html#ada508497ee2e70170da3afe078e2fe0e',1,'LR11x0::transmit()'],['../class_c_c1101.html#ada508497ee2e70170da3afe078e2fe0e',1,'CC1101::transmit()'],['../class_l_r11x0.html#a21e865665318dece7d95336a275dd973',1,'LR11x0::transmit()'],['../classn_r_f24.html#af7c4cf05b992d8a97331b9888e95fc2f',1,'nRF24::transmit()'],['../class_r_f69.html#a8d68f041b20ed765f2ff2fbdff06171f',1,'RF69::transmit()'],['../class_si443x.html#a379fb39c9ab79aa67601c84736b1fec4',1,'Si443x::transmit()'],['../class_s_x126x.html#a5fa48e147ee54e1b0fc4d28ef5247180',1,'SX126x::transmit()'],['../class_s_x127x.html#a75cb0d8810a5ce025d3bf5b51ca263d6',1,'SX127x::transmit()'],['../class_s_x128x.html#a45f4ac293d869a35ad737032efa8e884',1,'SX128x::transmit()'],['../class_pager_client.html#adbab4e162a5719bd4407a42a85d26ff6',1,'PagerClient::transmit()'],['../class_l_r11x0.html#a492b2d057dd803c3884fa1adc8e22534',1,'LR11x0::transmit()'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit()'],['../class_physical_layer.html#ada508497ee2e70170da3afe078e2fe0e',1,'PhysicalLayer::transmit()'],['../class_pager_client.html#aa9df7f8675170affc5256a896168601b',1,'PagerClient::transmit()'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit()']]], - ['transmitdirect_675',['transmitDirect',['../class_l_r11x0.html#ae077957969f6274a53f63b314b6f1359',1,'LR11x0::transmitDirect()'],['../class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65',1,'PhysicalLayer::transmitDirect()'],['../class_external_radio.html#a25be77aea48cfbdcae05ed32b660daef',1,'ExternalRadio::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect(uint32_t frf=0) override']]], - ['transmitdirectasync_676',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]], - ['ts009_677',['TS009',['../class_lo_ra_w_a_n_node.html#a8226f4d0329d15da9ffc706e5781403a',1,'LoRaWANNode']]], - ['txack_678',['txAck',['../struct_lo_ra_w_a_n_band__t.html#a709fdad617bd9138eef52bc7220c29f2',1,'LoRaWANBand_t']]], - ['txfreqs_679',['txFreqs',['../struct_lo_ra_w_a_n_band__t.html#a9bd952022473cb08e067c763325d689c',1,'LoRaWANBand_t']]], - ['txjoinreq_680',['txJoinReq',['../struct_lo_ra_w_a_n_band__t.html#a9f6f43346f7c2e281b90d58a44565d38',1,'LoRaWANBand_t']]], - ['txparamsupported_681',['txParamSupported',['../struct_lo_ra_w_a_n_band__t.html#a4bbc7445702c32199f0bbd011d6f4da6',1,'LoRaWANBand_t']]], - ['txspans_682',['txSpans',['../struct_lo_ra_w_a_n_band__t.html#aa37a3cae13a68c2deb2968de26ad9bd3',1,'LoRaWANBand_t']]], - ['txwor_683',['txWoR',['../struct_lo_ra_w_a_n_band__t.html#a918f643c1fc6df722efd8f969c68cf7e',1,'LoRaWANBand_t']]], - ['type_684',['type',['../struct_l_r11x0_wifi_result__t.html#a7750bb14648b6ee4e96b73cd76a1ca2a',1,'LR11x0WifiResult_t::type()'],['../structtone__t.html#af92472bf087b9a7ec0c350bd503bdd74',1,'tone_t::type()']]], - ['type_20aliases_20used_20by_20radiolib_2e_685',['Type aliases used by RadioLib.',['../group__typedefs.html',1,'']]] + ['term_664',['term',['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()'],['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()']]], + ['timeout_665',['timeout',['../struct_module_1_1_s_p_i_config__t.html#a56ecc0b9c1207d655c581e90faa77bb5',1,'Module::SPIConfig_t::timeout()'],['../struct_c_a_d_scan_config__t.html#a44223617e2d046318e75f863c618e26c',1,'CADScanConfig_t::timeout()']]], + ['timestamp_666',['timestamp',['../struct_l_r11x0_wifi_result_full__t.html#a4fbd2bfd834c890da47ab94c6f688738',1,'LR11x0WifiResultFull_t']]], + ['timeuntiluplink_667',['timeUntilUplink',['../class_lo_ra_w_a_n_node.html#a49e690c14858b46692e4ce9aa5a2566a',1,'LoRaWANNode']]], + ['todistributionsystem_668',['toDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#abe8e8b5e22a75ac988de6f98afa5fd61',1,'LR11x0WifiResultFull_t']]], + ['todo_20list_669',['Todo List',['../todo.html',1,'']]], + ['tone_670',['tone',['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()'],['../class_radio_lib_hal.html#a62c9032e834ba420d81dc3e69df64e17',1,'RadioLibHal::tone()']]], + ['tone_5ft_671',['tone_t',['../structtone__t.html',1,'']]], + ['tones_672',['tones',['../struct_s_s_t_v_mode__t.html#a7993c913a63cda9d927938fe0b08b8ea',1,'SSTVMode_t']]], + ['transmit_673',['transmit',['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit()'],['../class_s_x128x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX128x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX127x::transmit()'],['../class_c_c1101.html#a5086eb8a27aa842e94d1df54f385c39b',1,'CC1101::transmit()'],['../class_s_x126x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX126x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ada508497ee2e70170da3afe078e2fe0e',1,'Si443x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#ada508497ee2e70170da3afe078e2fe0e',1,'RF69::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#ada508497ee2e70170da3afe078e2fe0e',1,'nRF24::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit(const char *str, uint8_t addr=0)'],['../class_l_r11x0.html#ada508497ee2e70170da3afe078e2fe0e',1,'LR11x0::transmit()'],['../class_c_c1101.html#ada508497ee2e70170da3afe078e2fe0e',1,'CC1101::transmit()'],['../class_l_r11x0.html#a21e865665318dece7d95336a275dd973',1,'LR11x0::transmit()'],['../classn_r_f24.html#af7c4cf05b992d8a97331b9888e95fc2f',1,'nRF24::transmit()'],['../class_r_f69.html#a8d68f041b20ed765f2ff2fbdff06171f',1,'RF69::transmit()'],['../class_si443x.html#a379fb39c9ab79aa67601c84736b1fec4',1,'Si443x::transmit()'],['../class_s_x126x.html#a5fa48e147ee54e1b0fc4d28ef5247180',1,'SX126x::transmit()'],['../class_s_x127x.html#a75cb0d8810a5ce025d3bf5b51ca263d6',1,'SX127x::transmit()'],['../class_s_x128x.html#a45f4ac293d869a35ad737032efa8e884',1,'SX128x::transmit()'],['../class_pager_client.html#adbab4e162a5719bd4407a42a85d26ff6',1,'PagerClient::transmit()'],['../class_l_r11x0.html#a492b2d057dd803c3884fa1adc8e22534',1,'LR11x0::transmit()'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit()'],['../class_physical_layer.html#ada508497ee2e70170da3afe078e2fe0e',1,'PhysicalLayer::transmit()'],['../class_pager_client.html#aa9df7f8675170affc5256a896168601b',1,'PagerClient::transmit()'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit()']]], + ['transmitdirect_674',['transmitDirect',['../class_l_r11x0.html#ae077957969f6274a53f63b314b6f1359',1,'LR11x0::transmitDirect()'],['../class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65',1,'PhysicalLayer::transmitDirect()'],['../class_external_radio.html#a25be77aea48cfbdcae05ed32b660daef',1,'ExternalRadio::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect(uint32_t frf=0) override']]], + ['transmitdirectasync_675',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]], + ['ts009_676',['TS009',['../class_lo_ra_w_a_n_node.html#a8226f4d0329d15da9ffc706e5781403a',1,'LoRaWANNode']]], + ['txack_677',['txAck',['../struct_lo_ra_w_a_n_band__t.html#a709fdad617bd9138eef52bc7220c29f2',1,'LoRaWANBand_t']]], + ['txfreqs_678',['txFreqs',['../struct_lo_ra_w_a_n_band__t.html#a9bd952022473cb08e067c763325d689c',1,'LoRaWANBand_t']]], + ['txjoinreq_679',['txJoinReq',['../struct_lo_ra_w_a_n_band__t.html#a9f6f43346f7c2e281b90d58a44565d38',1,'LoRaWANBand_t']]], + ['txparamsupported_680',['txParamSupported',['../struct_lo_ra_w_a_n_band__t.html#a4bbc7445702c32199f0bbd011d6f4da6',1,'LoRaWANBand_t']]], + ['txspans_681',['txSpans',['../struct_lo_ra_w_a_n_band__t.html#aa37a3cae13a68c2deb2968de26ad9bd3',1,'LoRaWANBand_t']]], + ['txwor_682',['txWoR',['../struct_lo_ra_w_a_n_band__t.html#a918f643c1fc6df722efd8f969c68cf7e',1,'LoRaWANBand_t']]], + ['type_683',['type',['../struct_l_r11x0_wifi_result__t.html#a7750bb14648b6ee4e96b73cd76a1ca2a',1,'LR11x0WifiResult_t::type()'],['../structtone__t.html#af92472bf087b9a7ec0c350bd503bdd74',1,'tone_t::type()']]], + ['type_20aliases_20used_20by_20radiolib_2e_684',['Type aliases used by RadioLib.',['../group__typedefs.html',1,'']]] ]; diff --git a/search/all_12.js b/search/all_12.js index 9bfdf765..8557aa02 100644 --- a/search/all_12.js +++ b/search/all_12.js @@ -1,7 +1,7 @@ var searchData= [ - ['updatefirmware_686',['updateFirmware',['../class_l_r11x0.html#ab2820cc2b740d6d42a079bbd8bd45b85',1,'LR11x0']]], - ['updategnssalmanac_687',['updateGnssAlmanac',['../class_l_r11x0.html#a96aa9566399e46fc03f2b73b44058e3f',1,'LR11x0']]], - ['uploadpatch_688',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]], - ['user_689',['user',['../struct_lo_ra_w_a_n_mac_command__t.html#a269530a63c3e2a66393fb10286a3b5b6',1,'LoRaWANMacCommand_t']]] + ['updatefirmware_685',['updateFirmware',['../class_l_r11x0.html#ab2820cc2b740d6d42a079bbd8bd45b85',1,'LR11x0']]], + ['updategnssalmanac_686',['updateGnssAlmanac',['../class_l_r11x0.html#a96aa9566399e46fc03f2b73b44058e3f',1,'LR11x0']]], + ['uploadpatch_687',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]], + ['user_688',['user',['../struct_lo_ra_w_a_n_mac_command__t.html#a269530a63c3e2a66393fb10286a3b5b6',1,'LoRaWANMacCommand_t']]] ]; diff --git a/search/all_13.js b/search/all_13.js index b94fd432..06d45417 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -1,7 +1,7 @@ var searchData= [ - ['values_690',['values',['../struct_module_1_1_rf_switch_mode__t.html#a694fecae172f868d8ca400319920ed66',1,'Module::RfSwitchMode_t']]], - ['variablepacketlengthmode_691',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_l_r11x0.html#adcd56cf63e91449b6cd03782a69c3451',1,'LR11x0::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]], - ['verifycmac_692',['verifyCMAC',['../class_radio_lib_a_e_s128.html#a235daad00bd77a406d7fc187bcb2192e',1,'RadioLibAES128']]], - ['viscode_693',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] + ['values_689',['values',['../struct_module_1_1_rf_switch_mode__t.html#a694fecae172f868d8ca400319920ed66',1,'Module::RfSwitchMode_t']]], + ['variablepacketlengthmode_690',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_l_r11x0.html#adcd56cf63e91449b6cd03782a69c3451',1,'LR11x0::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]], + ['verifycmac_691',['verifyCMAC',['../class_radio_lib_a_e_s128.html#a235daad00bd77a406d7fc187bcb2192e',1,'RadioLibAES128']]], + ['viscode_692',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] ]; diff --git a/search/all_14.js b/search/all_14.js index bac8748c..22065ac2 100644 --- a/search/all_14.js +++ b/search/all_14.js @@ -1,8 +1,8 @@ var searchData= [ - ['waitformicroseconds_694',['waitForMicroseconds',['../class_module.html#a7df4c687249c07af2594a5f7ad0a946f',1,'Module']]], - ['width_695',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]], - ['widths_696',['widths',['../struct_module_1_1_s_p_i_config__t.html#a8cd88af331563749f10ac69b63e1755a',1,'Module::SPIConfig_t']]], - ['wifiscan_697',['wifiScan',['../class_l_r11x0.html#ade5478296ebc7e02281c95609d5d75ab',1,'LR11x0']]], - ['write_698',['write',['../class_bell_client.html#a69bd78bf3be2724b4f34c80c2bd3a6df',1,'BellClient::write()'],['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)'],['../class_hell_client.html#af557774ad72c24a94faff8c2be30f0d1',1,'HellClient::write()'],['../class_morse_client.html#a4a9cf8bf1a8bd270417a1a9fca660ef1',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a23220f58b7bda1f24b6343875561586a',1,'RTTYClient::write()']]] + ['waitformicroseconds_693',['waitForMicroseconds',['../class_module.html#a7df4c687249c07af2594a5f7ad0a946f',1,'Module']]], + ['width_694',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]], + ['widths_695',['widths',['../struct_module_1_1_s_p_i_config__t.html#a8cd88af331563749f10ac69b63e1755a',1,'Module::SPIConfig_t']]], + ['wifiscan_696',['wifiScan',['../class_l_r11x0.html#ade5478296ebc7e02281c95609d5d75ab',1,'LR11x0']]], + ['write_697',['write',['../class_bell_client.html#a69bd78bf3be2724b4f34c80c2bd3a6df',1,'BellClient::write()'],['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)'],['../class_hell_client.html#af557774ad72c24a94faff8c2be30f0d1',1,'HellClient::write()'],['../class_morse_client.html#a4a9cf8bf1a8bd270417a1a9fca660ef1',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a23220f58b7bda1f24b6343875561586a',1,'RTTYClient::write()']]] ]; diff --git a/search/all_15.js b/search/all_15.js index f5bb1072..13f2fda0 100644 --- a/search/all_15.js +++ b/search/all_15.js @@ -1,4 +1,4 @@ var searchData= [ - ['xtal_699',['XTAL',['../class_l_r11x0.html#a3ccfd35d26960457214d2a0192d6b312',1,'LR11x0::XTAL()'],['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x::XTAL()']]] + ['xtal_698',['XTAL',['../class_l_r11x0.html#a3ccfd35d26960457214d2a0192d6b312',1,'LR11x0::XTAL()'],['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x::XTAL()']]] ]; diff --git a/search/all_16.js b/search/all_16.js index 65cba92c..d4256dc0 100644 --- a/search/all_16.js +++ b/search/all_16.js @@ -1,4 +1,4 @@ var searchData= [ - ['yield_700',['yield',['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal']]] + ['yield_699',['yield',['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal']]] ]; diff --git a/search/all_17.js b/search/all_17.js index 227edfa4..58cade81 100644 --- a/search/all_17.js +++ b/search/all_17.js @@ -1,7 +1,7 @@ var searchData= [ - ['_7eax25frame_701',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], - ['_7eexternalradio_702',['~ExternalRadio',['../class_external_radio.html#a46f76689b07d29a626faf917ad264ad0',1,'ExternalRadio']]], - ['_7eita2string_703',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]], - ['_7eradiolibbch_704',['~RadioLibBCH',['../class_radio_lib_b_c_h.html#ac4ceca6f132ff2047e2ca13d8d00a9e5',1,'RadioLibBCH']]] + ['_7eax25frame_700',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], + ['_7eexternalradio_701',['~ExternalRadio',['../class_external_radio.html#a46f76689b07d29a626faf917ad264ad0',1,'ExternalRadio']]], + ['_7eita2string_702',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]], + ['_7eradiolibbch_703',['~RadioLibBCH',['../class_radio_lib_b_c_h.html#ac4ceca6f132ff2047e2ca13d8d00a9e5',1,'RadioLibBCH']]] ]; diff --git a/search/all_6.js b/search/all_6.js index 52bb8696..7b5d7337 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -23,8 +23,8 @@ var searchData= ['getgnsssatellites_169',['getGnssSatellites',['../class_l_r11x0.html#a97a3f23b796257135a9afd33c28e8ed5',1,'LR11x0']]], ['getgpio_170',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]], ['getirq_171',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]], - ['getirqflags_172',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], - ['getirqflags_173',['getIrqFlags',['../class_physical_layer.html#af1caeed34b2e2ff0355467507106a1a2',1,'PhysicalLayer::getIrqFlags()'],['../class_s_x128x.html#aa17ffcb939f6b2eb0712e63b6ee7a71f',1,'SX128x::getIrqFlags()'],['../class_s_x127x.html#a22de05835dda9ed287ec48f60ef91f55',1,'SX127x::getIrqFlags()'],['../class_s_x126x.html#ab4f9b0c6496a796211e9816bf92146a7',1,'SX126x::getIrqFlags()'],['../class_l_r11x0.html#a205364e65d54f3f87b9b8f5972cdcb99',1,'LR11x0::getIrqFlags()']]], + ['getirqflags_172',['getIrqFlags',['../class_physical_layer.html#af1caeed34b2e2ff0355467507106a1a2',1,'PhysicalLayer::getIrqFlags()'],['../class_s_x128x.html#aa17ffcb939f6b2eb0712e63b6ee7a71f',1,'SX128x::getIrqFlags()'],['../class_s_x127x.html#a22de05835dda9ed287ec48f60ef91f55',1,'SX127x::getIrqFlags()'],['../class_s_x126x.html#ab4f9b0c6496a796211e9816bf92146a7',1,'SX126x::getIrqFlags()'],['../class_l_r11x0.html#a205364e65d54f3f87b9b8f5972cdcb99',1,'LR11x0::getIrqFlags()']]], + ['getirqflags_173',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], ['getirqmapped_174',['getIrqMapped',['../class_physical_layer.html#ae602ebd46d60da8670c9f353cef695d9',1,'PhysicalLayer']]], ['getirqstatus_175',['getIrqStatus',['../class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8',1,'LR11x0::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]], ['getlasttoa_176',['getLastToA',['../class_lo_ra_w_a_n_node.html#a683b02b63867bb7de5df45c94d190305',1,'LoRaWANNode']]], diff --git a/search/all_f.js b/search/all_f.js index 2e9252d5..6b1f5ed4 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -106,7 +106,7 @@ var searchData= ['radiolib_5flora_5fdetected_430',['RADIOLIB_LORA_DETECTED',['../group__status__codes.html#ga58ff08f4dba334cf8e26474ec2d3facd',1,'TypeDef.h']]], ['radiolib_5florawan_5fnew_5fsession_431',['RADIOLIB_LORAWAN_NEW_SESSION',['../group__status__codes.html#gae99db161b4e00a44c0a60951ddb7c8a6',1,'TypeDef.h']]], ['radiolib_5florawan_5fsession_5frestored_432',['RADIOLIB_LORAWAN_SESSION_RESTORED',['../group__status__codes.html#ga633e2f826e44d4575ca67459fda5d660',1,'TypeDef.h']]], - ['radiolib_5flr1110_5ffirmware_5fattr_433',['RADIOLIB_LR1110_FIRMWARE_ATTR',['../lr1110__transceiver__0306_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0306.h'],['../lr1121__transceiver__0103_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1120_transceiver_0201.h'],['../lr1110__transceiver__0401_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0305_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0305.h']]], + ['radiolib_5flr1110_5ffirmware_5fattr_433',['RADIOLIB_LR1110_FIRMWARE_ATTR',['../lr1110__transceiver__0305_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0305.h'],['../lr1110__transceiver__0306_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0401_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0201_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1121_transceiver_0103.h']]], ['radiolib_5fpreamble_5fdetected_434',['RADIOLIB_PREAMBLE_DETECTED',['../group__status__codes.html#ga382dc113e93f196401914853ec176b18',1,'TypeDef.h']]], ['radiolib_5fshaping_5f0_5f3_435',['RADIOLIB_SHAPING_0_3',['../group__config__shaping.html#ga6a562fca42573d39e4a214c293756f64',1,'TypeDef.h']]], ['radiolib_5fshaping_5f0_5f5_436',['RADIOLIB_SHAPING_0_5',['../group__config__shaping.html#gaa778d14c29d21fe329137a28a3f54a5d',1,'TypeDef.h']]], @@ -116,46 +116,45 @@ var searchData= ['radiolib_5fstandby_5fcold_440',['RADIOLIB_STANDBY_COLD',['../group__config__standby.html#ga37f835c3cd3323e2cde1fe1ab7c635e7',1,'TypeDef.h']]], ['radiolib_5fstandby_5fdefault_441',['RADIOLIB_STANDBY_DEFAULT',['../group__config__standby.html#ga3f3398b244d584ad94c691f60f2d9517',1,'TypeDef.h']]], ['radiolib_5fstandby_5fwarm_442',['RADIOLIB_STANDBY_WARM',['../group__config__standby.html#ga9c4af50dde47d157538b1877190ea7b5',1,'TypeDef.h']]], - ['radiolibaes128_443',['RadioLibAES128',['../class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe',1,'RadioLibAES128::RadioLibAES128()'],['../class_radio_lib_a_e_s128.html',1,'RadioLibAES128']]], + ['radiolibaes128_443',['RadioLibAES128',['../class_radio_lib_a_e_s128.html',1,'RadioLibAES128'],['../class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe',1,'RadioLibAES128::RadioLibAES128()']]], ['radiolibbch_444',['RadioLibBCH',['../class_radio_lib_b_c_h.html',1,'RadioLibBCH'],['../class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118',1,'RadioLibBCH::RadioLibBCH()']]], - ['radiolibconvcode_445',['RadioLibConvCode',['../class_radio_lib_conv_code.html',1,'RadioLibConvCode'],['../class_radio_lib_conv_code.html#a4fbe7c4e90969f0be10b8484b405df78',1,'RadioLibConvCode::RadioLibConvCode()']]], + ['radiolibconvcode_445',['RadioLibConvCode',['../class_radio_lib_conv_code.html#a4fbe7c4e90969f0be10b8484b405df78',1,'RadioLibConvCode::RadioLibConvCode()'],['../class_radio_lib_conv_code.html',1,'RadioLibConvCode']]], ['radiolibcrc_446',['RadioLibCRC',['../class_radio_lib_c_r_c.html',1,'RadioLibCRC'],['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC::RadioLibCRC()']]], ['radiolibhal_447',['RadioLibHal',['../class_radio_lib_hal.html',1,'RadioLibHal'],['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal::RadioLibHal()']]], ['radiolibirqflags_5ft_448',['RadioLibIrqFlags_t',['../group__typedefs.html#gafaf66becf1112a55ba8ad7402b802b77',1,'TypeDef.h']]], ['radiolibprint_449',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]], ['radiolibtime_5ft_450',['RadioLibTime_t',['../group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd',1,'TypeDef.h']]], ['random_451',['random',['../class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53',1,'PhysicalLayer::random(int32_t max)'],['../class_physical_layer.html#a76113e10481743094a1cd0280692b0a9',1,'PhysicalLayer::random(int32_t min, int32_t max)']]], - ['randombyte_452',['randomByte',['../class_s_x127x.html#a9877550ed7881be06d00ea190f230fb9',1,'SX127x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a8d331080599e09ef0b11a77cffd6f13a',1,'SX128x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_si443x.html#a16750016db8a3bf27c35822b08d81155',1,'Si443x::randomByte()'],['../class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297',1,'RF69::randomByte()'],['../class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4',1,'LR11x0::randomByte()'],['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()']]], + ['randombyte_452',['randomByte',['../class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297',1,'RF69::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a8d331080599e09ef0b11a77cffd6f13a',1,'SX128x::randomByte()'],['../class_s_x127x.html#a9877550ed7881be06d00ea190f230fb9',1,'SX127x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_si443x.html#a16750016db8a3bf27c35822b08d81155',1,'Si443x::randomByte()'],['../class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4',1,'LR11x0::randomByte()'],['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()']]], ['range_453',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]], ['rate_454',['rate',['../struct_l_r11x0_wifi_result_extended__t.html#a16a6732a8af0332f64c0f6bcc0d5257f',1,'LR11x0WifiResultExtended_t']]], ['rcvseqnumber_455',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], ['read_456',['read',['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]], - ['readbit_457',['readBit',['../class_si443x.html#a2bff9ba621ad00964bdfc72dd374a50b',1,'Si443x::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#af2e1d173694a59082a22922a6f7d50a8',1,'SX128x::readBit()'],['../class_s_x127x.html#a0e149fac59b3accbc9550bf605d6bbf0',1,'SX127x::readBit()'],['../class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746',1,'RF69::readBit()'],['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()']]], - ['readdata_458',['readData',['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()']]], - ['receive_459',['receive',['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive(uint8_t *data, size_t len) override']]], - ['receivedirect_460',['receiveDirect',['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect() override']]], + ['readbit_457',['readBit',['../class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746',1,'RF69::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#af2e1d173694a59082a22922a6f7d50a8',1,'SX128x::readBit()'],['../class_s_x127x.html#a0e149fac59b3accbc9550bf605d6bbf0',1,'SX127x::readBit()'],['../class_si443x.html#a2bff9ba621ad00964bdfc72dd374a50b',1,'Si443x::readBit()'],['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()']]], + ['readdata_458',['readData',['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData(uint8_t *data, size_t len) override']]], + ['receive_459',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()']]], + ['receivedirect_460',['receiveDirect',['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect() override']]], ['receivedirectasync_461',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]], ['refin_462',['refIn',['../class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04',1,'RadioLibCRC']]], - ['reflect_463',['reflect',['../class_module.html#a4add1a875bb88e91da232118201a78a8',1,'Module']]], - ['refout_464',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]], - ['repeatercallsigns_465',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], - ['repeaterssids_466',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], - ['reply_467',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]], - ['reset_468',['reset',['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()'],['../class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994',1,'LR11x0::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()']]], - ['resetfcntdown_469',['resetFCntDown',['../class_lo_ra_w_a_n_node.html#af4b3d07cd9bf4178d627204bae18b648',1,'LoRaWANNode']]], - ['ressize_470',['resSize',['../struct_l_r11x0_gnss_result__t.html#a2fcd901f5815f3e4760f61d2bc7a7a9b',1,'LR11x0GnssResult_t']]], - ['rf69_471',['RF69',['../class_r_f69.html',1,'RF69'],['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()']]], - ['rfm22_472',['RFM22',['../class_r_f_m22.html',1,'']]], - ['rfm23_473',['RFM23',['../class_r_f_m23.html',1,'']]], - ['rfm95_474',['RFM95',['../class_r_f_m95.html',1,'']]], - ['rfm96_475',['RFM96',['../class_r_f_m96.html',1,'']]], - ['rfm97_476',['RFM97',['../class_r_f_m97.html',1,'']]], - ['rfm98_477',['RFM98',['../class_r_f_m98.html',1,'']]], - ['rfswitch_5fmax_5fpins_478',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]], - ['rfswitchmode_5ft_479',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]], - ['rssi_480',['rssi',['../union_channel_scan_config__t.html#ad728b1bd8f0410660f51df0b27f2797e',1,'ChannelScanConfig_t::rssi()'],['../struct_l_r11x0_wifi_result__t.html#acac3f837ac4fa56e5fda3221f89f3d9f',1,'LR11x0WifiResult_t::rssi()']]], - ['rssiscanconfig_5ft_481',['RSSIScanConfig_t',['../struct_r_s_s_i_scan_config__t.html',1,'']]], - ['rttyclient_482',['RTTYClient',['../class_r_t_t_y_client.html',1,'RTTYClient'],['../class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570',1,'RTTYClient::RTTYClient(AFSKClient *audio)'],['../class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea',1,'RTTYClient::RTTYClient(PhysicalLayer *phy)']]], - ['rx1span_483',['rx1Span',['../struct_lo_ra_w_a_n_band__t.html#af8def1e0b5c3dc122557f71f5637a529',1,'LoRaWANBand_t']]], - ['rx2_484',['rx2',['../struct_lo_ra_w_a_n_band__t.html#ae3ed10eddc647a6f770121a1662a854f',1,'LoRaWANBand_t']]] + ['refout_463',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]], + ['repeatercallsigns_464',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], + ['repeaterssids_465',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], + ['reply_466',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]], + ['reset_467',['reset',['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994',1,'LR11x0::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()']]], + ['resetfcntdown_468',['resetFCntDown',['../class_lo_ra_w_a_n_node.html#af4b3d07cd9bf4178d627204bae18b648',1,'LoRaWANNode']]], + ['ressize_469',['resSize',['../struct_l_r11x0_gnss_result__t.html#a2fcd901f5815f3e4760f61d2bc7a7a9b',1,'LR11x0GnssResult_t']]], + ['rf69_470',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()'],['../class_r_f69.html',1,'RF69']]], + ['rfm22_471',['RFM22',['../class_r_f_m22.html',1,'']]], + ['rfm23_472',['RFM23',['../class_r_f_m23.html',1,'']]], + ['rfm95_473',['RFM95',['../class_r_f_m95.html',1,'']]], + ['rfm96_474',['RFM96',['../class_r_f_m96.html',1,'']]], + ['rfm97_475',['RFM97',['../class_r_f_m97.html',1,'']]], + ['rfm98_476',['RFM98',['../class_r_f_m98.html',1,'']]], + ['rfswitch_5fmax_5fpins_477',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]], + ['rfswitchmode_5ft_478',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]], + ['rssi_479',['rssi',['../union_channel_scan_config__t.html#ad728b1bd8f0410660f51df0b27f2797e',1,'ChannelScanConfig_t::rssi()'],['../struct_l_r11x0_wifi_result__t.html#acac3f837ac4fa56e5fda3221f89f3d9f',1,'LR11x0WifiResult_t::rssi()']]], + ['rssiscanconfig_5ft_480',['RSSIScanConfig_t',['../struct_r_s_s_i_scan_config__t.html',1,'']]], + ['rttyclient_481',['RTTYClient',['../class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea',1,'RTTYClient::RTTYClient(PhysicalLayer *phy)'],['../class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570',1,'RTTYClient::RTTYClient(AFSKClient *audio)'],['../class_r_t_t_y_client.html',1,'RTTYClient']]], + ['rx1span_482',['rx1Span',['../struct_lo_ra_w_a_n_band__t.html#af8def1e0b5c3dc122557f71f5637a529',1,'LoRaWANBand_t']]], + ['rx2_483',['rx2',['../struct_lo_ra_w_a_n_band__t.html#ae3ed10eddc647a6f770121a1662a854f',1,'LoRaWANBand_t']]] ]; diff --git a/search/classes_0.js b/search/classes_0.js index ceec8ce5..ebe84761 100644 --- a/search/classes_0.js +++ b/search/classes_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['afskclient_705',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]], - ['aprsclient_706',['APRSClient',['../class_a_p_r_s_client.html',1,'']]], - ['ax25client_707',['AX25Client',['../class_a_x25_client.html',1,'']]], - ['ax25frame_708',['AX25Frame',['../class_a_x25_frame.html',1,'']]] + ['afskclient_704',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]], + ['aprsclient_705',['APRSClient',['../class_a_p_r_s_client.html',1,'']]], + ['ax25client_706',['AX25Client',['../class_a_x25_client.html',1,'']]], + ['ax25frame_707',['AX25Frame',['../class_a_x25_frame.html',1,'']]] ]; diff --git a/search/classes_1.js b/search/classes_1.js index b3b76023..56aea231 100644 --- a/search/classes_1.js +++ b/search/classes_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['bellclient_709',['BellClient',['../class_bell_client.html',1,'']]], - ['bellmodem_5ft_710',['BellModem_t',['../struct_bell_modem__t.html',1,'']]] + ['bellclient_708',['BellClient',['../class_bell_client.html',1,'']]], + ['bellmodem_5ft_709',['BellModem_t',['../struct_bell_modem__t.html',1,'']]] ]; diff --git a/search/classes_2.js b/search/classes_2.js index 31611609..e4590f61 100644 --- a/search/classes_2.js +++ b/search/classes_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['cadscanconfig_5ft_711',['CADScanConfig_t',['../struct_c_a_d_scan_config__t.html',1,'']]], - ['cc1101_712',['CC1101',['../class_c_c1101.html',1,'']]], - ['channelscanconfig_5ft_713',['ChannelScanConfig_t',['../union_channel_scan_config__t.html',1,'']]] + ['cadscanconfig_5ft_710',['CADScanConfig_t',['../struct_c_a_d_scan_config__t.html',1,'']]], + ['cc1101_711',['CC1101',['../class_c_c1101.html',1,'']]], + ['channelscanconfig_5ft_712',['ChannelScanConfig_t',['../union_channel_scan_config__t.html',1,'']]] ]; diff --git a/search/classes_3.js b/search/classes_3.js index 803f2f26..5225211e 100644 --- a/search/classes_3.js +++ b/search/classes_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['datarate_5ft_714',['DataRate_t',['../union_data_rate__t.html',1,'']]] + ['datarate_5ft_713',['DataRate_t',['../union_data_rate__t.html',1,'']]] ]; diff --git a/search/classes_4.js b/search/classes_4.js index 03bbc6fc..96f50e2c 100644 --- a/search/classes_4.js +++ b/search/classes_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['externalradio_715',['ExternalRadio',['../class_external_radio.html',1,'']]] + ['externalradio_714',['ExternalRadio',['../class_external_radio.html',1,'']]] ]; diff --git a/search/classes_5.js b/search/classes_5.js index e3cd7a65..d111bce2 100644 --- a/search/classes_5.js +++ b/search/classes_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['fsk4client_716',['FSK4Client',['../class_f_s_k4_client.html',1,'']]], - ['fskrate_5ft_717',['FSKRate_t',['../struct_f_s_k_rate__t.html',1,'']]] + ['fsk4client_715',['FSK4Client',['../class_f_s_k4_client.html',1,'']]], + ['fskrate_5ft_716',['FSKRate_t',['../struct_f_s_k_rate__t.html',1,'']]] ]; diff --git a/search/classes_6.js b/search/classes_6.js index adb6323c..09053207 100644 --- a/search/classes_6.js +++ b/search/classes_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['hellclient_718',['HellClient',['../class_hell_client.html',1,'']]] + ['hellclient_717',['HellClient',['../class_hell_client.html',1,'']]] ]; diff --git a/search/classes_7.js b/search/classes_7.js index 073b0824..abc659c4 100644 --- a/search/classes_7.js +++ b/search/classes_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['ita2string_719',['ITA2String',['../class_i_t_a2_string.html',1,'']]] + ['ita2string_718',['ITA2String',['../class_i_t_a2_string.html',1,'']]] ]; diff --git a/search/classes_8.js b/search/classes_8.js index 8565c79b..c938a1c2 100644 --- a/search/classes_8.js +++ b/search/classes_8.js @@ -1,27 +1,27 @@ var searchData= [ - ['llcc68_720',['LLCC68',['../class_l_l_c_c68.html',1,'']]], - ['lorarate_5ft_721',['LoRaRate_t',['../struct_lo_ra_rate__t.html',1,'']]], - ['lorawanband_5ft_722',['LoRaWANBand_t',['../struct_lo_ra_w_a_n_band__t.html',1,'']]], - ['lorawanbandnum_5ft_723',['LoRaWANBandNum_t',['../struct_lo_ra_w_a_n_band_num__t.html',1,'']]], - ['lorawanchannel_5ft_724',['LoRaWANChannel_t',['../struct_lo_ra_w_a_n_channel__t.html',1,'']]], - ['lorawanchannelspan_5ft_725',['LoRaWANChannelSpan_t',['../struct_lo_ra_w_a_n_channel_span__t.html',1,'']]], - ['lorawanevent_5ft_726',['LoRaWANEvent_t',['../struct_lo_ra_w_a_n_event__t.html',1,'']]], - ['lorawanjoinevent_5ft_727',['LoRaWANJoinEvent_t',['../struct_lo_ra_w_a_n_join_event__t.html',1,'']]], - ['lorawanmaccommand_5ft_728',['LoRaWANMacCommand_t',['../struct_lo_ra_w_a_n_mac_command__t.html',1,'']]], - ['lorawannode_729',['LoRaWANNode',['../class_lo_ra_w_a_n_node.html',1,'']]], - ['lr1110_730',['LR1110',['../class_l_r1110.html',1,'']]], - ['lr1120_731',['LR1120',['../class_l_r1120.html',1,'']]], - ['lr1121_732',['LR1121',['../class_l_r1121.html',1,'']]], - ['lr11x0_733',['LR11x0',['../class_l_r11x0.html',1,'']]], - ['lr11x0gnssalmanacstatus_5ft_734',['LR11x0GnssAlmanacStatus_t',['../struct_l_r11x0_gnss_almanac_status__t.html',1,'']]], - ['lr11x0gnssalmanacstatuspart_5ft_735',['LR11x0GnssAlmanacStatusPart_t',['../struct_l_r11x0_gnss_almanac_status_part__t.html',1,'']]], - ['lr11x0gnssposition_5ft_736',['LR11x0GnssPosition_t',['../struct_l_r11x0_gnss_position__t.html',1,'']]], - ['lr11x0gnssresult_5ft_737',['LR11x0GnssResult_t',['../struct_l_r11x0_gnss_result__t.html',1,'']]], - ['lr11x0gnsssatellite_5ft_738',['LR11x0GnssSatellite_t',['../struct_l_r11x0_gnss_satellite__t.html',1,'']]], - ['lr11x0versioninfo_5ft_739',['LR11x0VersionInfo_t',['../struct_l_r11x0_version_info__t.html',1,'']]], - ['lr11x0wifiresult_5ft_740',['LR11x0WifiResult_t',['../struct_l_r11x0_wifi_result__t.html',1,'']]], - ['lr11x0wifiresultextended_5ft_741',['LR11x0WifiResultExtended_t',['../struct_l_r11x0_wifi_result_extended__t.html',1,'']]], - ['lr11x0wifiresultfull_5ft_742',['LR11x0WifiResultFull_t',['../struct_l_r11x0_wifi_result_full__t.html',1,'']]], - ['lrfhssrate_5ft_743',['LrFhssRate_t',['../struct_lr_fhss_rate__t.html',1,'']]] + ['llcc68_719',['LLCC68',['../class_l_l_c_c68.html',1,'']]], + ['lorarate_5ft_720',['LoRaRate_t',['../struct_lo_ra_rate__t.html',1,'']]], + ['lorawanband_5ft_721',['LoRaWANBand_t',['../struct_lo_ra_w_a_n_band__t.html',1,'']]], + ['lorawanbandnum_5ft_722',['LoRaWANBandNum_t',['../struct_lo_ra_w_a_n_band_num__t.html',1,'']]], + ['lorawanchannel_5ft_723',['LoRaWANChannel_t',['../struct_lo_ra_w_a_n_channel__t.html',1,'']]], + ['lorawanchannelspan_5ft_724',['LoRaWANChannelSpan_t',['../struct_lo_ra_w_a_n_channel_span__t.html',1,'']]], + ['lorawanevent_5ft_725',['LoRaWANEvent_t',['../struct_lo_ra_w_a_n_event__t.html',1,'']]], + ['lorawanjoinevent_5ft_726',['LoRaWANJoinEvent_t',['../struct_lo_ra_w_a_n_join_event__t.html',1,'']]], + ['lorawanmaccommand_5ft_727',['LoRaWANMacCommand_t',['../struct_lo_ra_w_a_n_mac_command__t.html',1,'']]], + ['lorawannode_728',['LoRaWANNode',['../class_lo_ra_w_a_n_node.html',1,'']]], + ['lr1110_729',['LR1110',['../class_l_r1110.html',1,'']]], + ['lr1120_730',['LR1120',['../class_l_r1120.html',1,'']]], + ['lr1121_731',['LR1121',['../class_l_r1121.html',1,'']]], + ['lr11x0_732',['LR11x0',['../class_l_r11x0.html',1,'']]], + ['lr11x0gnssalmanacstatus_5ft_733',['LR11x0GnssAlmanacStatus_t',['../struct_l_r11x0_gnss_almanac_status__t.html',1,'']]], + ['lr11x0gnssalmanacstatuspart_5ft_734',['LR11x0GnssAlmanacStatusPart_t',['../struct_l_r11x0_gnss_almanac_status_part__t.html',1,'']]], + ['lr11x0gnssposition_5ft_735',['LR11x0GnssPosition_t',['../struct_l_r11x0_gnss_position__t.html',1,'']]], + ['lr11x0gnssresult_5ft_736',['LR11x0GnssResult_t',['../struct_l_r11x0_gnss_result__t.html',1,'']]], + ['lr11x0gnsssatellite_5ft_737',['LR11x0GnssSatellite_t',['../struct_l_r11x0_gnss_satellite__t.html',1,'']]], + ['lr11x0versioninfo_5ft_738',['LR11x0VersionInfo_t',['../struct_l_r11x0_version_info__t.html',1,'']]], + ['lr11x0wifiresult_5ft_739',['LR11x0WifiResult_t',['../struct_l_r11x0_wifi_result__t.html',1,'']]], + ['lr11x0wifiresultextended_5ft_740',['LR11x0WifiResultExtended_t',['../struct_l_r11x0_wifi_result_extended__t.html',1,'']]], + ['lr11x0wifiresultfull_5ft_741',['LR11x0WifiResultFull_t',['../struct_l_r11x0_wifi_result_full__t.html',1,'']]], + ['lrfhssrate_5ft_742',['LrFhssRate_t',['../struct_lr_fhss_rate__t.html',1,'']]] ]; diff --git a/search/classes_9.js b/search/classes_9.js index 0ec23c85..73ed029b 100644 --- a/search/classes_9.js +++ b/search/classes_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['module_744',['Module',['../class_module.html',1,'']]], - ['morseclient_745',['MorseClient',['../class_morse_client.html',1,'']]] + ['module_743',['Module',['../class_module.html',1,'']]], + ['morseclient_744',['MorseClient',['../class_morse_client.html',1,'']]] ]; diff --git a/search/classes_a.js b/search/classes_a.js index 75a40734..0ed7bb7d 100644 --- a/search/classes_a.js +++ b/search/classes_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['nrf24_746',['nRF24',['../classn_r_f24.html',1,'']]] + ['nrf24_745',['nRF24',['../classn_r_f24.html',1,'']]] ]; diff --git a/search/classes_b.js b/search/classes_b.js index 494304e1..f9663ba7 100644 --- a/search/classes_b.js +++ b/search/classes_b.js @@ -1,5 +1,5 @@ var searchData= [ - ['pagerclient_747',['PagerClient',['../class_pager_client.html',1,'']]], - ['physicallayer_748',['PhysicalLayer',['../class_physical_layer.html',1,'']]] + ['pagerclient_746',['PagerClient',['../class_pager_client.html',1,'']]], + ['physicallayer_747',['PhysicalLayer',['../class_physical_layer.html',1,'']]] ]; diff --git a/search/classes_c.js b/search/classes_c.js index c0799742..48ac25fc 100644 --- a/search/classes_c.js +++ b/search/classes_c.js @@ -1,19 +1,19 @@ var searchData= [ - ['radiolibaes128_749',['RadioLibAES128',['../class_radio_lib_a_e_s128.html',1,'']]], - ['radiolibbch_750',['RadioLibBCH',['../class_radio_lib_b_c_h.html',1,'']]], - ['radiolibconvcode_751',['RadioLibConvCode',['../class_radio_lib_conv_code.html',1,'']]], - ['radiolibcrc_752',['RadioLibCRC',['../class_radio_lib_c_r_c.html',1,'']]], - ['radiolibhal_753',['RadioLibHal',['../class_radio_lib_hal.html',1,'']]], - ['radiolibprint_754',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]], - ['rf69_755',['RF69',['../class_r_f69.html',1,'']]], - ['rfm22_756',['RFM22',['../class_r_f_m22.html',1,'']]], - ['rfm23_757',['RFM23',['../class_r_f_m23.html',1,'']]], - ['rfm95_758',['RFM95',['../class_r_f_m95.html',1,'']]], - ['rfm96_759',['RFM96',['../class_r_f_m96.html',1,'']]], - ['rfm97_760',['RFM97',['../class_r_f_m97.html',1,'']]], - ['rfm98_761',['RFM98',['../class_r_f_m98.html',1,'']]], - ['rfswitchmode_5ft_762',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]], - ['rssiscanconfig_5ft_763',['RSSIScanConfig_t',['../struct_r_s_s_i_scan_config__t.html',1,'']]], - ['rttyclient_764',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]] + ['radiolibaes128_748',['RadioLibAES128',['../class_radio_lib_a_e_s128.html',1,'']]], + ['radiolibbch_749',['RadioLibBCH',['../class_radio_lib_b_c_h.html',1,'']]], + ['radiolibconvcode_750',['RadioLibConvCode',['../class_radio_lib_conv_code.html',1,'']]], + ['radiolibcrc_751',['RadioLibCRC',['../class_radio_lib_c_r_c.html',1,'']]], + ['radiolibhal_752',['RadioLibHal',['../class_radio_lib_hal.html',1,'']]], + ['radiolibprint_753',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]], + ['rf69_754',['RF69',['../class_r_f69.html',1,'']]], + ['rfm22_755',['RFM22',['../class_r_f_m22.html',1,'']]], + ['rfm23_756',['RFM23',['../class_r_f_m23.html',1,'']]], + ['rfm95_757',['RFM95',['../class_r_f_m95.html',1,'']]], + ['rfm96_758',['RFM96',['../class_r_f_m96.html',1,'']]], + ['rfm97_759',['RFM97',['../class_r_f_m97.html',1,'']]], + ['rfm98_760',['RFM98',['../class_r_f_m98.html',1,'']]], + ['rfswitchmode_5ft_761',['RfSwitchMode_t',['../struct_module_1_1_rf_switch_mode__t.html',1,'Module']]], + ['rssiscanconfig_5ft_762',['RSSIScanConfig_t',['../struct_r_s_s_i_scan_config__t.html',1,'']]], + ['rttyclient_763',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]] ]; diff --git a/search/classes_d.js b/search/classes_d.js index 1be5f7c1..538c7dff 100644 --- a/search/classes_d.js +++ b/search/classes_d.js @@ -1,30 +1,30 @@ var searchData= [ - ['si4430_765',['Si4430',['../class_si4430.html',1,'']]], - ['si4431_766',['Si4431',['../class_si4431.html',1,'']]], - ['si4432_767',['Si4432',['../class_si4432.html',1,'']]], - ['si443x_768',['Si443x',['../class_si443x.html',1,'']]], - ['spiconfig_5ft_769',['SPIConfig_t',['../struct_module_1_1_s_p_i_config__t.html',1,'Module']]], - ['sstvclient_770',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]], - ['sstvmode_5ft_771',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], - ['stm32wlx_772',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'']]], - ['stm32wlx_5fmodule_773',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]], - ['stm32wlxhal_774',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]], - ['sx1231_775',['SX1231',['../class_s_x1231.html',1,'']]], - ['sx1233_776',['SX1233',['../class_s_x1233.html',1,'']]], - ['sx1261_777',['SX1261',['../class_s_x1261.html',1,'']]], - ['sx1262_778',['SX1262',['../class_s_x1262.html',1,'']]], - ['sx1268_779',['SX1268',['../class_s_x1268.html',1,'']]], - ['sx126x_780',['SX126x',['../class_s_x126x.html',1,'']]], - ['sx1272_781',['SX1272',['../class_s_x1272.html',1,'']]], - ['sx1273_782',['SX1273',['../class_s_x1273.html',1,'']]], - ['sx1276_783',['SX1276',['../class_s_x1276.html',1,'']]], - ['sx1277_784',['SX1277',['../class_s_x1277.html',1,'']]], - ['sx1278_785',['SX1278',['../class_s_x1278.html',1,'']]], - ['sx1279_786',['SX1279',['../class_s_x1279.html',1,'']]], - ['sx127x_787',['SX127x',['../class_s_x127x.html',1,'']]], - ['sx1280_788',['SX1280',['../class_s_x1280.html',1,'']]], - ['sx1281_789',['SX1281',['../class_s_x1281.html',1,'']]], - ['sx1282_790',['SX1282',['../class_s_x1282.html',1,'']]], - ['sx128x_791',['SX128x',['../class_s_x128x.html',1,'']]] + ['si4430_764',['Si4430',['../class_si4430.html',1,'']]], + ['si4431_765',['Si4431',['../class_si4431.html',1,'']]], + ['si4432_766',['Si4432',['../class_si4432.html',1,'']]], + ['si443x_767',['Si443x',['../class_si443x.html',1,'']]], + ['spiconfig_5ft_768',['SPIConfig_t',['../struct_module_1_1_s_p_i_config__t.html',1,'Module']]], + ['sstvclient_769',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]], + ['sstvmode_5ft_770',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], + ['stm32wlx_771',['STM32WLx',['../class_s_t_m32_w_lx.html',1,'']]], + ['stm32wlx_5fmodule_772',['STM32WLx_Module',['../class_s_t_m32_w_lx___module.html',1,'']]], + ['stm32wlxhal_773',['Stm32wlxHal',['../class_stm32wlx_hal.html',1,'']]], + ['sx1231_774',['SX1231',['../class_s_x1231.html',1,'']]], + ['sx1233_775',['SX1233',['../class_s_x1233.html',1,'']]], + ['sx1261_776',['SX1261',['../class_s_x1261.html',1,'']]], + ['sx1262_777',['SX1262',['../class_s_x1262.html',1,'']]], + ['sx1268_778',['SX1268',['../class_s_x1268.html',1,'']]], + ['sx126x_779',['SX126x',['../class_s_x126x.html',1,'']]], + ['sx1272_780',['SX1272',['../class_s_x1272.html',1,'']]], + ['sx1273_781',['SX1273',['../class_s_x1273.html',1,'']]], + ['sx1276_782',['SX1276',['../class_s_x1276.html',1,'']]], + ['sx1277_783',['SX1277',['../class_s_x1277.html',1,'']]], + ['sx1278_784',['SX1278',['../class_s_x1278.html',1,'']]], + ['sx1279_785',['SX1279',['../class_s_x1279.html',1,'']]], + ['sx127x_786',['SX127x',['../class_s_x127x.html',1,'']]], + ['sx1280_787',['SX1280',['../class_s_x1280.html',1,'']]], + ['sx1281_788',['SX1281',['../class_s_x1281.html',1,'']]], + ['sx1282_789',['SX1282',['../class_s_x1282.html',1,'']]], + ['sx128x_790',['SX128x',['../class_s_x128x.html',1,'']]] ]; diff --git a/search/classes_e.js b/search/classes_e.js index f18b2967..7c0aaf1f 100644 --- a/search/classes_e.js +++ b/search/classes_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['tone_5ft_792',['tone_t',['../structtone__t.html',1,'']]] + ['tone_5ft_791',['tone_t',['../structtone__t.html',1,'']]] ]; diff --git a/search/defines_0.js b/search/defines_0.js index 1345e801..8f8a8389 100644 --- a/search/defines_0.js +++ b/search/defines_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['lr11xx_5ffirmware_5fimage_5fsize_1338',['LR11XX_FIRMWARE_IMAGE_SIZE',['../lr1110__transceiver__0306_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0307_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0401_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0101_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0102.h'],['../lr1120__transceiver__0201_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1121_transceiver_0103.h'],['../lr1110__transceiver__0305_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0305.h']]], - ['lr11xx_5ffirmware_5fupdate_5fto_1339',['LR11XX_FIRMWARE_UPDATE_TO',['../lr1120__transceiver__0101_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0101.h'],['../lr1121__transceiver__0103_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0201.h'],['../lr1120__transceiver__0102_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0102.h'],['../lr1110__transceiver__0401_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0307_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0306_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0305.h']]], - ['lr11xx_5ffirmware_5fversion_1340',['LR11XX_FIRMWARE_VERSION',['../lr1110__transceiver__0305_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0305.h'],['../lr1110__transceiver__0306_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0307_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0401_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0101_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0102.h'],['../lr1120__transceiver__0201_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1121_transceiver_0103.h']]] + ['lr11xx_5ffirmware_5fimage_5fsize_1335',['LR11XX_FIRMWARE_IMAGE_SIZE',['../lr1110__transceiver__0306_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0307_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0401_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0101_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0102.h'],['../lr1120__transceiver__0201_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1121_transceiver_0103.h'],['../lr1110__transceiver__0305_8h.html#aa6490d72623bacfc624619b3c378ac5d',1,'LR11XX_FIRMWARE_IMAGE_SIZE(): lr1110_transceiver_0305.h']]], + ['lr11xx_5ffirmware_5fupdate_5fto_1336',['LR11XX_FIRMWARE_UPDATE_TO',['../lr1120__transceiver__0101_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0101.h'],['../lr1121__transceiver__0103_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0201.h'],['../lr1120__transceiver__0102_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1120_transceiver_0102.h'],['../lr1110__transceiver__0401_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0307_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0306_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#abc3d6c6ac5598d4ced54b6429770b305',1,'LR11XX_FIRMWARE_UPDATE_TO(): lr1110_transceiver_0305.h']]], + ['lr11xx_5ffirmware_5fversion_1337',['LR11XX_FIRMWARE_VERSION',['../lr1110__transceiver__0305_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0305.h'],['../lr1110__transceiver__0306_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0307_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0307.h'],['../lr1110__transceiver__0401_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1110_transceiver_0401.h'],['../lr1120__transceiver__0101_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0102.h'],['../lr1120__transceiver__0201_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1120_transceiver_0201.h'],['../lr1121__transceiver__0103_8h.html#a41b3993acc55d29c9be76a82718c2ba4',1,'LR11XX_FIRMWARE_VERSION(): lr1121_transceiver_0103.h']]] ]; diff --git a/search/enums_0.js b/search/enums_0.js index ac1efa58..729be3f4 100644 --- a/search/enums_0.js +++ b/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['opmode_5ft_1327',['OpMode_t',['../class_module.html#a5a67b3a63420d762ecba9448671c99bf',1,'Module::OpMode_t()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7',1,'LR11x0::OpMode_t()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787',1,'STM32WLx::OpMode_t()']]] + ['opmode_5ft_1324',['OpMode_t',['../class_module.html#a5a67b3a63420d762ecba9448671c99bf',1,'Module::OpMode_t()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7',1,'LR11x0::OpMode_t()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787',1,'STM32WLx::OpMode_t()']]] ]; diff --git a/search/enumvalues_0.js b/search/enumvalues_0.js index 74abae49..1318e009 100644 --- a/search/enumvalues_0.js +++ b/search/enumvalues_0.js @@ -1,13 +1,13 @@ var searchData= [ - ['mode_5fend_5fof_5ftable_1328',['MODE_END_OF_TABLE',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a2398f9003962c8dc6d199e69ba850917',1,'LR11x0::MODE_END_OF_TABLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b',1,'STM32WLx::MODE_END_OF_TABLE()'],['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa81cdd8986054c2ae5657eb5dfd536770',1,'Module::MODE_END_OF_TABLE()']]], - ['mode_5fgnss_1329',['MODE_GNSS',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a5f126b8030f06bb14b1659ccce645bad',1,'LR11x0']]], - ['mode_5fidle_1330',['MODE_IDLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa505acc66c5e0faa83d2216aca5f3e671',1,'Module::MODE_IDLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf',1,'STM32WLx::MODE_IDLE()']]], - ['mode_5frx_1331',['MODE_RX',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172',1,'STM32WLx::MODE_RX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a98f8232e13745eec261cd755c457c034',1,'LR11x0::MODE_RX()'],['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa7664838bb0818663f55b3354fec8a18f',1,'Module::MODE_RX()']]], - ['mode_5fstby_1332',['MODE_STBY',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7ab223e6d6104d722d61e1d2aa22231012',1,'LR11x0']]], - ['mode_5ftx_1333',['MODE_TX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa269f4bc8ba3eb3d8568feb7b2decf571',1,'Module::MODE_TX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a71c6230a03a213d3e19185691c6db551',1,'LR11x0::MODE_TX()']]], - ['mode_5ftx_5fhf_1334',['MODE_TX_HF',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7acbbc5768e10e22bfdf776faffbfced46',1,'LR11x0']]], - ['mode_5ftx_5fhp_1335',['MODE_TX_HP',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a005b9c110df839cd001f82f4660762fd',1,'LR11x0::MODE_TX_HP()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e',1,'STM32WLx::MODE_TX_HP()']]], - ['mode_5ftx_5flp_1336',['MODE_TX_LP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544',1,'STM32WLx']]], - ['mode_5fwifi_1337',['MODE_WIFI',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a3bee9db01eab3ac70ff178c95fe8f8ab',1,'LR11x0']]] + ['mode_5fend_5fof_5ftable_1325',['MODE_END_OF_TABLE',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a2398f9003962c8dc6d199e69ba850917',1,'LR11x0::MODE_END_OF_TABLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a0cffe238c4822ab7f8beddf4ec72052b',1,'STM32WLx::MODE_END_OF_TABLE()'],['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa81cdd8986054c2ae5657eb5dfd536770',1,'Module::MODE_END_OF_TABLE()']]], + ['mode_5fgnss_1326',['MODE_GNSS',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a5f126b8030f06bb14b1659ccce645bad',1,'LR11x0']]], + ['mode_5fidle_1327',['MODE_IDLE',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa505acc66c5e0faa83d2216aca5f3e671',1,'Module::MODE_IDLE()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a8cf0ccad0eec5fde12798e0b0347d6bf',1,'STM32WLx::MODE_IDLE()']]], + ['mode_5frx_1328',['MODE_RX',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a85ffabc9f35e2683aefdd785bf912172',1,'STM32WLx::MODE_RX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a98f8232e13745eec261cd755c457c034',1,'LR11x0::MODE_RX()'],['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa7664838bb0818663f55b3354fec8a18f',1,'Module::MODE_RX()']]], + ['mode_5fstby_1329',['MODE_STBY',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7ab223e6d6104d722d61e1d2aa22231012',1,'LR11x0']]], + ['mode_5ftx_1330',['MODE_TX',['../class_module.html#a5a67b3a63420d762ecba9448671c99bfa269f4bc8ba3eb3d8568feb7b2decf571',1,'Module::MODE_TX()'],['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a71c6230a03a213d3e19185691c6db551',1,'LR11x0::MODE_TX()']]], + ['mode_5ftx_5fhf_1331',['MODE_TX_HF',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7acbbc5768e10e22bfdf776faffbfced46',1,'LR11x0']]], + ['mode_5ftx_5fhp_1332',['MODE_TX_HP',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a005b9c110df839cd001f82f4660762fd',1,'LR11x0::MODE_TX_HP()'],['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a50df4b8580f1bded3cb61e79f954789e',1,'STM32WLx::MODE_TX_HP()']]], + ['mode_5ftx_5flp_1333',['MODE_TX_LP',['../class_s_t_m32_w_lx.html#ac8d380c3d3201015ad35594826975787a20a2eda9aaf3c7cdb4a55955d6ff3544',1,'STM32WLx']]], + ['mode_5fwifi_1334',['MODE_WIFI',['../class_l_r11x0.html#a2985d66f47882ab46291a4d89f686ca7a3bee9db01eab3ac70ff178c95fe8f8ab',1,'LR11x0']]] ]; diff --git a/search/files_0.js b/search/files_0.js index c31a0740..d000ff40 100644 --- a/search/files_0.js +++ b/search/files_0.js @@ -1,11 +1,11 @@ var searchData= [ - ['lr1110_5ftransceiver_5f0305_2eh_793',['lr1110_transceiver_0305.h',['../lr1110__transceiver__0305_8h.html',1,'']]], - ['lr1110_5ftransceiver_5f0306_2eh_794',['lr1110_transceiver_0306.h',['../lr1110__transceiver__0306_8h.html',1,'']]], - ['lr1110_5ftransceiver_5f0307_2eh_795',['lr1110_transceiver_0307.h',['../lr1110__transceiver__0307_8h.html',1,'']]], - ['lr1110_5ftransceiver_5f0401_2eh_796',['lr1110_transceiver_0401.h',['../lr1110__transceiver__0401_8h.html',1,'']]], - ['lr1120_5ftransceiver_5f0101_2eh_797',['lr1120_transceiver_0101.h',['../lr1120__transceiver__0101_8h.html',1,'']]], - ['lr1120_5ftransceiver_5f0102_2eh_798',['lr1120_transceiver_0102.h',['../lr1120__transceiver__0102_8h.html',1,'']]], - ['lr1120_5ftransceiver_5f0201_2eh_799',['lr1120_transceiver_0201.h',['../lr1120__transceiver__0201_8h.html',1,'']]], - ['lr1121_5ftransceiver_5f0103_2eh_800',['lr1121_transceiver_0103.h',['../lr1121__transceiver__0103_8h.html',1,'']]] + ['lr1110_5ftransceiver_5f0305_2eh_792',['lr1110_transceiver_0305.h',['../lr1110__transceiver__0305_8h.html',1,'']]], + ['lr1110_5ftransceiver_5f0306_2eh_793',['lr1110_transceiver_0306.h',['../lr1110__transceiver__0306_8h.html',1,'']]], + ['lr1110_5ftransceiver_5f0307_2eh_794',['lr1110_transceiver_0307.h',['../lr1110__transceiver__0307_8h.html',1,'']]], + ['lr1110_5ftransceiver_5f0401_2eh_795',['lr1110_transceiver_0401.h',['../lr1110__transceiver__0401_8h.html',1,'']]], + ['lr1120_5ftransceiver_5f0101_2eh_796',['lr1120_transceiver_0101.h',['../lr1120__transceiver__0101_8h.html',1,'']]], + ['lr1120_5ftransceiver_5f0102_2eh_797',['lr1120_transceiver_0102.h',['../lr1120__transceiver__0102_8h.html',1,'']]], + ['lr1120_5ftransceiver_5f0201_2eh_798',['lr1120_transceiver_0201.h',['../lr1120__transceiver__0201_8h.html',1,'']]], + ['lr1121_5ftransceiver_5f0103_2eh_799',['lr1121_transceiver_0103.h',['../lr1121__transceiver__0103_8h.html',1,'']]] ]; diff --git a/search/functions_0.js b/search/functions_0.js index 9c5d647d..69adcc46 100644 --- a/search/functions_0.js +++ b/search/functions_0.js @@ -1,13 +1,13 @@ var searchData= [ - ['activateabp_801',['activateABP',['../class_lo_ra_w_a_n_node.html#a77483c51548e48a5dff4b707f7770e86',1,'LoRaWANNode']]], - ['activateotaa_802',['activateOTAA',['../class_lo_ra_w_a_n_node.html#abd9e976eec64a3bd1ddf3331f2bc93cd',1,'LoRaWANNode']]], - ['afskclient_803',['AFSKClient',['../class_a_f_s_k_client.html#a89c7ab4759d37c9a032ac29fa9782eea',1,'AFSKClient::AFSKClient(PhysicalLayer *phy, uint32_t pin)'],['../class_a_f_s_k_client.html#ac54633fe75157ce126e44e4e494266f2',1,'AFSKClient::AFSKClient(AFSKClient *aud)']]], - ['aprsclient_804',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient::APRSClient(AX25Client *ax)'],['../class_a_p_r_s_client.html#afa314fad96837523df4a73cf47986f82',1,'APRSClient::APRSClient(PhysicalLayer *phy)']]], - ['attachinterrupt_805',['attachInterrupt',['../class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe',1,'RadioLibHal']]], - ['autoldro_806',['autoLDRO',['../class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e',1,'SX1278::autoLDRO()'],['../class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63',1,'SX1272::autoLDRO()'],['../class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c',1,'SX126x::autoLDRO()'],['../class_l_r11x0.html#aa9a8db401189ba0ce5117512b5db6a58',1,'LR11x0::autoLDRO()']]], - ['autosetrxbandwidth_807',['autoSetRxBandwidth',['../class_c_c1101.html#a476adec156ae39974e70ef17b9af7db3',1,'CC1101']]], - ['available_808',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]], - ['ax25client_809',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a9c9244abc270891638312745b301b791',1,'AX25Client::AX25Client(AFSKClient *aud)'],['../class_a_x25_client.html#af82e0dd3b50d58584e4e4083a53a4419',1,'AX25Client::AX25Client(const AX25Client &ax25)']]], - ['ax25frame_810',['AX25Frame',['../class_a_x25_frame.html#a138d97d90a371bef7ebd86cce1cc4979',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control)'],['../class_a_x25_frame.html#a60e1b318d6e4b9299a4eab72e40877fc',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, const char *info)'],['../class_a_x25_frame.html#a3899b8698d772b8285629d6a4f2a642a',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, uint8_t *info, uint16_t infoLen)'],['../class_a_x25_frame.html#a25b83cc9c281d2758165833fe238fe0e',1,'AX25Frame::AX25Frame(const AX25Frame &frame)']]] + ['activateabp_800',['activateABP',['../class_lo_ra_w_a_n_node.html#a77483c51548e48a5dff4b707f7770e86',1,'LoRaWANNode']]], + ['activateotaa_801',['activateOTAA',['../class_lo_ra_w_a_n_node.html#abd9e976eec64a3bd1ddf3331f2bc93cd',1,'LoRaWANNode']]], + ['afskclient_802',['AFSKClient',['../class_a_f_s_k_client.html#a89c7ab4759d37c9a032ac29fa9782eea',1,'AFSKClient::AFSKClient(PhysicalLayer *phy, uint32_t pin)'],['../class_a_f_s_k_client.html#ac54633fe75157ce126e44e4e494266f2',1,'AFSKClient::AFSKClient(AFSKClient *aud)']]], + ['aprsclient_803',['APRSClient',['../class_a_p_r_s_client.html#a08e166ed706d79c66c1d5b48f195724c',1,'APRSClient::APRSClient(AX25Client *ax)'],['../class_a_p_r_s_client.html#afa314fad96837523df4a73cf47986f82',1,'APRSClient::APRSClient(PhysicalLayer *phy)']]], + ['attachinterrupt_804',['attachInterrupt',['../class_radio_lib_hal.html#af142f747becacd1e3e13503f79fd5ebe',1,'RadioLibHal']]], + ['autoldro_805',['autoLDRO',['../class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e',1,'SX1278::autoLDRO()'],['../class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63',1,'SX1272::autoLDRO()'],['../class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c',1,'SX126x::autoLDRO()'],['../class_l_r11x0.html#aa9a8db401189ba0ce5117512b5db6a58',1,'LR11x0::autoLDRO()']]], + ['autosetrxbandwidth_806',['autoSetRxBandwidth',['../class_c_c1101.html#a476adec156ae39974e70ef17b9af7db3',1,'CC1101']]], + ['available_807',['available',['../class_pager_client.html#aec073fa9e5adcff9730482d9583715e9',1,'PagerClient::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]], + ['ax25client_808',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a9c9244abc270891638312745b301b791',1,'AX25Client::AX25Client(AFSKClient *aud)'],['../class_a_x25_client.html#af82e0dd3b50d58584e4e4083a53a4419',1,'AX25Client::AX25Client(const AX25Client &ax25)']]], + ['ax25frame_809',['AX25Frame',['../class_a_x25_frame.html#a138d97d90a371bef7ebd86cce1cc4979',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control)'],['../class_a_x25_frame.html#a60e1b318d6e4b9299a4eab72e40877fc',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, const char *info)'],['../class_a_x25_frame.html#a3899b8698d772b8285629d6a4f2a642a',1,'AX25Frame::AX25Frame(const char *destCallsign, uint8_t destSSID, const char *srcCallsign, uint8_t srcSSID, uint8_t control, uint8_t protocolID, uint8_t *info, uint16_t infoLen)'],['../class_a_x25_frame.html#a25b83cc9c281d2758165833fe238fe0e',1,'AX25Frame::AX25Frame(const AX25Frame &frame)']]] ]; diff --git a/search/functions_1.js b/search/functions_1.js index 8b137574..02376884 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -1,14 +1,14 @@ var searchData= [ - ['begin_811',['begin',['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#aeac64ca102a143624993cb7cb5b9e17c',1,'SX127x::begin()'],['../class_s_x128x.html#a275a9a86934124eab4982ad52bf91aea',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4d1468be141940a12fd3964957f79c1a',1,'APRSClient::begin()'],['../class_a_x25_client.html#aadeefb210a0b5170d4e8d281c2257e73',1,'AX25Client::begin()'],['../class_bell_client.html#add9edc89cd6ff5c527ddbdabe79cb60f',1,'BellClient::begin()'],['../class_l_l_c_c68.html#aa835ee301567f7dac079b42a2055c38c',1,'LLCC68::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_pager_client.html#a1a1dc569f9b60b0ddd6ead7af5a8244f',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ae0b25083baf01469786b6242389298fa',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a',1,'SSTVClient::begin(float base, const SSTVMode_t &mode)'],['../class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0',1,'SSTVClient::begin(const SSTVMode_t &mode)'],['../class_radio_lib_b_c_h.html#aba6f10d4ac2d40eb2222d1081a34c88b',1,'RadioLibBCH::begin()'],['../class_radio_lib_conv_code.html#af350f0a8b4d01e54e9d7eac9056c56c3',1,'RadioLibConvCode::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_c_c1101.html#ad86f23bb3d113d20f6238a671f18b565',1,'CC1101::begin()'],['../class_l_r1110.html#a7656fe337a859388247708aa143d50af',1,'LR1110::begin()'],['../class_l_r1120.html#a0393071d4403d06c665f28c49e755382',1,'LR1120::begin()'],['../class_l_r11x0.html#aa2b69f68ff6171b11a1141c8615240fd',1,'LR11x0::begin()'],['../classn_r_f24.html#a0ef68849f812367432f5a3798f94b8ce',1,'nRF24::begin()'],['../class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6',1,'RF69::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84',1,'STM32WLx::begin()'],['../class_s_x1233.html#a10fa64ee432a56b50ea6bd42868693af',1,'SX1233::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()']]], - ['beginabp_812',['beginABP',['../class_lo_ra_w_a_n_node.html#a47490d133066cb94887c11ddd0f0dfd3',1,'LoRaWANNode']]], - ['beginble_813',['beginBLE',['../class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127',1,'SX128x']]], - ['beginflrc_814',['beginFLRC',['../class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709',1,'SX128x']]], - ['beginfsk_815',['beginFSK',['../class_s_x127x.html#af8530e9d858b155eb5acb764a733bcd4',1,'SX127x::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_t_m32_w_lx.html#af12e8eba13c5dd8bcf8656ed5c1f6cef',1,'STM32WLx::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()']]], - ['begingfsk_816',['beginGFSK',['../class_l_r1110.html#afcabcd9b422581cd8a63a63373a98155',1,'LR1110::beginGFSK()'],['../class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5',1,'LR1120::beginGFSK()'],['../class_l_r11x0.html#abcc4c776d1a09bb002226ac95574766d',1,'LR11x0::beginGFSK()'],['../class_s_x128x.html#a6ed60dfbd142315bb4e1abd2555a470a',1,'SX128x::beginGFSK()']]], - ['begingnss_817',['beginGNSS',['../class_l_r11x0.html#ad7f31060cbab41ad53ee6fa7126cd17b',1,'LR11x0']]], - ['beginlrfhss_818',['beginLRFHSS',['../class_l_r1110.html#acc15335d41446254c3b9a87572080388',1,'LR1110::beginLRFHSS()'],['../class_s_x126x.html#af404471ef9d379c58b5b08757593fe6d',1,'SX126x::beginLRFHSS()'],['../class_s_x1268.html#a4f990f9e58d35cefa560c4fc767198fd',1,'SX1268::beginLRFHSS()'],['../class_s_x1262.html#aeeea8315c04afccc8cae8ec0dba2e426',1,'SX1262::beginLRFHSS()'],['../class_l_r11x0.html#a244ee48075d44c7064b454eb9c4afdb8',1,'LR11x0::beginLRFHSS()'],['../class_l_r1120.html#ad49ce378101cf0c3894297808ae27f3a',1,'LR1120::beginLRFHSS()']]], - ['beginotaa_819',['beginOTAA',['../class_lo_ra_w_a_n_node.html#ad0e9f560f592e417060262c862099e15',1,'LoRaWANNode']]], - ['bellclient_820',['BellClient',['../class_bell_client.html#a20fcf0322ef40c31b3bc329f7d89a177',1,'BellClient::BellClient(PhysicalLayer *phy, uint32_t pin)'],['../class_bell_client.html#ab9d0d76bb88fc8bdc995ab800063c149',1,'BellClient::BellClient(AFSKClient *aud)']]], - ['bytearr_821',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]] + ['begin_810',['begin',['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_s_x1277.html#ab9eda48af64532a24d04a9ae0d9c3dc3',1,'SX1277::begin()'],['../class_s_x1278.html#a867a336ae900f4a221d42b4c807122cf',1,'SX1278::begin()'],['../class_s_x1279.html#a324a37dee0522f43692cd414141becc2',1,'SX1279::begin()'],['../class_s_x127x.html#aeac64ca102a143624993cb7cb5b9e17c',1,'SX127x::begin()'],['../class_s_x128x.html#a275a9a86934124eab4982ad52bf91aea',1,'SX128x::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_p_r_s_client.html#a4d1468be141940a12fd3964957f79c1a',1,'APRSClient::begin()'],['../class_a_x25_client.html#aadeefb210a0b5170d4e8d281c2257e73',1,'AX25Client::begin()'],['../class_bell_client.html#add9edc89cd6ff5c527ddbdabe79cb60f',1,'BellClient::begin()'],['../class_l_l_c_c68.html#aa835ee301567f7dac079b42a2055c38c',1,'LLCC68::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_pager_client.html#a1a1dc569f9b60b0ddd6ead7af5a8244f',1,'PagerClient::begin()'],['../class_r_t_t_y_client.html#ae0b25083baf01469786b6242389298fa',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3769dcdebf8b1fa01eb2d8bd2bb3815a',1,'SSTVClient::begin(float base, const SSTVMode_t &mode)'],['../class_s_s_t_v_client.html#afd4257e858a88e5847854a46f166a9b0',1,'SSTVClient::begin(const SSTVMode_t &mode)'],['../class_radio_lib_b_c_h.html#aba6f10d4ac2d40eb2222d1081a34c88b',1,'RadioLibBCH::begin()'],['../class_radio_lib_conv_code.html#af350f0a8b4d01e54e9d7eac9056c56c3',1,'RadioLibConvCode::begin()'],['../class_s_x1273.html#a0fb9d6c58e3576e22e1dda4a9b4a1db2',1,'SX1273::begin()'],['../class_s_x1276.html#ac0f792c2fee6aac9b554104c5b1e5ae7',1,'SX1276::begin()'],['../class_c_c1101.html#ad86f23bb3d113d20f6238a671f18b565',1,'CC1101::begin()'],['../class_l_r1110.html#a7656fe337a859388247708aa143d50af',1,'LR1110::begin()'],['../class_l_r1120.html#a0393071d4403d06c665f28c49e755382',1,'LR1120::begin()'],['../class_l_r11x0.html#aa2b69f68ff6171b11a1141c8615240fd',1,'LR11x0::begin()'],['../classn_r_f24.html#a0ef68849f812367432f5a3798f94b8ce',1,'nRF24::begin()'],['../class_r_f69.html#a637ea5386066f5608bcbb4266e5c1bd6',1,'RF69::begin()'],['../class_si4430.html#aaed612b8936609442042d8156e085d2c',1,'Si4430::begin()'],['../class_si4431.html#a402223a49d5b1012b0bf58ce602e6ff3',1,'Si4431::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1272.html#ae7562fe74e7d97bf9cc52b5d63f608f9',1,'SX1272::begin()'],['../class_s_x126x.html#a936a40038e05740a528f2b53f8e17010',1,'SX126x::begin()'],['../class_s_x1268.html#ad9e92b39ae0fdfa47131ddf7adb92b71',1,'SX1268::begin()'],['../class_s_x1262.html#a9ceab9913d102c2fd657a1a91afaf9cc',1,'SX1262::begin()'],['../class_s_t_m32_w_lx.html#a4f2a9b5a72b5238d2014199d91094f84',1,'STM32WLx::begin()'],['../class_s_x1233.html#a10fa64ee432a56b50ea6bd42868693af',1,'SX1233::begin()'],['../class_s_x1231.html#a8aa81f8cbe61c4941ac7e3c97a6f5244',1,'SX1231::begin()'],['../class_si4432.html#a5efc3a08f91a411da011201dc128fb34',1,'Si4432::begin()']]], + ['beginabp_811',['beginABP',['../class_lo_ra_w_a_n_node.html#a47490d133066cb94887c11ddd0f0dfd3',1,'LoRaWANNode']]], + ['beginble_812',['beginBLE',['../class_s_x128x.html#ace5ede905bf85aada0c61b9cfaaea127',1,'SX128x']]], + ['beginflrc_813',['beginFLRC',['../class_s_x128x.html#a2c4a24623c5fd27b3cc937e55783d709',1,'SX128x']]], + ['beginfsk_814',['beginFSK',['../class_s_x127x.html#af8530e9d858b155eb5acb764a733bcd4',1,'SX127x::beginFSK()'],['../class_s_x1262.html#a36d2c94ff9c3b9126fde23e3c54630f1',1,'SX1262::beginFSK()'],['../class_s_x1279.html#ab5cb738ed4bf6f40e777f797af2a8b4b',1,'SX1279::beginFSK()'],['../class_s_x1278.html#a86464af008b71d12948690b780280e7d',1,'SX1278::beginFSK()'],['../class_s_x1277.html#ac4f2e93c9096e6d2552958f4bc9c1b44',1,'SX1277::beginFSK()'],['../class_s_x1272.html#a83b80377ec3b7a4a4dd663409f2f6260',1,'SX1272::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1268.html#af6b041392136b599eec57085e2067a6f',1,'SX1268::beginFSK()'],['../class_s_t_m32_w_lx.html#af12e8eba13c5dd8bcf8656ed5c1f6cef',1,'STM32WLx::beginFSK()'],['../class_s_x1276.html#ae1240a7418dce80c10bf0f7b3c807840',1,'SX1276::beginFSK()']]], + ['begingfsk_815',['beginGFSK',['../class_l_r1110.html#afcabcd9b422581cd8a63a63373a98155',1,'LR1110::beginGFSK()'],['../class_l_r1120.html#a4c6b867146f00de5c45aeb4164d51cc5',1,'LR1120::beginGFSK()'],['../class_l_r11x0.html#abcc4c776d1a09bb002226ac95574766d',1,'LR11x0::beginGFSK()'],['../class_s_x128x.html#a6ed60dfbd142315bb4e1abd2555a470a',1,'SX128x::beginGFSK()']]], + ['begingnss_816',['beginGNSS',['../class_l_r11x0.html#ad7f31060cbab41ad53ee6fa7126cd17b',1,'LR11x0']]], + ['beginlrfhss_817',['beginLRFHSS',['../class_l_r1110.html#acc15335d41446254c3b9a87572080388',1,'LR1110::beginLRFHSS()'],['../class_s_x126x.html#af404471ef9d379c58b5b08757593fe6d',1,'SX126x::beginLRFHSS()'],['../class_s_x1268.html#a4f990f9e58d35cefa560c4fc767198fd',1,'SX1268::beginLRFHSS()'],['../class_s_x1262.html#aeeea8315c04afccc8cae8ec0dba2e426',1,'SX1262::beginLRFHSS()'],['../class_l_r11x0.html#a244ee48075d44c7064b454eb9c4afdb8',1,'LR11x0::beginLRFHSS()'],['../class_l_r1120.html#ad49ce378101cf0c3894297808ae27f3a',1,'LR1120::beginLRFHSS()']]], + ['beginotaa_818',['beginOTAA',['../class_lo_ra_w_a_n_node.html#ad0e9f560f592e417060262c862099e15',1,'LoRaWANNode']]], + ['bellclient_819',['BellClient',['../class_bell_client.html#a20fcf0322ef40c31b3bc329f7d89a177',1,'BellClient::BellClient(PhysicalLayer *phy, uint32_t pin)'],['../class_bell_client.html#ab9d0d76bb88fc8bdc995ab800063c149',1,'BellClient::BellClient(AFSKClient *aud)']]], + ['bytearr_820',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]] ]; diff --git a/search/functions_10.js b/search/functions_10.js index 7403ee60..d5dc7be3 100644 --- a/search/functions_10.js +++ b/search/functions_10.js @@ -1,9 +1,9 @@ var searchData= [ - ['term_1132',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()'],['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()']]], - ['timeuntiluplink_1133',['timeUntilUplink',['../class_lo_ra_w_a_n_node.html#a49e690c14858b46692e4ce9aa5a2566a',1,'LoRaWANNode']]], - ['tone_1134',['tone',['../class_radio_lib_hal.html#a62c9032e834ba420d81dc3e69df64e17',1,'RadioLibHal::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], - ['transmit_1135',['transmit',['../class_l_r11x0.html#a492b2d057dd803c3884fa1adc8e22534',1,'LR11x0::transmit()'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit()'],['../class_l_r11x0.html#ada508497ee2e70170da3afe078e2fe0e',1,'LR11x0::transmit()'],['../classn_r_f24.html#ada508497ee2e70170da3afe078e2fe0e',1,'nRF24::transmit()'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#ada508497ee2e70170da3afe078e2fe0e',1,'RF69::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ada508497ee2e70170da3afe078e2fe0e',1,'Si443x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX126x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX127x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX128x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#a5086eb8a27aa842e94d1df54f385c39b',1,'CC1101::transmit(const uint8_t *data, size_t len, uint8_t addr=0) override'],['../class_l_r11x0.html#a21e865665318dece7d95336a275dd973',1,'LR11x0::transmit()'],['../classn_r_f24.html#af7c4cf05b992d8a97331b9888e95fc2f',1,'nRF24::transmit()'],['../class_r_f69.html#a8d68f041b20ed765f2ff2fbdff06171f',1,'RF69::transmit()'],['../class_si443x.html#a379fb39c9ab79aa67601c84736b1fec4',1,'Si443x::transmit()'],['../class_s_x126x.html#a5fa48e147ee54e1b0fc4d28ef5247180',1,'SX126x::transmit()'],['../class_s_x127x.html#a75cb0d8810a5ce025d3bf5b51ca263d6',1,'SX127x::transmit()'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_pager_client.html#adbab4e162a5719bd4407a42a85d26ff6',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD, uint8_t function=RADIOLIB_PAGER_FUNC_AUTO)'],['../class_pager_client.html#aa9df7f8675170affc5256a896168601b',1,'PagerClient::transmit(uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD, uint8_t function=RADIOLIB_PAGER_FUNC_AUTO)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#ada508497ee2e70170da3afe078e2fe0e',1,'PhysicalLayer::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#ada508497ee2e70170da3afe078e2fe0e',1,'CC1101::transmit()'],['../class_s_x128x.html#a45f4ac293d869a35ad737032efa8e884',1,'SX128x::transmit()']]], - ['transmitdirect_1136',['transmitDirect',['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65',1,'PhysicalLayer::transmitDirect()'],['../class_external_radio.html#a25be77aea48cfbdcae05ed32b660daef',1,'ExternalRadio::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_l_r11x0.html#ae077957969f6274a53f63b314b6f1359',1,'LR11x0::transmitDirect()'],['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect(uint32_t frf=0) override']]], - ['transmitdirectasync_1137',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]] + ['term_1129',['term',['../class_module.html#a45bd514a1f2859d9a867c8f9b13eb332',1,'Module::term()'],['../class_radio_lib_hal.html#aa4f2bd49aea5a19aa9f85c720b4a883e',1,'RadioLibHal::term()']]], + ['timeuntiluplink_1130',['timeUntilUplink',['../class_lo_ra_w_a_n_node.html#a49e690c14858b46692e4ce9aa5a2566a',1,'LoRaWANNode']]], + ['tone_1131',['tone',['../class_radio_lib_hal.html#a62c9032e834ba420d81dc3e69df64e17',1,'RadioLibHal::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], + ['transmit_1132',['transmit',['../class_l_r11x0.html#a492b2d057dd803c3884fa1adc8e22534',1,'LR11x0::transmit()'],['../classn_r_f24.html#a492b2d057dd803c3884fa1adc8e22534',1,'nRF24::transmit()'],['../class_l_r11x0.html#ada508497ee2e70170da3afe078e2fe0e',1,'LR11x0::transmit()'],['../classn_r_f24.html#ada508497ee2e70170da3afe078e2fe0e',1,'nRF24::transmit()'],['../class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534',1,'RF69::transmit(const char *str, uint8_t addr=0)'],['../class_r_f69.html#ada508497ee2e70170da3afe078e2fe0e',1,'RF69::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a492b2d057dd803c3884fa1adc8e22534',1,'Si443x::transmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#ada508497ee2e70170da3afe078e2fe0e',1,'Si443x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX126x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX126x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX127x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX127x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a492b2d057dd803c3884fa1adc8e22534',1,'SX128x::transmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#ada508497ee2e70170da3afe078e2fe0e',1,'SX128x::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534',1,'CC1101::transmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#a5086eb8a27aa842e94d1df54f385c39b',1,'CC1101::transmit(const uint8_t *data, size_t len, uint8_t addr=0) override'],['../class_l_r11x0.html#a21e865665318dece7d95336a275dd973',1,'LR11x0::transmit()'],['../classn_r_f24.html#af7c4cf05b992d8a97331b9888e95fc2f',1,'nRF24::transmit()'],['../class_r_f69.html#a8d68f041b20ed765f2ff2fbdff06171f',1,'RF69::transmit()'],['../class_si443x.html#a379fb39c9ab79aa67601c84736b1fec4',1,'Si443x::transmit()'],['../class_s_x126x.html#a5fa48e147ee54e1b0fc4d28ef5247180',1,'SX126x::transmit()'],['../class_s_x127x.html#a75cb0d8810a5ce025d3bf5b51ca263d6',1,'SX127x::transmit()'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_pager_client.html#adbab4e162a5719bd4407a42a85d26ff6',1,'PagerClient::transmit(const char *str, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD, uint8_t function=RADIOLIB_PAGER_FUNC_AUTO)'],['../class_pager_client.html#aa9df7f8675170affc5256a896168601b',1,'PagerClient::transmit(uint8_t *data, size_t len, uint32_t addr, uint8_t encoding=RADIOLIB_PAGER_BCD, uint8_t function=RADIOLIB_PAGER_FUNC_AUTO)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#ada508497ee2e70170da3afe078e2fe0e',1,'PhysicalLayer::transmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#ada508497ee2e70170da3afe078e2fe0e',1,'CC1101::transmit()'],['../class_s_x128x.html#a45f4ac293d869a35ad737032efa8e884',1,'SX128x::transmit()']]], + ['transmitdirect_1133',['transmitDirect',['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_physical_layer.html#aa4c99ac794ee653c2061be4201724b65',1,'PhysicalLayer::transmitDirect()'],['../class_external_radio.html#a25be77aea48cfbdcae05ed32b660daef',1,'ExternalRadio::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_l_r11x0.html#ae077957969f6274a53f63b314b6f1359',1,'LR11x0::transmitDirect()'],['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect(uint32_t frf=0) override']]], + ['transmitdirectasync_1134',['transmitDirectAsync',['../class_c_c1101.html#aef7c152858537a40e71cf133962cb893',1,'CC1101']]] ]; diff --git a/search/functions_11.js b/search/functions_11.js index 639805f4..09266353 100644 --- a/search/functions_11.js +++ b/search/functions_11.js @@ -1,6 +1,6 @@ var searchData= [ - ['updatefirmware_1138',['updateFirmware',['../class_l_r11x0.html#ab2820cc2b740d6d42a079bbd8bd45b85',1,'LR11x0']]], - ['updategnssalmanac_1139',['updateGnssAlmanac',['../class_l_r11x0.html#a96aa9566399e46fc03f2b73b44058e3f',1,'LR11x0']]], - ['uploadpatch_1140',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]] + ['updatefirmware_1135',['updateFirmware',['../class_l_r11x0.html#ab2820cc2b740d6d42a079bbd8bd45b85',1,'LR11x0']]], + ['updategnssalmanac_1136',['updateGnssAlmanac',['../class_l_r11x0.html#a96aa9566399e46fc03f2b73b44058e3f',1,'LR11x0']]], + ['uploadpatch_1137',['uploadPatch',['../class_s_x126x.html#a2af78b744b3e61d3857bed93c3b1bde1',1,'SX126x']]] ]; diff --git a/search/functions_12.js b/search/functions_12.js index 52b47786..0050c097 100644 --- a/search/functions_12.js +++ b/search/functions_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['variablepacketlengthmode_1141',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_l_r11x0.html#adcd56cf63e91449b6cd03782a69c3451',1,'LR11x0::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]], - ['verifycmac_1142',['verifyCMAC',['../class_radio_lib_a_e_s128.html#a235daad00bd77a406d7fc187bcb2192e',1,'RadioLibAES128']]] + ['variablepacketlengthmode_1138',['variablePacketLengthMode',['../class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f',1,'CC1101::variablePacketLengthMode()'],['../class_l_r11x0.html#adcd56cf63e91449b6cd03782a69c3451',1,'LR11x0::variablePacketLengthMode()'],['../class_r_f69.html#af434c67aabe02258ee6696a59973617b',1,'RF69::variablePacketLengthMode()'],['../class_si443x.html#abcca8ab4a1229efb5e7c6b09e564a48a',1,'Si443x::variablePacketLengthMode()'],['../class_s_x126x.html#a92c157efe751b4ae73d22ff44115285d',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a1d39296b40e7282ef44d8f376065e92c',1,'SX127x::variablePacketLengthMode()']]], + ['verifycmac_1139',['verifyCMAC',['../class_radio_lib_a_e_s128.html#a235daad00bd77a406d7fc187bcb2192e',1,'RadioLibAES128']]] ]; diff --git a/search/functions_13.js b/search/functions_13.js index 87810369..7ab22828 100644 --- a/search/functions_13.js +++ b/search/functions_13.js @@ -1,6 +1,6 @@ var searchData= [ - ['waitformicroseconds_1143',['waitForMicroseconds',['../class_module.html#a7df4c687249c07af2594a5f7ad0a946f',1,'Module']]], - ['wifiscan_1144',['wifiScan',['../class_l_r11x0.html#ade5478296ebc7e02281c95609d5d75ab',1,'LR11x0']]], - ['write_1145',['write',['../class_bell_client.html#a69bd78bf3be2724b4f34c80c2bd3a6df',1,'BellClient::write()'],['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)'],['../class_hell_client.html#af557774ad72c24a94faff8c2be30f0d1',1,'HellClient::write()'],['../class_morse_client.html#a4a9cf8bf1a8bd270417a1a9fca660ef1',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a23220f58b7bda1f24b6343875561586a',1,'RTTYClient::write()']]] + ['waitformicroseconds_1140',['waitForMicroseconds',['../class_module.html#a7df4c687249c07af2594a5f7ad0a946f',1,'Module']]], + ['wifiscan_1141',['wifiScan',['../class_l_r11x0.html#ade5478296ebc7e02281c95609d5d75ab',1,'LR11x0']]], + ['write_1142',['write',['../class_bell_client.html#a69bd78bf3be2724b4f34c80c2bd3a6df',1,'BellClient::write()'],['../class_f_s_k4_client.html#aa59fb42d3eeafe5ab3f0437ef5567ec2',1,'FSK4Client::write(uint8_t *buff, size_t len)'],['../class_f_s_k4_client.html#a31218736d4f9a3412ee9009a4c4f5a22',1,'FSK4Client::write(uint8_t b)'],['../class_hell_client.html#af557774ad72c24a94faff8c2be30f0d1',1,'HellClient::write()'],['../class_morse_client.html#a4a9cf8bf1a8bd270417a1a9fca660ef1',1,'MorseClient::write()'],['../class_r_t_t_y_client.html#a23220f58b7bda1f24b6343875561586a',1,'RTTYClient::write()']]] ]; diff --git a/search/functions_14.js b/search/functions_14.js index 930f3e85..2d95221e 100644 --- a/search/functions_14.js +++ b/search/functions_14.js @@ -1,4 +1,4 @@ var searchData= [ - ['yield_1146',['yield',['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal']]] + ['yield_1143',['yield',['../class_radio_lib_hal.html#a1bd9d614f66b374ec820ce31b167fdb2',1,'RadioLibHal']]] ]; diff --git a/search/functions_15.js b/search/functions_15.js index 960197bc..5e68eba9 100644 --- a/search/functions_15.js +++ b/search/functions_15.js @@ -1,7 +1,7 @@ var searchData= [ - ['_7eax25frame_1147',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], - ['_7eexternalradio_1148',['~ExternalRadio',['../class_external_radio.html#a46f76689b07d29a626faf917ad264ad0',1,'ExternalRadio']]], - ['_7eita2string_1149',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]], - ['_7eradiolibbch_1150',['~RadioLibBCH',['../class_radio_lib_b_c_h.html#ac4ceca6f132ff2047e2ca13d8d00a9e5',1,'RadioLibBCH']]] + ['_7eax25frame_1144',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], + ['_7eexternalradio_1145',['~ExternalRadio',['../class_external_radio.html#a46f76689b07d29a626faf917ad264ad0',1,'ExternalRadio']]], + ['_7eita2string_1146',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]], + ['_7eradiolibbch_1147',['~RadioLibBCH',['../class_radio_lib_b_c_h.html#ac4ceca6f132ff2047e2ca13d8d00a9e5',1,'RadioLibBCH']]] ]; diff --git a/search/functions_2.js b/search/functions_2.js index e600b34c..5c70427a 100644 --- a/search/functions_2.js +++ b/search/functions_2.js @@ -1,25 +1,25 @@ var searchData= [ - ['calculaterxtimeout_822',['calculateRxTimeout',['../class_s_x126x.html#a19f3c26d7a7959e302fc8174fc88a6d4',1,'SX126x::calculateRxTimeout()'],['../class_l_r11x0.html#a260c7f4ee4739e532ddb465a276205d3',1,'LR11x0::calculateRxTimeout()'],['../class_physical_layer.html#a7f8d12a90158864a8ebc471b0ec89dc9',1,'PhysicalLayer::calculateRxTimeout()'],['../class_s_x127x.html#adbc4021380dc557114625dc51262cf90',1,'SX127x::calculateRxTimeout()']]], - ['calibrateimagerejection_823',['calibrateImageRejection',['../class_s_x126x.html#aa3c90f19cd141738ff013ae72f78f1bb',1,'SX126x']]], - ['cc1101_824',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]], - ['checkdatarate_825',['checkDataRate',['../class_physical_layer.html#a58d54eeb40fb586013ba48e15318abba',1,'PhysicalLayer::checkDataRate()'],['../class_s_x1278.html#a7f238fd38f436d9e86aa92a387d48467',1,'SX1278::checkDataRate()'],['../class_s_x1277.html#aef5d9e27edc2173d1b4cc1cb0d9733bc',1,'SX1277::checkDataRate()'],['../class_s_x1273.html#a5eae1e82596f3a6c4c926c381c2737a7',1,'SX1273::checkDataRate()'],['../class_s_x1272.html#a2a36487740f15731c6e508428e4b11f0',1,'SX1272::checkDataRate()'],['../class_s_x126x.html#a75c8d32cee712e0c940163446b98e587',1,'SX126x::checkDataRate()'],['../class_l_r11x0.html#a4d18ad719be79c083f2b0ce77bbaa448',1,'LR11x0::checkDataRate()'],['../class_l_l_c_c68.html#a708183645ec0b9fec54d6369e7b1345f',1,'LLCC68::checkDataRate()']]], - ['checkirq_826',['checkIrq',['../class_physical_layer.html#a2c7dd4704e3df353265010710bd26e83',1,'PhysicalLayer']]], - ['checkoutputpower_827',['checkOutputPower',['../class_s_x1261.html#ae8e9968a9ee1c2199ed9f968d8f4e3b1',1,'SX1261::checkOutputPower()'],['../class_physical_layer.html#a1784cb227d04b3f2846625fda6797536',1,'PhysicalLayer::checkOutputPower()'],['../class_s_x128x.html#a5e876e02fd527390905004718225c25f',1,'SX128x::checkOutputPower()'],['../class_s_x1278.html#ac6146c2a3d0a35662312165325fd97f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1278.html#aac7b585c4a616a1cd6f89a8b46a7d9f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1272.html#a1e39e8e3b228ca9a805f41a9bbf86c64',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1272.html#a2510072152c936d9f62557f46a4248d0',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1268.html#ae1b1f56336fcef9ce31d9408fbbbfe3c',1,'SX1268::checkOutputPower()'],['../class_s_x1262.html#a33c304c19634a905c7318d9ca88f4e93',1,'SX1262::checkOutputPower()'],['../class_l_r1120.html#a369b667c81e1ec724148b401c5aad79d',1,'LR1120::checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)'],['../class_l_r1120.html#acf6ea475643c6eba63133641a8681a8f',1,'LR1120::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_l_r1110.html#ae084d4503b2abcdc508edef40b0cadb3',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)'],['../class_l_r1110.html#af1f6dddd12805fdecb55ef5703d23ef1',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_c_c1101.html#aa86c74ed4339b70be6950e9f92be1d81',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped, uint8_t *raw)'],['../class_c_c1101.html#ab500e75fcf63f123eb3945925f361bd0',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped) override']]], - ['checksum_828',['checksum',['../class_radio_lib_c_r_c.html#a92328d778fe59c046c6e74296eb5fb23',1,'RadioLibCRC']]], - ['clearchannelscanaction_829',['clearChannelScanAction',['../class_s_t_m32_w_lx.html#a366a83d5f5ed02859717a83c21768378',1,'STM32WLx::clearChannelScanAction()'],['../class_s_x126x.html#a37dab0ab3c4cab82e367971fc31588a6',1,'SX126x::clearChannelScanAction()'],['../class_s_x127x.html#a0ce9beca21406e3556b3518370947ee2',1,'SX127x::clearChannelScanAction()'],['../class_physical_layer.html#a169a4d04c5c50d3336e274d70930d9f6',1,'PhysicalLayer::clearChannelScanAction()']]], - ['cleardio0action_830',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]], - ['cleardio1action_831',['clearDio1Action',['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_t_m32_w_lx.html#a54130403f6afbb0924da17c28afb17fc',1,'STM32WLx::clearDio1Action()'],['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()']]], - ['clearfhssint_832',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]], - ['clearfifoemptyaction_833',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]], - ['clearfifofullaction_834',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]], - ['cleargdo0action_835',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], - ['cleargdo2action_836',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], - ['clearirq_837',['clearIrq',['../class_physical_layer.html#af9a7e739e39705a72ffa8b63ec09bb15',1,'PhysicalLayer']]], - ['clearirqaction_838',['clearIrqAction',['../classn_r_f24.html#aaf5887fe58c4d542cbed80482de1d42d',1,'nRF24::clearIrqAction()'],['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x::clearIrqAction()'],['../class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98',1,'LR11x0::clearIrqAction()']]], - ['clearirqflags_839',['clearIrqFlags',['../class_l_r11x0.html#aa524b0be7b8d125c24319072d6178e74',1,'LR11x0::clearIrqFlags()'],['../class_s_x126x.html#ab4c29619a38391805a11231c67424847',1,'SX126x::clearIrqFlags()'],['../class_s_x127x.html#aa3eae13a7f0558c1bc881abebd958242',1,'SX127x::clearIrqFlags()'],['../class_s_x128x.html#afb95ca5f2c8494042fbbe52802fc265d',1,'SX128x::clearIrqFlags()'],['../class_physical_layer.html#ac282bb78da4f4da4661dce191cbd6d87',1,'PhysicalLayer::clearIrqFlags()']]], - ['clearpacketreceivedaction_840',['clearPacketReceivedAction',['../class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3',1,'LR11x0::clearPacketReceivedAction()'],['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#ac79047a072a038194f3429a913e7aaee',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a6cbc4c256d37f9cdabf9e5f2ef16aa92',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2',1,'SX126x::clearPacketReceivedAction()'],['../class_si443x.html#ae8e1a9a70407d80d660496baa560c5ca',1,'Si443x::clearPacketReceivedAction()'],['../class_r_f69.html#a31390763956a50182b0b5b8a7e5ff4e3',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a52c097dc0078fc4e8707c095378aff3d',1,'nRF24::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aad377b018cf65ceb6b23cac523ba96b4',1,'STM32WLx::clearPacketReceivedAction()']]], - ['clearpacketsentaction_841',['clearPacketSentAction',['../class_r_f69.html#ac4ada0c4243b092ffb4c9812519fe947',1,'RF69::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()'],['../class_s_x128x.html#ab2335d91c7899291312e3cd6576446e5',1,'SX128x::clearPacketSentAction()'],['../class_s_x127x.html#a2ec32a52b13752d75f3076a5868c312d',1,'SX127x::clearPacketSentAction()'],['../class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913',1,'SX126x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#ac11d53d29bf5a845e3797ba6bb875930',1,'STM32WLx::clearPacketSentAction()'],['../class_si443x.html#a4fdc84341b1ec602f89ad00c7ca20f26',1,'Si443x::clearPacketSentAction()'],['../classn_r_f24.html#a41499cf2c1a6c83a04ff89dd59e3fa56',1,'nRF24::clearPacketSentAction()'],['../class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa',1,'LR11x0::clearPacketSentAction()'],['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()']]], - ['clearsession_842',['clearSession',['../class_lo_ra_w_a_n_node.html#a0feeaed200d8f94ad94c3ed49f404847',1,'LoRaWANNode']]], - ['clearwifiscanaction_843',['clearWiFiScanAction',['../class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60',1,'LR11x0']]] + ['calculaterxtimeout_821',['calculateRxTimeout',['../class_s_x126x.html#a19f3c26d7a7959e302fc8174fc88a6d4',1,'SX126x::calculateRxTimeout()'],['../class_l_r11x0.html#a260c7f4ee4739e532ddb465a276205d3',1,'LR11x0::calculateRxTimeout()'],['../class_physical_layer.html#a7f8d12a90158864a8ebc471b0ec89dc9',1,'PhysicalLayer::calculateRxTimeout()'],['../class_s_x127x.html#adbc4021380dc557114625dc51262cf90',1,'SX127x::calculateRxTimeout()']]], + ['calibrateimagerejection_822',['calibrateImageRejection',['../class_s_x126x.html#aa3c90f19cd141738ff013ae72f78f1bb',1,'SX126x']]], + ['cc1101_823',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]], + ['checkdatarate_824',['checkDataRate',['../class_physical_layer.html#a58d54eeb40fb586013ba48e15318abba',1,'PhysicalLayer::checkDataRate()'],['../class_s_x1278.html#a7f238fd38f436d9e86aa92a387d48467',1,'SX1278::checkDataRate()'],['../class_s_x1277.html#aef5d9e27edc2173d1b4cc1cb0d9733bc',1,'SX1277::checkDataRate()'],['../class_s_x1273.html#a5eae1e82596f3a6c4c926c381c2737a7',1,'SX1273::checkDataRate()'],['../class_s_x1272.html#a2a36487740f15731c6e508428e4b11f0',1,'SX1272::checkDataRate()'],['../class_s_x126x.html#a75c8d32cee712e0c940163446b98e587',1,'SX126x::checkDataRate()'],['../class_l_r11x0.html#a4d18ad719be79c083f2b0ce77bbaa448',1,'LR11x0::checkDataRate()'],['../class_l_l_c_c68.html#a708183645ec0b9fec54d6369e7b1345f',1,'LLCC68::checkDataRate()']]], + ['checkirq_825',['checkIrq',['../class_physical_layer.html#a2c7dd4704e3df353265010710bd26e83',1,'PhysicalLayer']]], + ['checkoutputpower_826',['checkOutputPower',['../class_s_x1261.html#ae8e9968a9ee1c2199ed9f968d8f4e3b1',1,'SX1261::checkOutputPower()'],['../class_physical_layer.html#a1784cb227d04b3f2846625fda6797536',1,'PhysicalLayer::checkOutputPower()'],['../class_s_x128x.html#a5e876e02fd527390905004718225c25f',1,'SX128x::checkOutputPower()'],['../class_s_x1278.html#ac6146c2a3d0a35662312165325fd97f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1278.html#aac7b585c4a616a1cd6f89a8b46a7d9f8',1,'SX1278::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1272.html#a1e39e8e3b228ca9a805f41a9bbf86c64',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped, bool useRfo)'],['../class_s_x1272.html#a2510072152c936d9f62557f46a4248d0',1,'SX1272::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_s_x1268.html#ae1b1f56336fcef9ce31d9408fbbbfe3c',1,'SX1268::checkOutputPower()'],['../class_s_x1262.html#a33c304c19634a905c7318d9ca88f4e93',1,'SX1262::checkOutputPower()'],['../class_l_r1120.html#a369b667c81e1ec724148b401c5aad79d',1,'LR1120::checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)'],['../class_l_r1120.html#acf6ea475643c6eba63133641a8681a8f',1,'LR1120::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_l_r1110.html#ae084d4503b2abcdc508edef40b0cadb3',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped, bool forceHighPower)'],['../class_l_r1110.html#af1f6dddd12805fdecb55ef5703d23ef1',1,'LR1110::checkOutputPower(int8_t power, int8_t *clipped) override'],['../class_c_c1101.html#aa86c74ed4339b70be6950e9f92be1d81',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped, uint8_t *raw)'],['../class_c_c1101.html#ab500e75fcf63f123eb3945925f361bd0',1,'CC1101::checkOutputPower(int8_t power, int8_t *clipped) override']]], + ['checksum_827',['checksum',['../class_radio_lib_c_r_c.html#a92328d778fe59c046c6e74296eb5fb23',1,'RadioLibCRC']]], + ['clearchannelscanaction_828',['clearChannelScanAction',['../class_s_t_m32_w_lx.html#a366a83d5f5ed02859717a83c21768378',1,'STM32WLx::clearChannelScanAction()'],['../class_s_x126x.html#a37dab0ab3c4cab82e367971fc31588a6',1,'SX126x::clearChannelScanAction()'],['../class_s_x127x.html#a0ce9beca21406e3556b3518370947ee2',1,'SX127x::clearChannelScanAction()'],['../class_physical_layer.html#a169a4d04c5c50d3336e274d70930d9f6',1,'PhysicalLayer::clearChannelScanAction()']]], + ['cleardio0action_829',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]], + ['cleardio1action_830',['clearDio1Action',['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_t_m32_w_lx.html#a54130403f6afbb0924da17c28afb17fc',1,'STM32WLx::clearDio1Action()'],['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()']]], + ['clearfhssint_831',['clearFHSSInt',['../class_s_x127x.html#a41089d9e5b45217d3e31ac22b5326b66',1,'SX127x']]], + ['clearfifoemptyaction_832',['clearFifoEmptyAction',['../class_r_f69.html#a0d7b67499462777f7909860405ca6b62',1,'RF69::clearFifoEmptyAction()'],['../class_s_x127x.html#aaa6eb4363badc1c3450ad7a4d11af4b1',1,'SX127x::clearFifoEmptyAction()']]], + ['clearfifofullaction_833',['clearFifoFullAction',['../class_r_f69.html#ae9accbe3e66f24d5158891a96fb582f3',1,'RF69::clearFifoFullAction()'],['../class_s_x127x.html#a0f041e91ab2fbb6f05eef56b5addac71',1,'SX127x::clearFifoFullAction()']]], + ['cleargdo0action_834',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], + ['cleargdo2action_835',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], + ['clearirq_836',['clearIrq',['../class_physical_layer.html#af9a7e739e39705a72ffa8b63ec09bb15',1,'PhysicalLayer']]], + ['clearirqaction_837',['clearIrqAction',['../classn_r_f24.html#aaf5887fe58c4d542cbed80482de1d42d',1,'nRF24::clearIrqAction()'],['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x::clearIrqAction()'],['../class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98',1,'LR11x0::clearIrqAction()']]], + ['clearirqflags_838',['clearIrqFlags',['../class_l_r11x0.html#aa524b0be7b8d125c24319072d6178e74',1,'LR11x0::clearIrqFlags()'],['../class_s_x126x.html#ab4c29619a38391805a11231c67424847',1,'SX126x::clearIrqFlags()'],['../class_s_x127x.html#aa3eae13a7f0558c1bc881abebd958242',1,'SX127x::clearIrqFlags()'],['../class_s_x128x.html#afb95ca5f2c8494042fbbe52802fc265d',1,'SX128x::clearIrqFlags()'],['../class_physical_layer.html#ac282bb78da4f4da4661dce191cbd6d87',1,'PhysicalLayer::clearIrqFlags()']]], + ['clearpacketreceivedaction_839',['clearPacketReceivedAction',['../class_l_r11x0.html#a96e4a220bbd3487423acfd217b479fe3',1,'LR11x0::clearPacketReceivedAction()'],['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#ac79047a072a038194f3429a913e7aaee',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a6cbc4c256d37f9cdabf9e5f2ef16aa92',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#a56f88f6a2b88ae6dbd3ad04b1950e7b2',1,'SX126x::clearPacketReceivedAction()'],['../class_si443x.html#ae8e1a9a70407d80d660496baa560c5ca',1,'Si443x::clearPacketReceivedAction()'],['../class_r_f69.html#a31390763956a50182b0b5b8a7e5ff4e3',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a52c097dc0078fc4e8707c095378aff3d',1,'nRF24::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aad377b018cf65ceb6b23cac523ba96b4',1,'STM32WLx::clearPacketReceivedAction()']]], + ['clearpacketsentaction_840',['clearPacketSentAction',['../class_r_f69.html#ac4ada0c4243b092ffb4c9812519fe947',1,'RF69::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()'],['../class_s_x128x.html#ab2335d91c7899291312e3cd6576446e5',1,'SX128x::clearPacketSentAction()'],['../class_s_x127x.html#a2ec32a52b13752d75f3076a5868c312d',1,'SX127x::clearPacketSentAction()'],['../class_s_x126x.html#af38ba3d27ab2ac10c703eefa1c428913',1,'SX126x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#ac11d53d29bf5a845e3797ba6bb875930',1,'STM32WLx::clearPacketSentAction()'],['../class_si443x.html#a4fdc84341b1ec602f89ad00c7ca20f26',1,'Si443x::clearPacketSentAction()'],['../classn_r_f24.html#a41499cf2c1a6c83a04ff89dd59e3fa56',1,'nRF24::clearPacketSentAction()'],['../class_l_r11x0.html#a95ddec84ae2fb19989c333d42d4dc5fa',1,'LR11x0::clearPacketSentAction()'],['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()']]], + ['clearsession_841',['clearSession',['../class_lo_ra_w_a_n_node.html#a0feeaed200d8f94ad94c3ed49f404847',1,'LoRaWANNode']]], + ['clearwifiscanaction_842',['clearWiFiScanAction',['../class_l_r11x0.html#ad5876b44020a0bd59f73186a912dbb60',1,'LR11x0']]] ]; diff --git a/search/functions_3.js b/search/functions_3.js index c1e8107b..db5f759d 100644 --- a/search/functions_3.js +++ b/search/functions_3.js @@ -1,18 +1,18 @@ var searchData= [ - ['decode_844',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]], - ['decryptecb_845',['decryptECB',['../class_radio_lib_a_e_s128.html#abe0e368c6a94b2caf1559add1c262a98',1,'RadioLibAES128']]], - ['delay_846',['delay',['../class_radio_lib_hal.html#aa2de4fcafad28470f7d46073fa29da79',1,'RadioLibHal']]], - ['delaymicroseconds_847',['delayMicroseconds',['../class_radio_lib_hal.html#ab93dc492291dfe6fc0dd763bee966161',1,'RadioLibHal']]], - ['detachinterrupt_848',['detachInterrupt',['../class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56',1,'RadioLibHal']]], - ['digitalread_849',['digitalRead',['../class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2',1,'RadioLibHal::digitalRead()'],['../class_stm32wlx_hal.html#a7fc8af77a85f8f002c7dc6476efa0ad4',1,'Stm32wlxHal::digitalRead()']]], - ['digitalwrite_850',['digitalWrite',['../class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab',1,'RadioLibHal::digitalWrite()'],['../class_stm32wlx_hal.html#acb925afdee4979936ef83a422d13e642',1,'Stm32wlxHal::digitalWrite()']]], - ['disableaddressfiltering_851',['disableAddressFiltering',['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()'],['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_l_r11x0.html#ae565dc2423ca7df13bf7ae48cce9ac8b',1,'LR11x0::disableAddressFiltering()'],['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()']]], - ['disableaes_852',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]], - ['disablebitsync_853',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]], - ['disablecontinuousmodebitsync_854',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]], - ['disablepipe_855',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], - ['disablesyncwordfiltering_856',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]], - ['dropsync_857',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]], - ['dutycycleinterval_858',['dutyCycleInterval',['../class_lo_ra_w_a_n_node.html#a5bb50904544f331806fd744ab5b99efa',1,'LoRaWANNode']]] + ['decode_843',['decode',['../class_morse_client.html#abd1515c8e6c3ddade280be53f612ece7',1,'MorseClient']]], + ['decryptecb_844',['decryptECB',['../class_radio_lib_a_e_s128.html#abe0e368c6a94b2caf1559add1c262a98',1,'RadioLibAES128']]], + ['delay_845',['delay',['../class_radio_lib_hal.html#aa2de4fcafad28470f7d46073fa29da79',1,'RadioLibHal']]], + ['delaymicroseconds_846',['delayMicroseconds',['../class_radio_lib_hal.html#ab93dc492291dfe6fc0dd763bee966161',1,'RadioLibHal']]], + ['detachinterrupt_847',['detachInterrupt',['../class_radio_lib_hal.html#a2ddf72a41b3cfbb63ea7ab5362003b56',1,'RadioLibHal']]], + ['digitalread_848',['digitalRead',['../class_radio_lib_hal.html#a0c7c2dffd662cefca7bf11e14c56dab2',1,'RadioLibHal::digitalRead()'],['../class_stm32wlx_hal.html#a7fc8af77a85f8f002c7dc6476efa0ad4',1,'Stm32wlxHal::digitalRead()']]], + ['digitalwrite_849',['digitalWrite',['../class_radio_lib_hal.html#a4db0c60f2f6f64003f04cf0e03fea7ab',1,'RadioLibHal::digitalWrite()'],['../class_stm32wlx_hal.html#acb925afdee4979936ef83a422d13e642',1,'Stm32wlxHal::digitalWrite()']]], + ['disableaddressfiltering_850',['disableAddressFiltering',['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()'],['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_l_r11x0.html#ae565dc2423ca7df13bf7ae48cce9ac8b',1,'LR11x0::disableAddressFiltering()'],['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()']]], + ['disableaes_851',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]], + ['disablebitsync_852',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]], + ['disablecontinuousmodebitsync_853',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]], + ['disablepipe_854',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], + ['disablesyncwordfiltering_855',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]], + ['dropsync_856',['dropSync',['../class_physical_layer.html#a429796eb2e7ea86781a2e8ca42af43f3',1,'PhysicalLayer']]], + ['dutycycleinterval_857',['dutyCycleInterval',['../class_lo_ra_w_a_n_node.html#a5bb50904544f331806fd744ab5b99efa',1,'LoRaWANNode']]] ]; diff --git a/search/functions_4.js b/search/functions_4.js index e4bfd20e..c5fc049e 100644 --- a/search/functions_4.js +++ b/search/functions_4.js @@ -1,11 +1,11 @@ var searchData= [ - ['enableaes_859',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], - ['enablebitsync_860',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]], - ['enablecontinuousmodebitsync_861',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]], - ['enablesyncwordfiltering_862',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], - ['encode_863',['encode',['../class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a',1,'RadioLibBCH::encode()'],['../class_radio_lib_conv_code.html#a64c324098fab2c5521b3f4e965503ca8',1,'RadioLibConvCode::encode()']]], - ['encryptecb_864',['encryptECB',['../class_radio_lib_a_e_s128.html#a4c7b49c3ed16f3849d8050a24a11c3c1',1,'RadioLibAES128']]], - ['explicitheader_865',['explicitHeader',['../class_l_r11x0.html#a3693359e5d106d6f57c23247c528cdd5',1,'LR11x0::explicitHeader()'],['../class_s_x126x.html#a3765f534418d4e0540c179621c019138',1,'SX126x::explicitHeader()'],['../class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7',1,'SX1272::explicitHeader()'],['../class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1',1,'SX1278::explicitHeader()'],['../class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d',1,'SX128x::explicitHeader()']]], - ['externalradio_866',['ExternalRadio',['../class_external_radio.html#a49f10e1b05e7463583ac05b3284b9dda',1,'ExternalRadio::ExternalRadio(RadioLibHal *hal, uint32_t pin=RADIOLIB_NC)'],['../class_external_radio.html#a69b6354e92a89c01f3695ec9bdd0b554',1,'ExternalRadio::ExternalRadio(const ExternalRadio &ext)']]] + ['enableaes_858',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], + ['enablebitsync_859',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]], + ['enablecontinuousmodebitsync_860',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]], + ['enablesyncwordfiltering_861',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], + ['encode_862',['encode',['../class_radio_lib_b_c_h.html#afa0a2eb58245715536acb781cd351d8a',1,'RadioLibBCH::encode()'],['../class_radio_lib_conv_code.html#a64c324098fab2c5521b3f4e965503ca8',1,'RadioLibConvCode::encode()']]], + ['encryptecb_863',['encryptECB',['../class_radio_lib_a_e_s128.html#a4c7b49c3ed16f3849d8050a24a11c3c1',1,'RadioLibAES128']]], + ['explicitheader_864',['explicitHeader',['../class_l_r11x0.html#a3693359e5d106d6f57c23247c528cdd5',1,'LR11x0::explicitHeader()'],['../class_s_x126x.html#a3765f534418d4e0540c179621c019138',1,'SX126x::explicitHeader()'],['../class_s_x1272.html#ae3c9704cb58232f696b5f90f69c115f7',1,'SX1272::explicitHeader()'],['../class_s_x1278.html#a7c7717f09820a8e9a93621b0a00713f1',1,'SX1278::explicitHeader()'],['../class_s_x128x.html#a94b7fb26cc99385d30b0c98b76d8188d',1,'SX128x::explicitHeader()']]], + ['externalradio_865',['ExternalRadio',['../class_external_radio.html#a49f10e1b05e7463583ac05b3284b9dda',1,'ExternalRadio::ExternalRadio(RadioLibHal *hal, uint32_t pin=RADIOLIB_NC)'],['../class_external_radio.html#a69b6354e92a89c01f3695ec9bdd0b554',1,'ExternalRadio::ExternalRadio(const ExternalRadio &ext)']]] ]; diff --git a/search/functions_5.js b/search/functions_5.js index bcb51616..28c0eda9 100644 --- a/search/functions_5.js +++ b/search/functions_5.js @@ -1,10 +1,10 @@ var searchData= [ - ['fifoadd_867',['fifoAdd',['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd()'],['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd(uint8_t *data, int totalLen, int *remLen)']]], - ['fifoget_868',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]], - ['findrfswitchmode_869',['findRfSwitchMode',['../class_module.html#a5699a937b62ba41387567b4d679b9377',1,'Module']]], - ['finishtransmit_870',['finishTransmit',['../class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18',1,'PhysicalLayer::finishTransmit()'],['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_l_r11x0.html#aaff9a5b9b7636693c98bd1c93a5863e5',1,'LR11x0::finishTransmit()'],['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit() override']]], - ['fixedpacketlengthmode_871',['fixedPacketLengthMode',['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()'],['../class_l_r11x0.html#a5df4c1ed45bf59aa25bc400bcb5dc1ba',1,'LR11x0::fixedPacketLengthMode()'],['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()']]], - ['forceldro_872',['forceLDRO',['../class_l_r11x0.html#ae0a47e772fe24c7b3f3d3288c4cd0941',1,'LR11x0::forceLDRO()'],['../class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8',1,'SX126x::forceLDRO()'],['../class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0',1,'SX1272::forceLDRO()'],['../class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856',1,'SX1278::forceLDRO()']]], - ['fsk4client_873',['FSK4Client',['../class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617',1,'FSK4Client::FSK4Client(PhysicalLayer *phy)'],['../class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82',1,'FSK4Client::FSK4Client(AFSKClient *audio)']]] + ['fifoadd_866',['fifoAdd',['../class_s_x127x.html#a36dbd1697a415c6db3b47cd620c8c02e',1,'SX127x::fifoAdd()'],['../class_r_f69.html#ab6d98f3f2d964d1833e20da246a5be89',1,'RF69::fifoAdd(uint8_t *data, int totalLen, int *remLen)']]], + ['fifoget_867',['fifoGet',['../class_r_f69.html#aa6886410230c654400c76ec7710d623c',1,'RF69::fifoGet()'],['../class_s_x127x.html#a25b193b71ddb6015d25b0a161809d75a',1,'SX127x::fifoGet()']]], + ['findrfswitchmode_868',['findRfSwitchMode',['../class_module.html#a5699a937b62ba41387567b4d679b9377',1,'Module']]], + ['finishtransmit_869',['finishTransmit',['../class_physical_layer.html#a1de26f68b939f5af79ec29cc34c7be18',1,'PhysicalLayer::finishTransmit()'],['../class_s_x128x.html#a4587409a9b96a0c496cf12b3acac20c4',1,'SX128x::finishTransmit()'],['../class_s_x127x.html#a7fd9cec52b7fbd0c69cbd861dc17549f',1,'SX127x::finishTransmit()'],['../class_s_x126x.html#a8e22d67b64953c8b4da779d87d563f3e',1,'SX126x::finishTransmit()'],['../class_r_f69.html#a3e449fa06c9e76cf69585bfbeed1c46b',1,'RF69::finishTransmit()'],['../classn_r_f24.html#af0c21ff66c011dfdc1ad12bc7dd11c2f',1,'nRF24::finishTransmit()'],['../class_l_r11x0.html#aaff9a5b9b7636693c98bd1c93a5863e5',1,'LR11x0::finishTransmit()'],['../class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f',1,'CC1101::finishTransmit()'],['../class_si443x.html#a6792f13441a1bbb3340d2ba3d9abbec3',1,'Si443x::finishTransmit() override']]], + ['fixedpacketlengthmode_870',['fixedPacketLengthMode',['../class_si443x.html#ad2b3a961a99d9e8f3a7ead6e8b69e858',1,'Si443x::fixedPacketLengthMode()'],['../class_s_x127x.html#a6fb42d9cd518e9f6408a40753c0be359',1,'SX127x::fixedPacketLengthMode()'],['../class_s_x126x.html#abc3a4f9213b2a7052e97c2e3a0bf45a5',1,'SX126x::fixedPacketLengthMode()'],['../class_r_f69.html#a0de2a07f264839cda945faebf7319e0e',1,'RF69::fixedPacketLengthMode()'],['../class_l_r11x0.html#a5df4c1ed45bf59aa25bc400bcb5dc1ba',1,'LR11x0::fixedPacketLengthMode()'],['../class_c_c1101.html#ad25ad96cddf62273bffd601384d22275',1,'CC1101::fixedPacketLengthMode()']]], + ['forceldro_871',['forceLDRO',['../class_l_r11x0.html#ae0a47e772fe24c7b3f3d3288c4cd0941',1,'LR11x0::forceLDRO()'],['../class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8',1,'SX126x::forceLDRO()'],['../class_s_x1272.html#a4aaf9d61310fa7b4fce413ae53d30ac0',1,'SX1272::forceLDRO()'],['../class_s_x1278.html#a6d6398c4d4fde302d6d4752708bce856',1,'SX1278::forceLDRO()']]], + ['fsk4client_872',['FSK4Client',['../class_f_s_k4_client.html#a2cdcea538e5b58e99a23f98ef4a68617',1,'FSK4Client::FSK4Client(PhysicalLayer *phy)'],['../class_f_s_k4_client.html#a65105b2744c4721b75ca0894c654bf82',1,'FSK4Client::FSK4Client(AFSKClient *audio)']]] ]; diff --git a/search/functions_6.js b/search/functions_6.js index d7378045..07a76039 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -1,56 +1,55 @@ var searchData= [ - ['generatecmac_874',['generateCMAC',['../class_radio_lib_a_e_s128.html#a260a1ac84386141781b3d7c213ff161c',1,'RadioLibAES128']]], - ['getafcerror_875',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], - ['getafcntdown_876',['getAFCntDown',['../class_lo_ra_w_a_n_node.html#a6785265f3311ff6bf296f82429c96701',1,'LoRaWANNode']]], - ['getbuffernonces_877',['getBufferNonces',['../class_lo_ra_w_a_n_node.html#a84004883006b4a498d4899874952445b',1,'LoRaWANNode']]], - ['getbuffersession_878',['getBufferSession',['../class_lo_ra_w_a_n_node.html#a90369a4f2c4da11527872a7bbbf9ab06',1,'LoRaWANNode']]], - ['getchannelscanresult_879',['getChannelScanResult',['../class_l_r11x0.html#a1ae2cddeb7671d9b71e9c83bf020820f',1,'LR11x0::getChannelScanResult()'],['../class_s_x126x.html#afdd901c5eac2ca8773d0977e2c493317',1,'SX126x::getChannelScanResult()'],['../class_s_x127x.html#a81189ce77541d78fc8feb99c2a3f35b2',1,'SX127x::getChannelScanResult()'],['../class_s_x128x.html#ac39f77b77a2e4124cc30aeae08b4c653',1,'SX128x::getChannelScanResult()'],['../class_physical_layer.html#a63979795a7b53557560bb95b65480906',1,'PhysicalLayer::getChannelScanResult()']]], - ['getchipversion_880',['getChipVersion',['../class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705',1,'CC1101::getChipVersion()'],['../class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638',1,'RF69::getChipVersion()'],['../class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3',1,'Si443x::getChipVersion()'],['../class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd',1,'SX127x::getChipVersion()']]], - ['getcs_881',['getCs',['../class_module.html#aa6cac04c7cb6d5278a318db0966ad1a7',1,'Module']]], - ['getcurrentlimit_882',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], - ['getdatarate_883',['getDataRate',['../class_l_r11x0.html#a1ec81f3625fdc8a3ef6c54a3804c3aa9',1,'LR11x0::getDataRate()'],['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()']]], - ['getdevaddr_884',['getDevAddr',['../class_lo_ra_w_a_n_node.html#aee0590cc9123ceac4c822eabed3150c6',1,'LoRaWANNode']]], - ['getfcntup_885',['getFCntUp',['../class_lo_ra_w_a_n_node.html#ad3217975ef9959ff83ce79dd80b0d777',1,'LoRaWANNode']]], - ['getfhsschannel_886',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]], - ['getfhsshoppingperiod_887',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]], - ['getfreqstep_888',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], - ['getfrequency_889',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]], - ['getfrequencydeviation_890',['getFrequencyDeviation',['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()'],['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()']]], - ['getfrequencyerror_891',['getFrequencyError',['../class_l_r11x0.html#ad9046bccdb4ef60718e2e8ed2bd7f036',1,'LR11x0::getFrequencyError()'],['../class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997',1,'SX126x::getFrequencyError()'],['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]], - ['getgnssalmanacstatus_892',['getGnssAlmanacStatus',['../class_l_r11x0.html#a748d30cb7a0b419066f6361a966b306f',1,'LR11x0']]], - ['getgnssposition_893',['getGnssPosition',['../class_l_r11x0.html#a19a4b4a138dbd0e5c8f980de0f6419e4',1,'LR11x0']]], - ['getgnsssatellites_894',['getGnssSatellites',['../class_l_r11x0.html#a97a3f23b796257135a9afd33c28e8ed5',1,'LR11x0']]], - ['getgpio_895',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]], - ['getirq_896',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]], - ['getirqflags_897',['getIrqFlags',['../class_s_x127x.html#a22de05835dda9ed287ec48f60ef91f55',1,'SX127x']]], - ['getirqflags_898',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], - ['getirqflags_899',['getIrqFlags',['../class_physical_layer.html#af1caeed34b2e2ff0355467507106a1a2',1,'PhysicalLayer::getIrqFlags()'],['../class_s_x128x.html#aa17ffcb939f6b2eb0712e63b6ee7a71f',1,'SX128x::getIrqFlags()'],['../class_s_x126x.html#ab4f9b0c6496a796211e9816bf92146a7',1,'SX126x::getIrqFlags()'],['../class_l_r11x0.html#a205364e65d54f3f87b9b8f5972cdcb99',1,'LR11x0::getIrqFlags()']]], - ['getirqmapped_900',['getIrqMapped',['../class_physical_layer.html#ae602ebd46d60da8670c9f353cef695d9',1,'PhysicalLayer']]], - ['getirqstatus_901',['getIrqStatus',['../class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8',1,'LR11x0::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]], - ['getlasttoa_902',['getLastToA',['../class_lo_ra_w_a_n_node.html#a683b02b63867bb7de5df45c94d190305',1,'LoRaWANNode']]], - ['getlqi_903',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], - ['getmacdevicetimeans_904',['getMacDeviceTimeAns',['../class_lo_ra_w_a_n_node.html#a9e6e1ce4296364606ff8b10fb5f971de',1,'LoRaWANNode']]], - ['getmaclinkcheckans_905',['getMacLinkCheckAns',['../class_lo_ra_w_a_n_node.html#adf038f331c1dc954dafc2668e7a31ca0',1,'LoRaWANNode']]], - ['getmaxpayloadlen_906',['getMaxPayloadLen',['../class_lo_ra_w_a_n_node.html#ab723160aa317cd84550d0da3a0f52811',1,'LoRaWANNode']]], - ['getmod_907',['getMod',['../class_external_radio.html#adfb1275ec53dbbd8fde2e8102e8f375d',1,'ExternalRadio']]], - ['getmodemstatus_908',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], - ['getnfcntdown_909',['getNFCntDown',['../class_lo_ra_w_a_n_node.html#aa7fabaa6efe9978c3674b1ab187446a1',1,'LoRaWANNode']]], - ['getnumsymbols_910',['getNumSymbols',['../class_s_x127x.html#abcc10ab36404aaaee3fe7a1be6841511',1,'SX127x']]], - ['getpacketlength_911',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a67ab0acd97f81e509af80a31f1fa7dc4',1,'SX128x::getPacketLength(bool update, uint8_t *offset)'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength(bool update=true) override'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x126x.html#a121a0c8bc8548b58019c9ccbbe5181c9',1,'SX126x::getPacketLength(bool update, uint8_t *offset)'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength(bool update=true) override'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_l_r11x0.html#af96883b2ca7a36a8921ee1cd222adebf',1,'LR11x0::getPacketLength(bool update, uint8_t *offset)'],['../class_l_r11x0.html#ac1f541bdee1d983126ceae47940b8f9d',1,'LR11x0::getPacketLength(bool update=true) override']]], - ['getpictureheight_912',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], - ['getpromiscuousmode_913',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], - ['getrangingresult_914',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_915',['getRSSI',['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#acaee753f0736774efc25e38f58e0cb26',1,'SX128x::getRSSI(bool packet)'],['../class_s_x128x.html#a260b99d8427e089546e33084803d955a',1,'SX128x::getRSSI() override'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0fcdc2962d1cf3410be208154d98ae4b',1,'SX1278::getRSSI() override'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()'],['../class_s_x126x.html#ab9db47423cf4e09ab126669d9fecbf0e',1,'SX126x::getRSSI(bool packet)'],['../class_s_x126x.html#a782a2e4ab7779369c0dc0cb4779fda81',1,'SX126x::getRSSI() override'],['../class_r_f69.html#af107c6a510d7e0314f1f4d76637c833d',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()'],['../class_s_x1272.html#a54a4b070d6899bd1edae6ae4a17c7d90',1,'SX1272::getRSSI()']]], - ['getrst_916',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], - ['getsnr_917',['getSNR',['../class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d',1,'LR11x0::getSNR()'],['../class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00',1,'SX126x::getSNR()'],['../class_s_x127x.html#a47b3f7464303085d34191dd334c1976f',1,'SX127x::getSNR()'],['../class_s_x128x.html#adce2e6c7215caa7c904b0d8f9cbd107d',1,'SX128x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()']]], - ['getstatus_918',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], - ['gettemperature_919',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], - ['gettempraw_920',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], - ['gettimeonair_921',['getTimeOnAir',['../class_l_r11x0.html#abccf5dc80aab71090a5f19bfffa0201d',1,'LR11x0::getTimeOnAir()'],['../class_s_x126x.html#a16eb0bdb051f3cf288db752d18182ae2',1,'SX126x::getTimeOnAir()'],['../class_s_x127x.html#a9e7ecbc92c9d70f93211d21399d237d0',1,'SX127x::getTimeOnAir()'],['../class_s_x128x.html#ae7d3676df8f28c79b9bee23df884fa55',1,'SX128x::getTimeOnAir()'],['../class_physical_layer.html#a50e730a894f60b58034507ad7730dd3c',1,'PhysicalLayer::getTimeOnAir()']]], - ['getversioninfo_922',['getVersionInfo',['../class_l_r11x0.html#ac6b6b460ba12cd92a08df16e1fe33779',1,'LR11x0']]], - ['getwifiscanresult_923',['getWifiScanResult',['../class_l_r11x0.html#a457f5dfe25385a329127f07abc4631a6',1,'LR11x0']]], - ['getwifiscanresultscount_924',['getWifiScanResultsCount',['../class_l_r11x0.html#a5ef83caa291e2d310d260a8ea140bc8e',1,'LR11x0']]], - ['gnssdelayuntilsubframe_925',['gnssDelayUntilSubframe',['../class_l_r11x0.html#ab2dbab0fe3433e914c19a8d03fe32358',1,'LR11x0']]], - ['gnssscan_926',['gnssScan',['../class_l_r11x0.html#ad9bfaf0bdd7045f5d41f18f3f953c294',1,'LR11x0']]] + ['generatecmac_873',['generateCMAC',['../class_radio_lib_a_e_s128.html#a260a1ac84386141781b3d7c213ff161c',1,'RadioLibAES128']]], + ['getafcerror_874',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], + ['getafcntdown_875',['getAFCntDown',['../class_lo_ra_w_a_n_node.html#a6785265f3311ff6bf296f82429c96701',1,'LoRaWANNode']]], + ['getbuffernonces_876',['getBufferNonces',['../class_lo_ra_w_a_n_node.html#a84004883006b4a498d4899874952445b',1,'LoRaWANNode']]], + ['getbuffersession_877',['getBufferSession',['../class_lo_ra_w_a_n_node.html#a90369a4f2c4da11527872a7bbbf9ab06',1,'LoRaWANNode']]], + ['getchannelscanresult_878',['getChannelScanResult',['../class_l_r11x0.html#a1ae2cddeb7671d9b71e9c83bf020820f',1,'LR11x0::getChannelScanResult()'],['../class_s_x126x.html#afdd901c5eac2ca8773d0977e2c493317',1,'SX126x::getChannelScanResult()'],['../class_s_x127x.html#a81189ce77541d78fc8feb99c2a3f35b2',1,'SX127x::getChannelScanResult()'],['../class_s_x128x.html#ac39f77b77a2e4124cc30aeae08b4c653',1,'SX128x::getChannelScanResult()'],['../class_physical_layer.html#a63979795a7b53557560bb95b65480906',1,'PhysicalLayer::getChannelScanResult()']]], + ['getchipversion_879',['getChipVersion',['../class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705',1,'CC1101::getChipVersion()'],['../class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638',1,'RF69::getChipVersion()'],['../class_si443x.html#a55252bda74e8c67636a8c1fa0e9f58d3',1,'Si443x::getChipVersion()'],['../class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd',1,'SX127x::getChipVersion()']]], + ['getcs_880',['getCs',['../class_module.html#aa6cac04c7cb6d5278a318db0966ad1a7',1,'Module']]], + ['getcurrentlimit_881',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], + ['getdatarate_882',['getDataRate',['../class_l_r11x0.html#a1ec81f3625fdc8a3ef6c54a3804c3aa9',1,'LR11x0::getDataRate()'],['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()']]], + ['getdevaddr_883',['getDevAddr',['../class_lo_ra_w_a_n_node.html#aee0590cc9123ceac4c822eabed3150c6',1,'LoRaWANNode']]], + ['getfcntup_884',['getFCntUp',['../class_lo_ra_w_a_n_node.html#ad3217975ef9959ff83ce79dd80b0d777',1,'LoRaWANNode']]], + ['getfhsschannel_885',['getFHSSChannel',['../class_s_x127x.html#a56340d1bdc69b3efc64636be39445a9c',1,'SX127x']]], + ['getfhsshoppingperiod_886',['getFHSSHoppingPeriod',['../class_s_x127x.html#ad7600b8b0aac4d8a5e962d631145b617',1,'SX127x']]], + ['getfreqstep_887',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], + ['getfrequency_888',['getFrequency',['../class_r_f69.html#a2391eb6e07db3795e993b59b3a85cfed',1,'RF69']]], + ['getfrequencydeviation_889',['getFrequencyDeviation',['../class_r_f69.html#a2bf0d5e045ccfecf9510773148cdd2c9',1,'RF69::getFrequencyDeviation()'],['../class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124',1,'CC1101::getFrequencyDeviation()']]], + ['getfrequencyerror_890',['getFrequencyError',['../class_l_r11x0.html#ad9046bccdb4ef60718e2e8ed2bd7f036',1,'LR11x0::getFrequencyError()'],['../class_s_x126x.html#a068d709ffb79ae66d718ffb76ffae997',1,'SX126x::getFrequencyError()'],['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x::getFrequencyError()'],['../class_s_x128x.html#a2b424000856a9dc212f571d0e8890635',1,'SX128x::getFrequencyError()']]], + ['getgnssalmanacstatus_891',['getGnssAlmanacStatus',['../class_l_r11x0.html#a748d30cb7a0b419066f6361a966b306f',1,'LR11x0']]], + ['getgnssposition_892',['getGnssPosition',['../class_l_r11x0.html#a19a4b4a138dbd0e5c8f980de0f6419e4',1,'LR11x0']]], + ['getgnsssatellites_893',['getGnssSatellites',['../class_l_r11x0.html#a97a3f23b796257135a9afd33c28e8ed5',1,'LR11x0']]], + ['getgpio_894',['getGpio',['../class_module.html#a4ec27f0ba5e0009ea9661a5110526b52',1,'Module']]], + ['getirq_895',['getIrq',['../class_module.html#ab61bc5066c356e2d0d79f08a2bd0fbc9',1,'Module']]], + ['getirqflags_896',['getIrqFlags',['../class_s_x126x.html#ab4f9b0c6496a796211e9816bf92146a7',1,'SX126x::getIrqFlags()'],['../class_physical_layer.html#af1caeed34b2e2ff0355467507106a1a2',1,'PhysicalLayer::getIrqFlags()'],['../class_s_x128x.html#aa17ffcb939f6b2eb0712e63b6ee7a71f',1,'SX128x::getIrqFlags()'],['../class_s_x127x.html#a22de05835dda9ed287ec48f60ef91f55',1,'SX127x::getIrqFlags()'],['../class_l_r11x0.html#a205364e65d54f3f87b9b8f5972cdcb99',1,'LR11x0::getIrqFlags()']]], + ['getirqflags_897',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], + ['getirqmapped_898',['getIrqMapped',['../class_physical_layer.html#ae602ebd46d60da8670c9f353cef695d9',1,'PhysicalLayer']]], + ['getirqstatus_899',['getIrqStatus',['../class_l_r11x0.html#a0309154558a0d88e2e8957e4dbf6a2f8',1,'LR11x0::getIrqStatus()'],['../class_s_x128x.html#ae1f933f767161cc59fdaca816ab93e22',1,'SX128x::getIrqStatus()']]], + ['getlasttoa_900',['getLastToA',['../class_lo_ra_w_a_n_node.html#a683b02b63867bb7de5df45c94d190305',1,'LoRaWANNode']]], + ['getlqi_901',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], + ['getmacdevicetimeans_902',['getMacDeviceTimeAns',['../class_lo_ra_w_a_n_node.html#a9e6e1ce4296364606ff8b10fb5f971de',1,'LoRaWANNode']]], + ['getmaclinkcheckans_903',['getMacLinkCheckAns',['../class_lo_ra_w_a_n_node.html#adf038f331c1dc954dafc2668e7a31ca0',1,'LoRaWANNode']]], + ['getmaxpayloadlen_904',['getMaxPayloadLen',['../class_lo_ra_w_a_n_node.html#ab723160aa317cd84550d0da3a0f52811',1,'LoRaWANNode']]], + ['getmod_905',['getMod',['../class_external_radio.html#adfb1275ec53dbbd8fde2e8102e8f375d',1,'ExternalRadio']]], + ['getmodemstatus_906',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], + ['getnfcntdown_907',['getNFCntDown',['../class_lo_ra_w_a_n_node.html#aa7fabaa6efe9978c3674b1ab187446a1',1,'LoRaWANNode']]], + ['getnumsymbols_908',['getNumSymbols',['../class_s_x127x.html#abcc10ab36404aaaee3fe7a1be6841511',1,'SX127x']]], + ['getpacketlength_909',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../class_physical_layer.html#a2fe95169b5cdc8cabe1f2af66cad6ef6',1,'PhysicalLayer::getPacketLength()'],['../class_s_x128x.html#a67ab0acd97f81e509af80a31f1fa7dc4',1,'SX128x::getPacketLength(bool update, uint8_t *offset)'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength(bool update=true) override'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x126x.html#a121a0c8bc8548b58019c9ccbbe5181c9',1,'SX126x::getPacketLength(bool update, uint8_t *offset)'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength(bool update=true) override'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_l_r11x0.html#af96883b2ca7a36a8921ee1cd222adebf',1,'LR11x0::getPacketLength(bool update, uint8_t *offset)'],['../class_l_r11x0.html#ac1f541bdee1d983126ceae47940b8f9d',1,'LR11x0::getPacketLength(bool update=true) override']]], + ['getpictureheight_910',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], + ['getpromiscuousmode_911',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], + ['getrangingresult_912',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], + ['getrssi_913',['getRSSI',['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#acaee753f0736774efc25e38f58e0cb26',1,'SX128x::getRSSI(bool packet)'],['../class_s_x128x.html#a260b99d8427e089546e33084803d955a',1,'SX128x::getRSSI() override'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0fcdc2962d1cf3410be208154d98ae4b',1,'SX1278::getRSSI() override'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()'],['../class_s_x126x.html#ab9db47423cf4e09ab126669d9fecbf0e',1,'SX126x::getRSSI(bool packet)'],['../class_s_x126x.html#a782a2e4ab7779369c0dc0cb4779fda81',1,'SX126x::getRSSI() override'],['../class_r_f69.html#af107c6a510d7e0314f1f4d76637c833d',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a6cd2b2363501b2de064c9d1f32fabaa3',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()'],['../class_s_x1272.html#a54a4b070d6899bd1edae6ae4a17c7d90',1,'SX1272::getRSSI()']]], + ['getrst_914',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], + ['getsnr_915',['getSNR',['../class_l_r11x0.html#a004782e6e5c6ad213c3b0c677bb8642d',1,'LR11x0::getSNR()'],['../class_s_x126x.html#a59b761a67d15cdbfdccd6a759f464d00',1,'SX126x::getSNR()'],['../class_s_x127x.html#a47b3f7464303085d34191dd334c1976f',1,'SX127x::getSNR()'],['../class_s_x128x.html#adce2e6c7215caa7c904b0d8f9cbd107d',1,'SX128x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()']]], + ['getstatus_916',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], + ['gettemperature_917',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], + ['gettempraw_918',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], + ['gettimeonair_919',['getTimeOnAir',['../class_l_r11x0.html#abccf5dc80aab71090a5f19bfffa0201d',1,'LR11x0::getTimeOnAir()'],['../class_s_x126x.html#a16eb0bdb051f3cf288db752d18182ae2',1,'SX126x::getTimeOnAir()'],['../class_s_x127x.html#a9e7ecbc92c9d70f93211d21399d237d0',1,'SX127x::getTimeOnAir()'],['../class_s_x128x.html#ae7d3676df8f28c79b9bee23df884fa55',1,'SX128x::getTimeOnAir()'],['../class_physical_layer.html#a50e730a894f60b58034507ad7730dd3c',1,'PhysicalLayer::getTimeOnAir()']]], + ['getversioninfo_920',['getVersionInfo',['../class_l_r11x0.html#ac6b6b460ba12cd92a08df16e1fe33779',1,'LR11x0']]], + ['getwifiscanresult_921',['getWifiScanResult',['../class_l_r11x0.html#a457f5dfe25385a329127f07abc4631a6',1,'LR11x0']]], + ['getwifiscanresultscount_922',['getWifiScanResultsCount',['../class_l_r11x0.html#a5ef83caa291e2d310d260a8ea140bc8e',1,'LR11x0']]], + ['gnssdelayuntilsubframe_923',['gnssDelayUntilSubframe',['../class_l_r11x0.html#ab2dbab0fe3433e914c19a8d03fe32358',1,'LR11x0']]], + ['gnssscan_924',['gnssScan',['../class_l_r11x0.html#ad9bfaf0bdd7045f5d41f18f3f953c294',1,'LR11x0']]] ]; diff --git a/search/functions_7.js b/search/functions_7.js index 3eea41b6..d701439d 100644 --- a/search/functions_7.js +++ b/search/functions_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['hellclient_927',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]] + ['hellclient_925',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]] ]; diff --git a/search/functions_8.js b/search/functions_8.js index 3707620b..891540f2 100644 --- a/search/functions_8.js +++ b/search/functions_8.js @@ -1,12 +1,12 @@ var searchData= [ - ['idle_928',['idle',['../class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257',1,'FSK4Client::idle()'],['../class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc',1,'RTTYClient::idle()'],['../class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044',1,'SSTVClient::idle()'],['../class_bell_client.html#aabd170def79cdbfd56a1d243e6227a75',1,'BellClient::idle()']]], - ['implicitheader_929',['implicitHeader',['../class_l_r11x0.html#aba13921d2cf29cc1bc8a648e1f330aa9',1,'LR11x0::implicitHeader()'],['../class_s_x126x.html#adec09cba71494bd927ad1da786606ca6',1,'SX126x::implicitHeader()'],['../class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3',1,'SX1272::implicitHeader()'],['../class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e',1,'SX1278::implicitHeader()'],['../class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b',1,'SX128x::implicitHeader()']]], - ['init_930',['init',['../class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2',1,'RadioLibHal::init()'],['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module::init()'],['../class_radio_lib_a_e_s128.html#a2f688dbdf2b0506c077ca4501e40e22e',1,'RadioLibAES128::init()']]], - ['invertiq_931',['invertIQ',['../class_l_r11x0.html#af85c16956c2250dbf338a298c074d28c',1,'LR11x0::invertIQ()'],['../class_physical_layer.html#a11b4c6d0bf3ae7b9ca04e9434180feab',1,'PhysicalLayer::invertIQ()'],['../class_s_x128x.html#a46e7979288205689ea97f1c26d1da07e',1,'SX128x::invertIQ()'],['../class_s_x127x.html#a363a436978ba990e1bf7d73f648ad7e9',1,'SX127x::invertIQ()'],['../class_s_x126x.html#a269c8e4ae0d21af88e9422ccf9708c1e',1,'SX126x::invertIQ()']]], - ['invertpreamble_932',['invertPreamble',['../class_s_x127x.html#a5b79dae55315cdf25e530db77eeb140f',1,'SX127x']]], - ['isactivated_933',['isActivated',['../class_lo_ra_w_a_n_node.html#a9a44677a1ef7db1216bc482139d6be8d',1,'LoRaWANNode']]], - ['iscarrierdetected_934',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], - ['isgnssscancapable_935',['isGnssScanCapable',['../class_l_r11x0.html#a79818dae19d69d33a5a1facbb91c3774',1,'LR11x0']]], - ['ita2string_936',['ITA2String',['../class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5',1,'ITA2String::ITA2String(char c)'],['../class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55',1,'ITA2String::ITA2String(const char *str)'],['../class_i_t_a2_string.html#ac3c4e36f2a1cad480b045530a19d09d2',1,'ITA2String::ITA2String(const ITA2String &ita2)']]] + ['idle_926',['idle',['../class_f_s_k4_client.html#a79ca465012acc9223d61d5b063ff8257',1,'FSK4Client::idle()'],['../class_r_t_t_y_client.html#ac477e65ea756e56bb9043d778a51b4bc',1,'RTTYClient::idle()'],['../class_s_s_t_v_client.html#a0126ac04934f589b8cb04a038c342044',1,'SSTVClient::idle()'],['../class_bell_client.html#aabd170def79cdbfd56a1d243e6227a75',1,'BellClient::idle()']]], + ['implicitheader_927',['implicitHeader',['../class_l_r11x0.html#aba13921d2cf29cc1bc8a648e1f330aa9',1,'LR11x0::implicitHeader()'],['../class_s_x126x.html#adec09cba71494bd927ad1da786606ca6',1,'SX126x::implicitHeader()'],['../class_s_x1272.html#a4ee36122f8aca42b27a8412e0c362dd3',1,'SX1272::implicitHeader()'],['../class_s_x1278.html#a47f5ac7dd6587b86c5f2c2b16336612e',1,'SX1278::implicitHeader()'],['../class_s_x128x.html#ac69cc622020419cb3393eac5cc88915b',1,'SX128x::implicitHeader()']]], + ['init_928',['init',['../class_radio_lib_hal.html#a450037acdfeb4e87413674ac90feb4d2',1,'RadioLibHal::init()'],['../class_module.html#ad1956ac81429ec1f61f83dbc081cf18c',1,'Module::init()'],['../class_radio_lib_a_e_s128.html#a2f688dbdf2b0506c077ca4501e40e22e',1,'RadioLibAES128::init()']]], + ['invertiq_929',['invertIQ',['../class_l_r11x0.html#af85c16956c2250dbf338a298c074d28c',1,'LR11x0::invertIQ()'],['../class_physical_layer.html#a11b4c6d0bf3ae7b9ca04e9434180feab',1,'PhysicalLayer::invertIQ()'],['../class_s_x128x.html#a46e7979288205689ea97f1c26d1da07e',1,'SX128x::invertIQ()'],['../class_s_x127x.html#a363a436978ba990e1bf7d73f648ad7e9',1,'SX127x::invertIQ()'],['../class_s_x126x.html#a269c8e4ae0d21af88e9422ccf9708c1e',1,'SX126x::invertIQ()']]], + ['invertpreamble_930',['invertPreamble',['../class_s_x127x.html#a5b79dae55315cdf25e530db77eeb140f',1,'SX127x']]], + ['isactivated_931',['isActivated',['../class_lo_ra_w_a_n_node.html#a9a44677a1ef7db1216bc482139d6be8d',1,'LoRaWANNode']]], + ['iscarrierdetected_932',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], + ['isgnssscancapable_933',['isGnssScanCapable',['../class_l_r11x0.html#a79818dae19d69d33a5a1facbb91c3774',1,'LR11x0']]], + ['ita2string_934',['ITA2String',['../class_i_t_a2_string.html#addb6c39167aa5da53fb72e9a94c9c8f5',1,'ITA2String::ITA2String(char c)'],['../class_i_t_a2_string.html#a92ca563bdc2ae4d05ee91ce9372e7a55',1,'ITA2String::ITA2String(const char *str)'],['../class_i_t_a2_string.html#ac3c4e36f2a1cad480b045530a19d09d2',1,'ITA2String::ITA2String(const ITA2String &ita2)']]] ]; diff --git a/search/functions_9.js b/search/functions_9.js index a6802250..6cb5c1ec 100644 --- a/search/functions_9.js +++ b/search/functions_9.js @@ -1,10 +1,10 @@ var searchData= [ - ['length_937',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], - ['llcc68_938',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]], - ['lorawannode_939',['LoRaWANNode',['../class_lo_ra_w_a_n_node.html#aae05de563f765f14fe267e4d65844f76',1,'LoRaWANNode']]], - ['lr1110_940',['LR1110',['../class_l_r1110.html#a4e492901900ad1d85c818ec473b3d123',1,'LR1110']]], - ['lr1120_941',['LR1120',['../class_l_r1120.html#ae652f10ebc1e4b8245eb5a0c97765257',1,'LR1120']]], - ['lr1121_942',['LR1121',['../class_l_r1121.html#a0015ed8c0fde10a072b5f1317779f59a',1,'LR1121']]], - ['lr11x0_943',['LR11x0',['../class_l_r11x0.html#a562f34a054e3374b812556df3b6eb421',1,'LR11x0']]] + ['length_935',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], + ['llcc68_936',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]], + ['lorawannode_937',['LoRaWANNode',['../class_lo_ra_w_a_n_node.html#aae05de563f765f14fe267e4d65844f76',1,'LoRaWANNode']]], + ['lr1110_938',['LR1110',['../class_l_r1110.html#a4e492901900ad1d85c818ec473b3d123',1,'LR1110']]], + ['lr1120_939',['LR1120',['../class_l_r1120.html#ae652f10ebc1e4b8245eb5a0c97765257',1,'LR1120']]], + ['lr1121_940',['LR1121',['../class_l_r1121.html#a0015ed8c0fde10a072b5f1317779f59a',1,'LR1121']]], + ['lr11x0_941',['LR11x0',['../class_l_r11x0.html#a562f34a054e3374b812556df3b6eb421',1,'LR11x0']]] ]; diff --git a/search/functions_a.js b/search/functions_a.js index d5204f5f..e071e141 100644 --- a/search/functions_a.js +++ b/search/functions_a.js @@ -1,7 +1,7 @@ var searchData= [ - ['micros_944',['micros',['../class_radio_lib_hal.html#a64d98b48668ced5ba1014f272606f370',1,'RadioLibHal']]], - ['millis_945',['millis',['../class_radio_lib_hal.html#a4b8e36ccf8fe372c259b963666513d37',1,'RadioLibHal']]], - ['module_946',['Module',['../class_module.html#a817178405f125e068e88bad62aeb6f3b',1,'Module::Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], - ['morseclient_947',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]] + ['micros_942',['micros',['../class_radio_lib_hal.html#a64d98b48668ced5ba1014f272606f370',1,'RadioLibHal']]], + ['millis_943',['millis',['../class_radio_lib_hal.html#a4b8e36ccf8fe372c259b963666513d37',1,'RadioLibHal']]], + ['module_944',['Module',['../class_module.html#a817178405f125e068e88bad62aeb6f3b',1,'Module::Module(RadioLibHal *hal, uint32_t cs, uint32_t irq, uint32_t rst, uint32_t gpio=RADIOLIB_NC)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], + ['morseclient_945',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]] ]; diff --git a/search/functions_b.js b/search/functions_b.js index ffb4cd29..ad7f9951 100644 --- a/search/functions_b.js +++ b/search/functions_b.js @@ -1,5 +1,5 @@ var searchData= [ - ['notone_948',['noTone',['../class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5',1,'RadioLibHal::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]], - ['nrf24_949',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]] + ['notone_946',['noTone',['../class_radio_lib_hal.html#a6b5341c59728a1932e33216feee04ea5',1,'RadioLibHal::noTone()'],['../class_a_f_s_k_client.html#a664c1de9b5cd792826a5a77ac5457bae',1,'AFSKClient::noTone()']]], + ['nrf24_947',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]] ]; diff --git a/search/functions_c.js b/search/functions_c.js index 2b39b10a..465e29ad 100644 --- a/search/functions_c.js +++ b/search/functions_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['operator_3d_950',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()'],['../class_a_x25_client.html#aad6b806d6f8601ec04d6b11bcde37733',1,'AX25Client::operator=()'],['../class_external_radio.html#aee6ca3af0849aed193e96cb0691e89e0',1,'ExternalRadio::operator=()'],['../class_i_t_a2_string.html#a8b572c54ca3fdd1d8ba7ef6ec0dfd384',1,'ITA2String::operator=()']]] + ['operator_3d_948',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()'],['../class_a_x25_client.html#aad6b806d6f8601ec04d6b11bcde37733',1,'AX25Client::operator=()'],['../class_external_radio.html#aee6ca3af0849aed193e96cb0691e89e0',1,'ExternalRadio::operator=()'],['../class_i_t_a2_string.html#a8b572c54ca3fdd1d8ba7ef6ec0dfd384',1,'ITA2String::operator=()']]] ]; diff --git a/search/functions_d.js b/search/functions_d.js index 3d2429c7..a73e4615 100644 --- a/search/functions_d.js +++ b/search/functions_d.js @@ -1,10 +1,10 @@ var searchData= [ - ['packetmode_951',['packetMode',['../class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2',1,'CC1101::packetMode()'],['../class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f',1,'RF69::packetMode()'],['../class_si443x.html#a616eb24c4b11c5d39caaade160be8092',1,'Si443x::packetMode()'],['../class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1',1,'SX127x::packetMode()']]], - ['pagerclient_952',['PagerClient',['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient']]], - ['physicallayer_953',['PhysicalLayer',['../class_physical_layer.html#add63d7d4fa8b14df5e185813794a49d5',1,'PhysicalLayer']]], - ['pinmode_954',['pinMode',['../class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b',1,'RadioLibHal::pinMode()'],['../class_stm32wlx_hal.html#a70dd9f6fb6c0307e2d9d363ce6d7f2a2',1,'Stm32wlxHal::pinMode()']]], - ['pintointerrupt_955',['pinToInterrupt',['../class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00',1,'RadioLibHal']]], - ['printglyph_956',['printGlyph',['../class_hell_client.html#a68c4a74910756ad251e626a0b4c8c267',1,'HellClient']]], - ['pulsein_957',['pulseIn',['../class_radio_lib_hal.html#a3f38db9475dcd0967d6dfe240b8695c9',1,'RadioLibHal']]] + ['packetmode_949',['packetMode',['../class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2',1,'CC1101::packetMode()'],['../class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f',1,'RF69::packetMode()'],['../class_si443x.html#a616eb24c4b11c5d39caaade160be8092',1,'Si443x::packetMode()'],['../class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1',1,'SX127x::packetMode()']]], + ['pagerclient_950',['PagerClient',['../class_pager_client.html#a9f978120467b13104fb356e9b7d855ec',1,'PagerClient']]], + ['physicallayer_951',['PhysicalLayer',['../class_physical_layer.html#add63d7d4fa8b14df5e185813794a49d5',1,'PhysicalLayer']]], + ['pinmode_952',['pinMode',['../class_radio_lib_hal.html#af01b4e5e01352b99ce4329c9f9f8433b',1,'RadioLibHal::pinMode()'],['../class_stm32wlx_hal.html#a70dd9f6fb6c0307e2d9d363ce6d7f2a2',1,'Stm32wlxHal::pinMode()']]], + ['pintointerrupt_953',['pinToInterrupt',['../class_radio_lib_hal.html#a300a47d4d43dbe0c624f6e5dc1cf7a00',1,'RadioLibHal']]], + ['printglyph_954',['printGlyph',['../class_hell_client.html#a68c4a74910756ad251e626a0b4c8c267',1,'HellClient']]], + ['pulsein_955',['pulseIn',['../class_radio_lib_hal.html#a3f38db9475dcd0967d6dfe240b8695c9',1,'RadioLibHal']]] ]; diff --git a/search/functions_e.js b/search/functions_e.js index f19649f1..e7bf1be8 100644 --- a/search/functions_e.js +++ b/search/functions_e.js @@ -1,22 +1,21 @@ var searchData= [ - ['radiolibaes128_958',['RadioLibAES128',['../class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe',1,'RadioLibAES128']]], - ['radiolibbch_959',['RadioLibBCH',['../class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118',1,'RadioLibBCH']]], - ['radiolibconvcode_960',['RadioLibConvCode',['../class_radio_lib_conv_code.html#a4fbe7c4e90969f0be10b8484b405df78',1,'RadioLibConvCode']]], - ['radiolibcrc_961',['RadioLibCRC',['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC']]], - ['radiolibhal_962',['RadioLibHal',['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal']]], - ['random_963',['random',['../class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53',1,'PhysicalLayer::random(int32_t max)'],['../class_physical_layer.html#a76113e10481743094a1cd0280692b0a9',1,'PhysicalLayer::random(int32_t min, int32_t max)']]], - ['randombyte_964',['randomByte',['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()'],['../class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4',1,'LR11x0::randomByte()'],['../class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297',1,'RF69::randomByte()'],['../class_si443x.html#a16750016db8a3bf27c35822b08d81155',1,'Si443x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_s_x127x.html#a9877550ed7881be06d00ea190f230fb9',1,'SX127x::randomByte()'],['../class_s_x128x.html#a8d331080599e09ef0b11a77cffd6f13a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()']]], - ['range_965',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]], - ['read_966',['read',['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()'],['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()']]], - ['readbit_967',['readBit',['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#af2e1d173694a59082a22922a6f7d50a8',1,'SX128x::readBit()'],['../class_s_x127x.html#a0e149fac59b3accbc9550bf605d6bbf0',1,'SX127x::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()'],['../class_si443x.html#a2bff9ba621ad00964bdfc72dd374a50b',1,'Si443x::readBit()'],['../class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746',1,'RF69::readBit()']]], - ['readdata_968',['readData',['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()']]], - ['receive_969',['receive',['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::receive()'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()']]], - ['receivedirect_970',['receiveDirect',['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()']]], - ['receivedirectasync_971',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]], - ['reflect_972',['reflect',['../class_module.html#a4add1a875bb88e91da232118201a78a8',1,'Module']]], - ['reset_973',['reset',['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994',1,'LR11x0::reset()'],['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()']]], - ['resetfcntdown_974',['resetFCntDown',['../class_lo_ra_w_a_n_node.html#af4b3d07cd9bf4178d627204bae18b648',1,'LoRaWANNode']]], - ['rf69_975',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]], - ['rttyclient_976',['RTTYClient',['../class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea',1,'RTTYClient::RTTYClient(PhysicalLayer *phy)'],['../class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570',1,'RTTYClient::RTTYClient(AFSKClient *audio)']]] + ['radiolibaes128_956',['RadioLibAES128',['../class_radio_lib_a_e_s128.html#a11f816221d1c06432ff80f2678ef46fe',1,'RadioLibAES128']]], + ['radiolibbch_957',['RadioLibBCH',['../class_radio_lib_b_c_h.html#a39d55c0292e4c9337ee0672cd5241118',1,'RadioLibBCH']]], + ['radiolibconvcode_958',['RadioLibConvCode',['../class_radio_lib_conv_code.html#a4fbe7c4e90969f0be10b8484b405df78',1,'RadioLibConvCode']]], + ['radiolibcrc_959',['RadioLibCRC',['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC']]], + ['radiolibhal_960',['RadioLibHal',['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal']]], + ['random_961',['random',['../class_physical_layer.html#acd9171bd71aa80fb86113b612c42de53',1,'PhysicalLayer::random(int32_t max)'],['../class_physical_layer.html#a76113e10481743094a1cd0280692b0a9',1,'PhysicalLayer::random(int32_t min, int32_t max)']]], + ['randombyte_962',['randomByte',['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()'],['../class_l_r11x0.html#a89b16d2231f588b67dc3aab0c0a467f4',1,'LR11x0::randomByte()'],['../class_r_f69.html#ac47d0f59cb190361fa9b7d10efacc297',1,'RF69::randomByte()'],['../class_si443x.html#a16750016db8a3bf27c35822b08d81155',1,'Si443x::randomByte()'],['../class_s_x126x.html#a187a616285c5872f9603a86c122deaf2',1,'SX126x::randomByte()'],['../class_s_x127x.html#a9877550ed7881be06d00ea190f230fb9',1,'SX127x::randomByte()'],['../class_s_x128x.html#a8d331080599e09ef0b11a77cffd6f13a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()']]], + ['range_963',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]], + ['read_964',['read',['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()'],['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()']]], + ['readbit_965',['readBit',['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_r_f69.html#a5a340c38b9b8b79d4fe59fb987b12746',1,'RF69::readBit()'],['../class_si443x.html#a2bff9ba621ad00964bdfc72dd374a50b',1,'Si443x::readBit()'],['../class_s_x126x.html#acb1a1c51f207439880ae537f5ffeb17c',1,'SX126x::readBit()'],['../class_s_x127x.html#a0e149fac59b3accbc9550bf605d6bbf0',1,'SX127x::readBit()'],['../class_s_x128x.html#af2e1d173694a59082a22922a6f7d50a8',1,'SX128x::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit(uint32_t pin)']]], + ['readdata_966',['readData',['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData(uint8_t *data, size_t len)'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData(uint8_t *data, size_t len) override'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()']]], + ['receive_967',['receive',['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::receive()'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()']]], + ['receivedirect_968',['receiveDirect',['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()']]], + ['receivedirectasync_969',['receiveDirectAsync',['../class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2',1,'CC1101']]], + ['reset_970',['reset',['../class_si443x.html#ae782ee06e2c463c24f22f5d4c3dd8d97',1,'Si443x::reset()'],['../class_s_x128x.html#a2643ce22176293631fea2169f5e68e66',1,'SX128x::reset()'],['../class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68',1,'SX127x::reset()'],['../class_s_x1278.html#a6d60902ac59b653a9eb83e82a932f7ad',1,'SX1278::reset()'],['../class_s_x1272.html#a0978cc9ecbb7b9d3a017c133506e57ac',1,'SX1272::reset()'],['../class_s_x126x.html#a9aa6dd05dd32ef717a06cc8ba28ff71f',1,'SX126x::reset()'],['../class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a',1,'RF69::reset()'],['../class_l_r11x0.html#a288bcc309d3676bc0bbe620b7d89d994',1,'LR11x0::reset()'],['../class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21',1,'CC1101::reset()']]], + ['resetfcntdown_971',['resetFCntDown',['../class_lo_ra_w_a_n_node.html#af4b3d07cd9bf4178d627204bae18b648',1,'LoRaWANNode']]], + ['rf69_972',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]], + ['rttyclient_973',['RTTYClient',['../class_r_t_t_y_client.html#ae6bc08fa88457ee00a992448be1d63ea',1,'RTTYClient::RTTYClient(PhysicalLayer *phy)'],['../class_r_t_t_y_client.html#ab0e11944c2f1e2c60fc45bcd2db18570',1,'RTTYClient::RTTYClient(AFSKClient *audio)']]] ]; diff --git a/search/functions_f.js b/search/functions_f.js index 4d0c3bf2..2063a295 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -1,158 +1,158 @@ var searchData= [ - ['scanchannel_977',['scanChannel',['../class_l_r11x0.html#a5e8f21878bdab1439805aea1e9da168d',1,'LR11x0::scanChannel(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c',1,'LR11x0::scanChannel() override'],['../class_physical_layer.html#af788cf83ceb0222cd0fa4a1323b9041b',1,'PhysicalLayer::scanChannel(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#abd9e39cc745acbf084cfa0d3f4d10718',1,'PhysicalLayer::scanChannel()'],['../class_s_x128x.html#ab55112682432f369fb17f8107ba5158b',1,'SX128x::scanChannel()'],['../class_s_x127x.html#a13ae97e18744dc617bc9326cfbaad3a3',1,'SX127x::scanChannel()'],['../class_s_x126x.html#a373012fb3276872238f654b66879a710',1,'SX126x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#acb8611a9c3862dd1bfa73ef47b8f9b20',1,'SX126x::scanChannel() override'],['../class_s_x128x.html#a2f8427103d6609f3ac44b23fcca4f301',1,'SX128x::scanChannel()']]], - ['scheduletransmission_978',['scheduleTransmission',['../class_lo_ra_w_a_n_node.html#a16c7ae2edfe324e11498b13aa042665f',1,'LoRaWANNode']]], - ['sendframe_979',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]], - ['sendheader_980',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], - ['sendline_981',['sendLine',['../class_s_s_t_v_client.html#ab8579712e82e806960ced7bf2750d9c6',1,'SSTVClient']]], - ['sendmaccommandreq_982',['sendMacCommandReq',['../class_lo_ra_w_a_n_node.html#adef05650cf4eb92042ca5e2688c1e164',1,'LoRaWANNode']]], - ['sendmice_983',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]], - ['sendposition_984',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], - ['sendreceive_985',['sendReceive',['../class_lo_ra_w_a_n_node.html#a07ab107de181bde59c2731a5a64a1e2e',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a7123f9a907df9224b9b01282c12af459',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort=1, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a85cf006ffd97ece3b2d2974b715540cb',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a11c2fbe631063da69355f8d74f4bf3b8',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)']]], - ['sendtone_986',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]], - ['setaccessaddress_987',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], - ['setaddresswidth_988',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], - ['setadr_989',['setADR',['../class_lo_ra_w_a_n_node.html#ae222275f807f472083ea6100c23c75ff',1,'LoRaWANNode']]], - ['setaeskey_990',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], - ['setafc_991',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], - ['setafcagctrigger_992',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], - ['setafcbandwidth_993',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], - ['setambienttemperature_994',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], - ['setautoack_995',['setAutoAck',['../classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe',1,'nRF24::setAutoAck(bool autoAckOn=true)'],['../classn_r_f24.html#ac1c3419442d93abeede39e7fda4db62e',1,'nRF24::setAutoAck(uint8_t pipeNum, bool autoAckOn)']]], - ['setbandwidth_996',['setBandwidth',['../class_l_r11x0.html#a70d9849eb8e5ce2090e4e332252753d7',1,'LR11x0::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()']]], - ['setbitrate_997',['setBitRate',['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#ad6570f33bae09bc8b7617f9da39033ac',1,'SX128x::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_si443x.html#afcba86e79d229b3fd7268dcbd7c47b62',1,'Si443x::setBitRate()'],['../class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56',1,'RF69::setBitRate()'],['../classn_r_f24.html#a760d3f47f58ddacdf41975447484a47c',1,'nRF24::setBitRate()'],['../class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9',1,'LR11x0::setBitRate()'],['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()'],['../class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f',1,'SX1233::setBitRate()']]], - ['setbitratetolerance_998',['setBitRateTolerance',['../class_c_c1101.html#adc76af01dbc9171b3fdd7570624a4d4f',1,'CC1101']]], - ['setbroadcastaddress_999',['setBroadcastAddress',['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()'],['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::setBroadcastAddress()']]], - ['setbuffernonces_1000',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], - ['setbuffersession_1001',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], - ['setchannelscanaction_1002',['setChannelScanAction',['../class_s_t_m32_w_lx.html#a119ad225f9eba91e7c38f82cf0f1c89d',1,'STM32WLx::setChannelScanAction()'],['../class_s_x126x.html#aed0e7dcd60479c9db3d7a3408e7f396d',1,'SX126x::setChannelScanAction()'],['../class_s_x127x.html#ac23c2b384ae8611d59e10ef6a14fe7e4',1,'SX127x::setChannelScanAction()'],['../class_physical_layer.html#ae11c191a7edf3116bf468b9153237260',1,'PhysicalLayer::setChannelScanAction()']]], - ['setcodingrate_1003',['setCodingRate',['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541',1,'LR11x0::setCodingRate()'],['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()']]], - ['setcorrection_1004',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]], - ['setcrc_1005',['setCRC',['../class_l_r11x0.html#a551b82787288b0b14e4d3124e6744dc3',1,'LR11x0::setCRC()'],['../class_s_x126x.html#a95007639c2648a1dbb614493224606f1',1,'SX126x::setCRC()'],['../class_s_x1272.html#abd912314a977f92c464d36d862329ffc',1,'SX1272::setCRC()'],['../class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1',1,'SX1278::setCRC()'],['../class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe',1,'SX128x::setCRC()']]], - ['setcrcfiltering_1006',['setCrcFiltering',['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()']]], - ['setcsma_1007',['setCSMA',['../class_lo_ra_w_a_n_node.html#a2d9a53560ebfbaf006eefd9761424d80',1,'LoRaWANNode']]], - ['setcurrentlimit_1008',['setCurrentLimit',['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()'],['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()']]], - ['setdatarate_1009',['setDatarate',['../class_lo_ra_w_a_n_node.html#a14e8a8a098df28ff5ee294f235500499',1,'LoRaWANNode']]], - ['setdatarate_1010',['setDataRate',['../class_physical_layer.html#a6ee1fed6bbb8d3571974153ac6f26751',1,'PhysicalLayer::setDataRate()'],['../class_s_x128x.html#adbf5a9ac62460efb1c709e51260dbe3d',1,'SX128x::setDataRate()'],['../class_s_x1278.html#a286f1ee00e2c7f2ab1bd06b66196c3f9',1,'SX1278::setDataRate()'],['../class_s_x1277.html#ac4bfae9258662381e685e46c803c984c',1,'SX1277::setDataRate()'],['../class_s_x1273.html#acaffc772f70e7db371cbe736dc4a19ab',1,'SX1273::setDataRate()'],['../class_s_x1272.html#a5b79b7cd20c4c3cd1f486f777b3457d1',1,'SX1272::setDataRate()'],['../class_s_x126x.html#af30a581d31feae6f50c0591d1ee113f1',1,'SX126x::setDataRate()'],['../class_l_r11x0.html#a056e65c58ff8fb18bd84917512790ee6',1,'LR11x0::setDataRate()'],['../class_l_l_c_c68.html#ac630770441cadc547892173bde7504f9',1,'LLCC68::setDataRate()']]], - ['setdatashaping_1011',['setDataShaping',['../class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9',1,'PhysicalLayer::setDataShaping()'],['../class_l_r11x0.html#a5a33df702da3f5b010e07d5e6fac7aa6',1,'LR11x0::setDataShaping()'],['../class_external_radio.html#abe0bfb0f178783eff28bdc867e9324fd',1,'ExternalRadio::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()']]], - ['setdatashapingook_1012',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], - ['setdevicestatus_1013',['setDeviceStatus',['../class_lo_ra_w_a_n_node.html#a5449e301634dff1838a1b024b4067034',1,'LoRaWANNode']]], - ['setdio0action_1014',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], - ['setdio1action_1015',['setDio1Action',['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()']]], - ['setdio2asrfswitch_1016',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdiomapping_1017',['setDIOMapping',['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a7243b3396edc1e6e67575894a5033afe',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#af7d373bc93e99790912cebe8d5ae6403',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]], - ['setdiopreambledetect_1018',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], - ['setdirectaction_1019',['setDirectAction',['../class_s_x128x.html#a2326cf28c385b8dd709cb62c9f665000',1,'SX128x::setDirectAction()'],['../class_s_x127x.html#ae4b99d1bc67ac2c81eeb11dd6793a8c5',1,'SX127x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction()'],['../class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77',1,'RF69::setDirectAction()'],['../class_si443x.html#a48a59ff1ddc7c8ec820328174955de43',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()'],['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()']]], - ['setdirectsyncword_1020',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], - ['setdutycycle_1021',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], - ['setdwelltime_1022',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], - ['setencoding_1023',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../class_l_r11x0.html#a8ae178a17f6e41b545b79cfffd3e2864',1,'LR11x0::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_external_radio.html#ae619f011daea49a97098d2897e5a3c2c',1,'ExternalRadio::setEncoding()'],['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()']]], - ['setfhsshoppingperiod_1024',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], - ['setfifoemptyaction_1025',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], - ['setfifofullaction_1026',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], - ['setfrequency_1027',['setFrequency',['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x128x.html#ab9e16231c2c6bd0e4b4c6c2900b5b332',1,'SX128x::setFrequency()'],['../class_s_x1279.html#ab60691d073ca75ef09dab7a8f28fb7fb',1,'SX1279::setFrequency()'],['../class_s_x1278.html#adb4d95d3b2798cf8ea94890ae71dcc59',1,'SX1278::setFrequency()'],['../class_s_x1277.html#ad68ea24b46d9e7d3f82282cdccd20e00',1,'SX1277::setFrequency()'],['../class_s_x1276.html#a981b59110e514b7dcaec8490e1c4320c',1,'SX1276::setFrequency()'],['../class_s_x1272.html#ac1467a23e1f1bfdbd02f6d30654ed850',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency()'],['../class_si4432.html#aed3561abdb30b4eaad52d984366aadf1',1,'Si4432::setFrequency()'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency()'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency()'],['../class_si4430.html#a3959e91bcae77b8240e9e447985e05b3',1,'Si4430::setFrequency()'],['../class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532',1,'RF69::setFrequency()'],['../classn_r_f24.html#a18f24764b2ecffc076e72dce0b036116',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb',1,'LR1120::setFrequency(float freq) override'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8',1,'LR1110::setFrequency(float freq) override'],['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency()']]], - ['setfrequencydeviation_1028',['setFrequencyDeviation',['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()'],['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()']]], - ['setgain_1029',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], - ['setgaincontrol_1030',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], - ['setgdo0action_1031',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]], - ['setgdo2action_1032',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]], - ['sethighsensitivitymode_1033',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]], - ['setinversion_1034',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]], - ['setirq_1035',['setIrq',['../class_physical_layer.html#a8564f9834a0247e93e7620c23559ceb8',1,'PhysicalLayer']]], - ['setirqaction_1036',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()'],['../class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18',1,'LR11x0::setIrqAction(void(*func)(void))']]], - ['setirqflags_1037',['setIrqFlags',['../class_l_r11x0.html#a62c715ab18ea8a2e08a2791d3e764ee9',1,'LR11x0::setIrqFlags()'],['../class_s_x126x.html#a50e757c2a63e5c7da5b0d0d6c00f91b5',1,'SX126x::setIrqFlags()'],['../class_s_x127x.html#aae42b94ab2ecf729f29f101222e97666',1,'SX127x::setIrqFlags()'],['../class_s_x128x.html#a6a2ec5d316975f390f20b4e0a2e11e98',1,'SX128x::setIrqFlags()'],['../class_physical_layer.html#af88dcb54dc8e9a1edaf9f1c3e5ee2b74',1,'PhysicalLayer::setIrqFlags()']]], - ['setlnatestboost_1038',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], - ['setlowbatterythreshold_1039',['setLowBatteryThreshold',['../class_s_x127x.html#a9ca9aa18e13e8390ec437e249e1d2472',1,'SX127x']]], - ['setlrfhssconfig_1040',['setLrFhssConfig',['../class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35',1,'LR11x0::setLrFhssConfig()'],['../class_s_x126x.html#aa1e7777fc8237e2c9d933cd4b6304e28',1,'SX126x::setLrFhssConfig()']]], - ['setmodem_1041',['setModem',['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient']]], - ['setnodeaddress_1042',['setNodeAddress',['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()'],['../class_s_x126x.html#adf54f7b83aa47ad0b803147622b3c580',1,'SX126x::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e',1,'LR11x0::setNodeAddress()']]], - ['setook_1043',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK(bool enableOOK)']]], - ['setookfixedorfloorthreshold_1044',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], - ['setookfixedthreshold_1045',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], - ['setookpeakthresholddecrement_1046',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]], - ['setookpeakthresholdstep_1047',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], - ['setookthresholdtype_1048',['setOokThresholdType',['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()'],['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()']]], - ['setoutputpower_1049',['setOutputPower',['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x128x.html#a1bc3372c47a4e3c81ef15bee448ba6b6',1,'SX128x::setOutputPower()'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_si4432.html#a5e3017bce6d66d35b867e7878d108c68',1,'Si4432::setOutputPower()'],['../class_si4431.html#ad1538dbe67ed5d3682591d1d780ab0e9',1,'Si4431::setOutputPower()'],['../class_si4430.html#ab1303e014a4b8d2307a2b1deb061fdeb',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../classn_r_f24.html#a4fa66ce5fb6d7b22bbb439c2f9103bf3',1,'nRF24::setOutputPower()'],['../class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7',1,'LR1120::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1120.html#a1b1321eb695e4a6b583074bb92c33193',1,'LR1120::setOutputPower(int8_t power) override'],['../class_l_r1110.html#ae4eaaa6411bb1eeb131613fb3f43e5d1',1,'LR1110::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1110.html#a65c08f0475f888537e55401b75e58b23',1,'LR1110::setOutputPower(int8_t power) override'],['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()']]], - ['setpacketreceivedaction_1050',['setPacketReceivedAction',['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#ad98c4526ef971f9aadb30e351a37eaf9',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ae236a467095fb5364d0fc4a98d85f96e',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_r_f69.html#a74962c069e08890ac9566d48634c778e',1,'RF69::setPacketReceivedAction()'],['../class_si443x.html#a0e098ea9aa3945f0c38f59efe43b147e',1,'Si443x::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction()'],['../classn_r_f24.html#a60df9afa489eabe3a3ca193ab7709165',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87',1,'LR11x0::setPacketReceivedAction(void(*func)(void)) override']]], - ['setpacketsentaction_1051',['setPacketSentAction',['../class_l_r11x0.html#a92299e41f839590008b4e344776838a1',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a26b5f873db167733df143a0608eea3ac',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a97603856caada65676ff4b11630c7f72',1,'RF69::setPacketSentAction()'],['../class_si443x.html#af2d36121ca94736ef3ecb4c09aded753',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a3530e8e19cfe4d96fe49ca4e6386b099',1,'SX127x::setPacketSentAction()'],['../class_s_x128x.html#a1e6f938ce715dad9a6609bf56626a50d',1,'SX128x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()']]], - ['setpaconfig_1052',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], - ['setparamptime_1053',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], - ['setpreamblelength_1054',['setPreambleLength',['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength(uint8_t preambleLength, uint8_t qualityThreshold)']]], - ['setpromiscuousmode_1055',['setPromiscuousMode',['../class_c_c1101.html#ac1155543b27e46fa27aa4c9180da18bb',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()']]], - ['setreceivepipe_1056',['setReceivePipe',['../classn_r_f24.html#a31bcc5a8c3747bf08a273dbdadc5481a',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t *addr)'],['../classn_r_f24.html#ab5bc08aef88d8cf41c38369044005da8',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t addrByte)']]], - ['setrecvsequence_1057',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], - ['setregulatordcdc_1058',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x::setRegulatorDCDC()'],['../class_l_r11x0.html#a1ad485f14a333f06b642f2d60aacf76c',1,'LR11x0::setRegulatorDCDC()']]], - ['setregulatorldo_1059',['setRegulatorLDO',['../class_l_r11x0.html#a92ae10630cc327f441809ac1406737fd',1,'LR11x0::setRegulatorLDO()'],['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x::setRegulatorLDO()']]], - ['setrepeaters_1060',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], - ['setrfswitchpins_1061',['setRfSwitchPins',['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins(uint32_t rxEn, uint32_t txEn)']]], - ['setrfswitchstate_1062',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]], - ['setrfswitchtable_1063',['setRfSwitchTable',['../class_l_r11x0.html#a1981f0dfceca2b6175a69530ea13d643',1,'LR11x0::setRfSwitchTable()'],['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()'],['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()'],['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()'],['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()']]], - ['setrssiconfig_1064',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], - ['setrssithreshold_1065',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], - ['setrx2dr_1066',['setRx2Dr',['../class_lo_ra_w_a_n_node.html#addfd8ac3d0bfe5a273e9ba10e51f8025',1,'LoRaWANNode']]], - ['setrxbandwidth_1067',['setRxBandwidth',['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64',1,'LR11x0::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()']]], - ['setrxboostedgainmode_1068',['setRxBoostedGainMode',['../class_l_r11x0.html#ab0cf34cc0b67484fbf0f258bff7e9a9a',1,'LR11x0::setRxBoostedGainMode()'],['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x::setRxBoostedGainMode()']]], - ['setsendsequence_1069',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], - ['setspreadingfactor_1070',['setSpreadingFactor',['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_l_r11x0.html#adf6895cbf7af7e00ea06c5b2b5040cb4',1,'LR11x0::setSpreadingFactor()'],['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()']]], - ['setsyncbits_1071',['setSyncBits',['../class_l_r11x0.html#a6501ef362df1a5b71927cfe4e43c202d',1,'LR11x0::setSyncBits()'],['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x::setSyncBits()']]], - ['setsyncword_1072',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord()'],['../class_physical_layer.html#a6c71cdc1238e1368274670758431a977',1,'PhysicalLayer::setSyncWord()'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x128x.html#ad9584464d2e4cc09686cf4e83e65d3e0',1,'SX128x::setSyncWord(const uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#aaf400f33e17c1679c0b55cd70bef90b0',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x126x.html#a827a4754ea53388513d263e5d9171395',1,'SX126x::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_si443x.html#af257fb09afaa6162e1506cfe87b219b3',1,'Si443x::setSyncWord()'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_l_r11x0.html#ab8c54b1b105605ffe0908c5ff9362932',1,'LR11x0::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_l_r11x0.html#a7ffa48f1b6aaaa3f48e4b51f8ada59d8',1,'LR11x0::setSyncWord(uint32_t syncWord)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord()']]], - ['settcxo_1073',['setTCXO',['../class_l_r11x0.html#a971b4ccd1d5479e9d72aa9649e8fef55',1,'LR11x0::setTCXO()'],['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x::setTCXO()']]], - ['settransmitpipe_1074',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], - ['settxpower_1075',['setTxPower',['../class_lo_ra_w_a_n_node.html#a9af613f7d923e7bdcfdbd020132c6d4b',1,'LoRaWANNode']]], - ['setwhitening_1076',['setWhitening',['../class_l_r11x0.html#adcde55b8660c24cf5783942a4132786d',1,'LR11x0::setWhitening()'],['../class_s_x126x.html#ae500bad45638a47264b7e5955a93107d',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], - ['setwifiscanaction_1077',['setWiFiScanAction',['../class_l_r11x0.html#aff6060e116701c60e078d3d930723b4b',1,'LR11x0']]], - ['si4430_1078',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]], - ['si4431_1079',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]], - ['si4432_1080',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]], - ['si443x_1081',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]], - ['sleep_1082',['sleep',['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()'],['../class_s_x128x.html#a98ef7dc21647642b40baf8c0194788c4',1,'SX128x::sleep(bool retainConfig)'],['../class_s_x128x.html#ab0c26aebd432d36974b3066055df6b01',1,'SX128x::sleep() override'],['../class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c',1,'RF69::sleep()'],['../class_s_x127x.html#a1ff85ee7979da08b4e66316f1ba2c6a9',1,'SX127x::sleep()'],['../class_s_x126x.html#aad7e4df3e1ca20d524e1d776047e1013',1,'SX126x::sleep(bool retainConfig)'],['../class_s_x126x.html#a882cec40d9aa98a0d536e6afb65b1719',1,'SX126x::sleep() override'],['../class_si443x.html#ab0cc51d6b4264acf8e3e49a3a490dee9',1,'Si443x::sleep()'],['../classn_r_f24.html#a69b75e0889c609099487a43c8c3b6721',1,'nRF24::sleep()'],['../class_l_r11x0.html#ad2786a2f17af5769c772ebc73df88e1f',1,'LR11x0::sleep(bool retainConfig, uint32_t sleepTime)'],['../class_l_r11x0.html#ad5dde79f751bbd7ea277872e237f2a69',1,'LR11x0::sleep() override']]], - ['spectralscanabort_1083',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]], - ['spectralscangetresult_1084',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]], - ['spectralscangetstatus_1085',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]], - ['spectralscanstart_1086',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]], - ['spibegin_1087',['spiBegin',['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal']]], - ['spibegintransaction_1088',['spiBeginTransaction',['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal']]], - ['spicheckstream_1089',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]], - ['spiend_1090',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal']]], - ['spiendtransaction_1091',['spiEndTransaction',['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal']]], - ['spigetregvalue_1092',['SPIgetRegValue',['../class_module.html#a369e916626c821ecec85f25d5b46d752',1,'Module']]], - ['spireadregister_1093',['SPIreadRegister',['../class_module.html#ab250eb929068e0c890e16e8e6d7cd7e6',1,'Module']]], - ['spireadregisterburst_1094',['SPIreadRegisterBurst',['../class_module.html#ac993ab8e2ea0f5aa93339d1f6ffb54ee',1,'Module']]], - ['spireadstream_1095',['SPIreadStream',['../class_module.html#adacceb57ecfecb09150c135b2b44436f',1,'Module::SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], - ['spisetregvalue_1096',['SPIsetRegValue',['../class_module.html#ade75c5403a05156b43cc7562563ae2d7',1,'Module']]], - ['spitransfer_1097',['spiTransfer',['../class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a',1,'RadioLibHal']]], - ['spitransfer_1098',['SPItransfer',['../class_module.html#aa6df70520aa015dd3a1bccdceae67232',1,'Module']]], - ['spitransferstream_1099',['SPItransferStream',['../class_module.html#a4174159e476de5cef6ea3f89c883cb5e',1,'Module']]], - ['spiwriteregister_1100',['SPIwriteRegister',['../class_module.html#a60ca6b4cae98f7d935191a569d519913',1,'Module']]], - ['spiwriteregisterburst_1101',['SPIwriteRegisterBurst',['../class_module.html#a2826f0fa116eb0a4dd18ddb9b21e4caf',1,'Module']]], - ['spiwritestream_1102',['SPIwriteStream',['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#af99b0e74e67417a88f500ab7261ddd20',1,'Module::SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], - ['sstvclient_1103',['SSTVClient',['../class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a',1,'SSTVClient::SSTVClient(PhysicalLayer *phy)'],['../class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1',1,'SSTVClient::SSTVClient(AFSKClient *audio)']]], - ['standby_1104',['standby',['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby(uint8_t mode)'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby()'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby(uint8_t mode) override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby() override'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby(uint8_t mode) override'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby() override'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby(uint8_t mode) override'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby() override'],['../class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665',1,'LR11x0::standby(uint8_t mode, bool wakeup=true)'],['../class_l_r11x0.html#a74c3f3f8409f1fd0f41347b7d3c7dc24',1,'LR11x0::standby() override'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby(uint8_t mode) override'],['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby() override'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby()']]], - ['startchannelscan_1105',['startChannelScan',['../class_s_x128x.html#a948156af6e886bc46a6c6c5fb10a087a',1,'SX128x::startChannelScan()'],['../class_physical_layer.html#a82a52062d9259c2c546d7bf8072b7a72',1,'PhysicalLayer::startChannelScan(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()'],['../class_s_x128x.html#acdee68d9be73509f464226722551c4d9',1,'SX128x::startChannelScan()'],['../class_s_x126x.html#a09a8fe05c23c652c7ace2e2f1bf51d93',1,'SX126x::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan() override'],['../class_l_r11x0.html#ab073ade3f6b9bbb383e388904812f575',1,'LR11x0::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override'],['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()']]], - ['startdirect_1106',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], - ['startranging_1107',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], - ['startreceive_1108',['startReceive',['../class_si443x.html#ad5adec16d570b0d1b09420919dbe77e4',1,'Si443x::startReceive()'],['../class_s_x126x.html#a44856b641060cff8e9e2019901cd4751',1,'SX126x::startReceive()'],['../class_s_x127x.html#abbe1076252a366c3c4aa323fdff7d40c',1,'SX127x::startReceive() override'],['../class_s_x127x.html#acaab95d4bf57bf33f6269d2f099e48e0',1,'SX127x::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0) override'],['../class_s_x128x.html#a803eaca8bb7fdfa3570cf4aa95f8e729',1,'SX128x::startReceive() override'],['../class_s_x128x.html#a299dd5c01a6f7d2f8a96becd4fff1f09',1,'SX128x::startReceive(uint16_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#ac88f9185b5e9fdc1d89df9797dcdd9b7',1,'PhysicalLayer::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags, RadioLibIrqFlags_t irqMask, size_t len)'],['../class_si443x.html#ae188dec3175a3aec96844a613e911500',1,'Si443x::startReceive()'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive()'],['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive() override'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d',1,'LR11x0::startReceive() override'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)'],['../classn_r_f24.html#a3c6aa3622c887118fb8d8cb2689fdff2',1,'nRF24::startReceive() override'],['../classn_r_f24.html#a38b0084ad11090f918f4f370b9df7514',1,'nRF24::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8',1,'RF69::startReceive() override'],['../class_r_f69.html#a21ae7524fe573f1a7e74dee342418222',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override']]], - ['startreceivedutycycle_1109',['startReceiveDutyCycle',['../class_s_x126x.html#af9352e49d893151d68a314109140fe29',1,'SX126x']]], - ['startreceivedutycycleauto_1110',['startReceiveDutyCycleAuto',['../class_s_x126x.html#ad0f95b62ee987010b00f4be75bf9ab4e',1,'SX126x']]], - ['startsignal_1111',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], - ['starttransmit_1112',['startTransmit',['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit()'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#af79757dbbd62e080c1bad2e608ab940c',1,'nRF24::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_l_r11x0.html#af79757dbbd62e080c1bad2e608ab940c',1,'LR11x0::startTransmit()'],['../class_r_f69.html#af79757dbbd62e080c1bad2e608ab940c',1,'RF69::startTransmit()'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#af79757dbbd62e080c1bad2e608ab940c',1,'Si443x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX126x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX127x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX128x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a187ea9ee96a67cd48e5b28be5b237c95',1,'Si443x::startTransmit()'],['../class_l_r11x0.html#a923654706eff5118ef6e84214e837f27',1,'LR11x0::startTransmit()'],['../class_c_c1101.html#a6ff7e4066d189482c142e05384a38df0',1,'CC1101::startTransmit()'],['../class_l_r11x0.html#a459825c5b46a2ca515e62042d605aa67',1,'LR11x0::startTransmit()'],['../classn_r_f24.html#a8b2365ad11840d1d05b0e17b37ddacd2',1,'nRF24::startTransmit()'],['../class_r_f69.html#af645f6b5d37812f6bb9ec11788e12066',1,'RF69::startTransmit()'],['../class_s_x126x.html#adf06ca0d64a61ce16a0a2f4f9a7d6a86',1,'SX126x::startTransmit()'],['../class_s_x127x.html#ae0902a990203ec67c628e5d006cbaa96',1,'SX127x::startTransmit()'],['../class_s_x128x.html#a46fff7c4b2bb0eed3fd313d6413dc4e9',1,'SX128x::startTransmit()'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af79757dbbd62e080c1bad2e608ab940c',1,'PhysicalLayer::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#af79757dbbd62e080c1bad2e608ab940c',1,'CC1101::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)']]], - ['startwifiscan_1113',['startWifiScan',['../class_l_r11x0.html#a3498e0e621f341e415145879989e0948',1,'LR11x0']]], - ['stm32wlx_1114',['STM32WLx',['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx']]], - ['sx1231_1115',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]], - ['sx1233_1116',['SX1233',['../class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f',1,'SX1233']]], - ['sx1261_1117',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]], - ['sx1262_1118',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]], - ['sx1268_1119',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]], - ['sx126x_1120',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]], - ['sx1272_1121',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]], - ['sx1273_1122',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]], - ['sx1276_1123',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]], - ['sx1277_1124',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]], - ['sx1278_1125',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]], - ['sx1279_1126',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]], - ['sx127x_1127',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]], - ['sx1280_1128',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]], - ['sx1281_1129',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]], - ['sx1282_1130',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]], - ['sx128x_1131',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]] + ['scanchannel_974',['scanChannel',['../class_l_r11x0.html#a5e8f21878bdab1439805aea1e9da168d',1,'LR11x0::scanChannel(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a6a3034c91f5bce70c853ab1620725b3c',1,'LR11x0::scanChannel() override'],['../class_physical_layer.html#af788cf83ceb0222cd0fa4a1323b9041b',1,'PhysicalLayer::scanChannel(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#abd9e39cc745acbf084cfa0d3f4d10718',1,'PhysicalLayer::scanChannel()'],['../class_s_x128x.html#ab55112682432f369fb17f8107ba5158b',1,'SX128x::scanChannel()'],['../class_s_x127x.html#a13ae97e18744dc617bc9326cfbaad3a3',1,'SX127x::scanChannel()'],['../class_s_x126x.html#a373012fb3276872238f654b66879a710',1,'SX126x::scanChannel(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#acb8611a9c3862dd1bfa73ef47b8f9b20',1,'SX126x::scanChannel() override'],['../class_s_x128x.html#a2f8427103d6609f3ac44b23fcca4f301',1,'SX128x::scanChannel()']]], + ['scheduletransmission_975',['scheduleTransmission',['../class_lo_ra_w_a_n_node.html#a16c7ae2edfe324e11498b13aa042665f',1,'LoRaWANNode']]], + ['sendframe_976',['sendFrame',['../class_a_p_r_s_client.html#a05076f44e5708f1230894c11053707b1',1,'APRSClient::sendFrame()'],['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client::sendFrame()']]], + ['sendheader_977',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], + ['sendline_978',['sendLine',['../class_s_s_t_v_client.html#ab8579712e82e806960ced7bf2750d9c6',1,'SSTVClient']]], + ['sendmaccommandreq_979',['sendMacCommandReq',['../class_lo_ra_w_a_n_node.html#adef05650cf4eb92042ca5e2688c1e164',1,'LoRaWANNode']]], + ['sendmice_980',['sendMicE',['../class_a_p_r_s_client.html#af8f28eba026b0f0a25c8ba54a96f4743',1,'APRSClient']]], + ['sendposition_981',['sendPosition',['../class_a_p_r_s_client.html#aebc95b926fb3d37f8489f895aa576d0e',1,'APRSClient']]], + ['sendreceive_982',['sendReceive',['../class_lo_ra_w_a_n_node.html#a07ab107de181bde59c2731a5a64a1e2e',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a7123f9a907df9224b9b01282c12af459',1,'LoRaWANNode::sendReceive(uint8_t *dataUp, size_t lenUp, uint8_t fPort=1, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a85cf006ffd97ece3b2d2974b715540cb',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, uint8_t *dataDown, size_t *lenDown, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)'],['../class_lo_ra_w_a_n_node.html#a11c2fbe631063da69355f8d74f4bf3b8',1,'LoRaWANNode::sendReceive(const char *strUp, uint8_t fPort, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)']]], + ['sendtone_983',['sendTone',['../class_pager_client.html#a8f9af4c0a5c2e9de7cdfa1a907479111',1,'PagerClient']]], + ['setaccessaddress_984',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], + ['setaddresswidth_985',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], + ['setadr_986',['setADR',['../class_lo_ra_w_a_n_node.html#ae222275f807f472083ea6100c23c75ff',1,'LoRaWANNode']]], + ['setaeskey_987',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], + ['setafc_988',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], + ['setafcagctrigger_989',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], + ['setafcbandwidth_990',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], + ['setambienttemperature_991',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], + ['setautoack_992',['setAutoAck',['../classn_r_f24.html#aca941c9235ba1212257288554eb4b7fe',1,'nRF24::setAutoAck(bool autoAckOn=true)'],['../classn_r_f24.html#ac1c3419442d93abeede39e7fda4db62e',1,'nRF24::setAutoAck(uint8_t pipeNum, bool autoAckOn)']]], + ['setbandwidth_993',['setBandwidth',['../class_l_r11x0.html#a70d9849eb8e5ce2090e4e332252753d7',1,'LR11x0::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()']]], + ['setbitrate_994',['setBitRate',['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#ad6570f33bae09bc8b7617f9da39033ac',1,'SX128x::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x126x.html#ac38a19db6b8b9aff438d6e23051d487d',1,'SX126x::setBitRate()'],['../class_si443x.html#afcba86e79d229b3fd7268dcbd7c47b62',1,'Si443x::setBitRate()'],['../class_r_f69.html#aa3bfb830901728e9a3c140036aa91c56',1,'RF69::setBitRate()'],['../classn_r_f24.html#a760d3f47f58ddacdf41975447484a47c',1,'nRF24::setBitRate()'],['../class_l_r11x0.html#ab1954e4733a7fbea4129d9a2de2285d9',1,'LR11x0::setBitRate()'],['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()'],['../class_s_x1233.html#a98e0248cfcca7158261f7ebb31e0aa9f',1,'SX1233::setBitRate()']]], + ['setbitratetolerance_995',['setBitRateTolerance',['../class_c_c1101.html#adc76af01dbc9171b3fdd7570624a4d4f',1,'CC1101']]], + ['setbroadcastaddress_996',['setBroadcastAddress',['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()'],['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::setBroadcastAddress()']]], + ['setbuffernonces_997',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], + ['setbuffersession_998',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], + ['setchannelscanaction_999',['setChannelScanAction',['../class_s_t_m32_w_lx.html#a119ad225f9eba91e7c38f82cf0f1c89d',1,'STM32WLx::setChannelScanAction()'],['../class_s_x126x.html#aed0e7dcd60479c9db3d7a3408e7f396d',1,'SX126x::setChannelScanAction()'],['../class_s_x127x.html#ac23c2b384ae8611d59e10ef6a14fe7e4',1,'SX127x::setChannelScanAction()'],['../class_physical_layer.html#ae11c191a7edf3116bf468b9153237260',1,'PhysicalLayer::setChannelScanAction()']]], + ['setcodingrate_1000',['setCodingRate',['../class_s_x1278.html#a834f26a0bd3fc8a03fa7e68aa4daf9e1',1,'SX1278::setCodingRate()'],['../class_s_x128x.html#a9da544e4a6120f73a078b46c6138505a',1,'SX128x::setCodingRate()'],['../class_s_x1272.html#a960913438feccad4c1913a9222384a5f',1,'SX1272::setCodingRate()'],['../class_l_r11x0.html#a583f2d5ed601a98c609dbf0d57f2f541',1,'LR11x0::setCodingRate()'],['../class_s_x126x.html#afd3113858966e878e9c67a1e710bd586',1,'SX126x::setCodingRate()']]], + ['setcorrection_1001',['setCorrection',['../class_a_x25_client.html#a74a43c60c84e4150b9508c83e461d24e',1,'AX25Client::setCorrection()'],['../class_bell_client.html#a90f3f33a09a4cf8d544ca1e9a23beae2',1,'BellClient::setCorrection()'],['../class_f_s_k4_client.html#aab85cb6519e5448dc332bf17bd60f90a',1,'FSK4Client::setCorrection()'],['../class_s_s_t_v_client.html#a0e9cc17123f26d1e7ae2a2b93546515e',1,'SSTVClient::setCorrection()']]], + ['setcrc_1002',['setCRC',['../class_l_r11x0.html#a551b82787288b0b14e4d3124e6744dc3',1,'LR11x0::setCRC()'],['../class_s_x126x.html#a95007639c2648a1dbb614493224606f1',1,'SX126x::setCRC()'],['../class_s_x1272.html#abd912314a977f92c464d36d862329ffc',1,'SX1272::setCRC()'],['../class_s_x1278.html#ac0be7586b8e40355bbd29d78ae9941d1',1,'SX1278::setCRC()'],['../class_s_x128x.html#aa4b1e0b96347011522e053f30202c0fe',1,'SX128x::setCRC()']]], + ['setcrcfiltering_1003',['setCrcFiltering',['../class_c_c1101.html#a60695681fc74a37f2a31a9638552e877',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()'],['../class_s_x127x.html#ab531ad461b250a060e92d9c744e79070',1,'SX127x::setCrcFiltering()']]], + ['setcsma_1004',['setCSMA',['../class_lo_ra_w_a_n_node.html#a2d9a53560ebfbaf006eefd9761424d80',1,'LoRaWANNode']]], + ['setcurrentlimit_1005',['setCurrentLimit',['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()'],['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()']]], + ['setdatarate_1006',['setDatarate',['../class_lo_ra_w_a_n_node.html#a14e8a8a098df28ff5ee294f235500499',1,'LoRaWANNode']]], + ['setdatarate_1007',['setDataRate',['../class_physical_layer.html#a6ee1fed6bbb8d3571974153ac6f26751',1,'PhysicalLayer::setDataRate()'],['../class_s_x128x.html#adbf5a9ac62460efb1c709e51260dbe3d',1,'SX128x::setDataRate()'],['../class_s_x1278.html#a286f1ee00e2c7f2ab1bd06b66196c3f9',1,'SX1278::setDataRate()'],['../class_s_x1277.html#ac4bfae9258662381e685e46c803c984c',1,'SX1277::setDataRate()'],['../class_s_x1273.html#acaffc772f70e7db371cbe736dc4a19ab',1,'SX1273::setDataRate()'],['../class_s_x1272.html#a5b79b7cd20c4c3cd1f486f777b3457d1',1,'SX1272::setDataRate()'],['../class_s_x126x.html#af30a581d31feae6f50c0591d1ee113f1',1,'SX126x::setDataRate()'],['../class_l_r11x0.html#a056e65c58ff8fb18bd84917512790ee6',1,'LR11x0::setDataRate()'],['../class_l_l_c_c68.html#ac630770441cadc547892173bde7504f9',1,'LLCC68::setDataRate()']]], + ['setdatashaping_1008',['setDataShaping',['../class_physical_layer.html#aeba04366a0cf05ff3d8227c4f7c8e1e9',1,'PhysicalLayer::setDataShaping()'],['../class_l_r11x0.html#a5a33df702da3f5b010e07d5e6fac7aa6',1,'LR11x0::setDataShaping()'],['../class_external_radio.html#abe0bfb0f178783eff28bdc867e9324fd',1,'ExternalRadio::setDataShaping()'],['../class_s_x128x.html#a99491c705e88dddc820f884b778f1660',1,'SX128x::setDataShaping()'],['../class_s_x1278.html#afb740a4925b64d83d5edca10d93f0563',1,'SX1278::setDataShaping()'],['../class_s_x1272.html#a91aca64124321c07a67f26b3c6934aea',1,'SX1272::setDataShaping()'],['../class_si443x.html#ade08c79074c7e4414d34eefa25cee168',1,'Si443x::setDataShaping()'],['../class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a',1,'RF69::setDataShaping()'],['../classn_r_f24.html#a0db248d2bcdb4ca2b401e8e638442916',1,'nRF24::setDataShaping()'],['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::setDataShaping()'],['../class_s_x126x.html#a1d8f4deb555844b24c2426dd86e69676',1,'SX126x::setDataShaping()']]], + ['setdatashapingook_1009',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], + ['setdevicestatus_1010',['setDeviceStatus',['../class_lo_ra_w_a_n_node.html#a5449e301634dff1838a1b024b4067034',1,'LoRaWANNode']]], + ['setdio0action_1011',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], + ['setdio1action_1012',['setDio1Action',['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()']]], + ['setdio2asrfswitch_1013',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], + ['setdiomapping_1014',['setDIOMapping',['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()'],['../class_r_f69.html#a7243b3396edc1e6e67575894a5033afe',1,'RF69::setDIOMapping()'],['../class_s_x127x.html#af7d373bc93e99790912cebe8d5ae6403',1,'SX127x::setDIOMapping()'],['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()']]], + ['setdiopreambledetect_1015',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], + ['setdirectaction_1016',['setDirectAction',['../class_s_x128x.html#a2326cf28c385b8dd709cb62c9f665000',1,'SX128x::setDirectAction()'],['../class_s_x127x.html#ae4b99d1bc67ac2c81eeb11dd6793a8c5',1,'SX127x::setDirectAction()'],['../class_physical_layer.html#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction()'],['../class_r_f69.html#a9852fe520aec018d2bb4aff0cd17de77',1,'RF69::setDirectAction()'],['../class_si443x.html#a48a59ff1ddc7c8ec820328174955de43',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#a4f514b341b8982650526c6d8e20fd1a4',1,'SX126x::setDirectAction()'],['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::setDirectAction()']]], + ['setdirectsyncword_1017',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], + ['setdutycycle_1018',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], + ['setdwelltime_1019',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], + ['setencoding_1020',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::setEncoding()'],['../class_l_r11x0.html#a8ae178a17f6e41b545b79cfffd3e2864',1,'LR11x0::setEncoding()'],['../classn_r_f24.html#a0429a9d6524005065e6fac21aaebdcbf',1,'nRF24::setEncoding()'],['../class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2',1,'RF69::setEncoding()'],['../class_si443x.html#a1382fc3b68f447e381613e6670747128',1,'Si443x::setEncoding()'],['../class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60',1,'SX126x::setEncoding()'],['../class_s_x127x.html#abad2d455012bd28d304589c8164390eb',1,'SX127x::setEncoding()'],['../class_s_x128x.html#a8720a388d2cd10fac3112b89f4a80947',1,'SX128x::setEncoding()'],['../class_external_radio.html#ae619f011daea49a97098d2897e5a3c2c',1,'ExternalRadio::setEncoding()'],['../class_physical_layer.html#acb45b2342400a03a914a91d2ac7fb488',1,'PhysicalLayer::setEncoding()']]], + ['setfhsshoppingperiod_1021',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], + ['setfifoemptyaction_1022',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], + ['setfifofullaction_1023',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], + ['setfrequency_1024',['setFrequency',['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x128x.html#ab9e16231c2c6bd0e4b4c6c2900b5b332',1,'SX128x::setFrequency()'],['../class_s_x1279.html#ab60691d073ca75ef09dab7a8f28fb7fb',1,'SX1279::setFrequency()'],['../class_s_x1278.html#adb4d95d3b2798cf8ea94890ae71dcc59',1,'SX1278::setFrequency()'],['../class_s_x1277.html#ad68ea24b46d9e7d3f82282cdccd20e00',1,'SX1277::setFrequency()'],['../class_s_x1276.html#a981b59110e514b7dcaec8490e1c4320c',1,'SX1276::setFrequency()'],['../class_s_x1272.html#ac1467a23e1f1bfdbd02f6d30654ed850',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency()'],['../class_si4432.html#aed3561abdb30b4eaad52d984366aadf1',1,'Si4432::setFrequency()'],['../class_s_x1268.html#af412a9361fe413b2d0c426100056d8c2',1,'SX1268::setFrequency()'],['../class_s_x1262.html#a2122feee1a3bffaaa20e85b24dc8a899',1,'SX1262::setFrequency()'],['../class_si4430.html#a3959e91bcae77b8240e9e447985e05b3',1,'Si4430::setFrequency()'],['../class_r_f69.html#aa7f47c37eec6c7e3ebf6e6d30ebd5532',1,'RF69::setFrequency()'],['../classn_r_f24.html#a18f24764b2ecffc076e72dce0b036116',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a8d13c0f91a90a2aab43229133caf41fb',1,'LR1120::setFrequency(float freq) override'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1110.html#ade94d20ea438cbd92c61e28d2232d7e8',1,'LR1110::setFrequency(float freq) override'],['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency()']]], + ['setfrequencydeviation_1025',['setFrequencyDeviation',['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()'],['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()']]], + ['setgain_1026',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], + ['setgaincontrol_1027',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], + ['setgdo0action_1028',['setGdo0Action',['../class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7',1,'CC1101']]], + ['setgdo2action_1029',['setGdo2Action',['../class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9',1,'CC1101']]], + ['sethighsensitivitymode_1030',['setHighSensitivityMode',['../class_s_x128x.html#a6e45fbfaec7063e52e188f47a3a585a5',1,'SX128x']]], + ['setinversion_1031',['setInversion',['../class_hell_client.html#ae43025b9d55ee21a322bb5d7ee1065b0',1,'HellClient']]], + ['setirq_1032',['setIrq',['../class_physical_layer.html#a8564f9834a0247e93e7620c23559ceb8',1,'PhysicalLayer']]], + ['setirqaction_1033',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()'],['../class_l_r11x0.html#a49116d006b60128fe6f73a6a868a6d18',1,'LR11x0::setIrqAction(void(*func)(void))']]], + ['setirqflags_1034',['setIrqFlags',['../class_l_r11x0.html#a62c715ab18ea8a2e08a2791d3e764ee9',1,'LR11x0::setIrqFlags()'],['../class_s_x126x.html#a50e757c2a63e5c7da5b0d0d6c00f91b5',1,'SX126x::setIrqFlags()'],['../class_s_x127x.html#aae42b94ab2ecf729f29f101222e97666',1,'SX127x::setIrqFlags()'],['../class_s_x128x.html#a6a2ec5d316975f390f20b4e0a2e11e98',1,'SX128x::setIrqFlags()'],['../class_physical_layer.html#af88dcb54dc8e9a1edaf9f1c3e5ee2b74',1,'PhysicalLayer::setIrqFlags()']]], + ['setlnatestboost_1035',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], + ['setlowbatterythreshold_1036',['setLowBatteryThreshold',['../class_s_x127x.html#a9ca9aa18e13e8390ec437e249e1d2472',1,'SX127x']]], + ['setlrfhssconfig_1037',['setLrFhssConfig',['../class_l_r11x0.html#a8c1def9a01021a52f5bb82c119a9ad35',1,'LR11x0::setLrFhssConfig()'],['../class_s_x126x.html#aa1e7777fc8237e2c9d933cd4b6304e28',1,'SX126x::setLrFhssConfig()']]], + ['setmodem_1038',['setModem',['../class_bell_client.html#a163f65f3fcce87d9bea558b34c19bd47',1,'BellClient']]], + ['setnodeaddress_1039',['setNodeAddress',['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()'],['../class_s_x126x.html#adf54f7b83aa47ad0b803147622b3c580',1,'SX126x::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_l_r11x0.html#a605f5c74ce523abad256866abe133d2e',1,'LR11x0::setNodeAddress()']]], + ['setook_1040',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a465df5a2e1f924f6d3ba4eae765847b7',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK(bool enableOOK)']]], + ['setookfixedorfloorthreshold_1041',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], + ['setookfixedthreshold_1042',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], + ['setookpeakthresholddecrement_1043',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]], + ['setookpeakthresholdstep_1044',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], + ['setookthresholdtype_1045',['setOokThresholdType',['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()'],['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()']]], + ['setoutputpower_1046',['setOutputPower',['../class_s_x1261.html#a3d197bb8a301f3594c7bfa1c9375aef1',1,'SX1261::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x128x.html#a1bc3372c47a4e3c81ef15bee448ba6b6',1,'SX128x::setOutputPower()'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1268.html#a6b6adaee1c8d76c3d766225298d84709',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa455a7f0e69abdcca55cf35388d9dc52',1,'SX1262::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_si4432.html#a5e3017bce6d66d35b867e7878d108c68',1,'Si4432::setOutputPower()'],['../class_si4431.html#ad1538dbe67ed5d3682591d1d780ab0e9',1,'Si4431::setOutputPower()'],['../class_si4430.html#ab1303e014a4b8d2307a2b1deb061fdeb',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../classn_r_f24.html#a4fa66ce5fb6d7b22bbb439c2f9103bf3',1,'nRF24::setOutputPower()'],['../class_l_r1120.html#a2e2ea0a2f6d3a8d81e0f2be35848bbc7',1,'LR1120::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1120.html#a1b1321eb695e4a6b583074bb92c33193',1,'LR1120::setOutputPower(int8_t power) override'],['../class_l_r1110.html#ae4eaaa6411bb1eeb131613fb3f43e5d1',1,'LR1110::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r1110.html#a65c08f0475f888537e55401b75e58b23',1,'LR1110::setOutputPower(int8_t power) override'],['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()']]], + ['setpacketreceivedaction_1047',['setPacketReceivedAction',['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#ad98c4526ef971f9aadb30e351a37eaf9',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ae236a467095fb5364d0fc4a98d85f96e',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#a7603aa60ae8d975eb262a4b7e2aed1d0',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#ad23dafdeb21b97165be74ef8f093866c',1,'STM32WLx::setPacketReceivedAction()'],['../class_r_f69.html#a74962c069e08890ac9566d48634c778e',1,'RF69::setPacketReceivedAction()'],['../class_si443x.html#a0e098ea9aa3945f0c38f59efe43b147e',1,'Si443x::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction()'],['../classn_r_f24.html#a60df9afa489eabe3a3ca193ab7709165',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#ac2a8ece736198c966e3870dac09f4e87',1,'LR11x0::setPacketReceivedAction(void(*func)(void)) override']]], + ['setpacketsentaction_1048',['setPacketSentAction',['../class_l_r11x0.html#a92299e41f839590008b4e344776838a1',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a26b5f873db167733df143a0608eea3ac',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a97603856caada65676ff4b11630c7f72',1,'RF69::setPacketSentAction()'],['../class_si443x.html#af2d36121ca94736ef3ecb4c09aded753',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a7c0e3aef03f0b6834d0465d8f8568c32',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#ac79f7ebab97ae91fff6933be3207c873',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a3530e8e19cfe4d96fe49ca4e6386b099',1,'SX127x::setPacketSentAction()'],['../class_s_x128x.html#a1e6f938ce715dad9a6609bf56626a50d',1,'SX128x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()']]], + ['setpaconfig_1049',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], + ['setparamptime_1050',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], + ['setpreamblelength_1051',['setPreambleLength',['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength(uint8_t preambleLength, uint8_t qualityThreshold)']]], + ['setpromiscuousmode_1052',['setPromiscuousMode',['../class_c_c1101.html#ac1155543b27e46fa27aa4c9180da18bb',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#ae004326d663a9d6a9c30e792aa368b49',1,'RF69::setPromiscuousMode()']]], + ['setreceivepipe_1053',['setReceivePipe',['../classn_r_f24.html#a31bcc5a8c3747bf08a273dbdadc5481a',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t *addr)'],['../classn_r_f24.html#ab5bc08aef88d8cf41c38369044005da8',1,'nRF24::setReceivePipe(uint8_t pipeNum, uint8_t addrByte)']]], + ['setrecvsequence_1054',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], + ['setregulatordcdc_1055',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x::setRegulatorDCDC()'],['../class_l_r11x0.html#a1ad485f14a333f06b642f2d60aacf76c',1,'LR11x0::setRegulatorDCDC()']]], + ['setregulatorldo_1056',['setRegulatorLDO',['../class_l_r11x0.html#a92ae10630cc327f441809ac1406737fd',1,'LR11x0::setRegulatorLDO()'],['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x::setRegulatorLDO()']]], + ['setrepeaters_1057',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], + ['setrfswitchpins_1058',['setRfSwitchPins',['../class_s_x126x.html#a0a0df468eacc71c1b2a093ac06bfff51',1,'SX126x::setRfSwitchPins()'],['../class_s_x128x.html#a5ba683fbc4a46418ce3736f224fb55f2',1,'SX128x::setRfSwitchPins()'],['../class_s_x127x.html#a8ca9edcae05060cce3ff7ee58faeb4e2',1,'SX127x::setRfSwitchPins()'],['../class_si443x.html#a43e7ceeff9114b35ab89f1d69916b375',1,'Si443x::setRfSwitchPins()'],['../class_r_f69.html#ac341945538a84430c61f80f610a94411',1,'RF69::setRfSwitchPins()'],['../class_c_c1101.html#a5ef45183690bb1879f106af079b01140',1,'CC1101::setRfSwitchPins()'],['../class_module.html#a7d3adea64acab11c47c804afc74bd4f3',1,'Module::setRfSwitchPins(uint32_t rxEn, uint32_t txEn)']]], + ['setrfswitchstate_1059',['setRfSwitchState',['../class_module.html#afbed643f082286012bf44bba22381ae6',1,'Module']]], + ['setrfswitchtable_1060',['setRfSwitchTable',['../class_l_r11x0.html#a1981f0dfceca2b6175a69530ea13d643',1,'LR11x0::setRfSwitchTable()'],['../class_s_t_m32_w_lx.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'STM32WLx::setRfSwitchTable()'],['../class_s_x128x.html#ad5789bd27d46b24f54aac9ca55ec9958',1,'SX128x::setRfSwitchTable()'],['../class_s_x127x.html#ab9625a5246a45112267ce441ac2de254',1,'SX127x::setRfSwitchTable()'],['../class_s_x126x.html#a2cb5ed645ebcc6f3f17d77e32c2ccdd7',1,'SX126x::setRfSwitchTable()'],['../class_si443x.html#a8898f11cf9dabd9a5ad717376fdbffa6',1,'Si443x::setRfSwitchTable()'],['../class_r_f69.html#afff64ceef5f496ce035ff6d12d6bcc3c',1,'RF69::setRfSwitchTable()'],['../class_c_c1101.html#a7b401995be4bc136063a035ce1820634',1,'CC1101::setRfSwitchTable()'],['../class_module.html#ac308fa817a5c36c5dc724a0d15cefd4d',1,'Module::setRfSwitchTable()']]], + ['setrssiconfig_1061',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], + ['setrssithreshold_1062',['setRSSIThreshold',['../class_r_f69.html#afcb723ae58d6519e5b95d017d2beb78a',1,'RF69::setRSSIThreshold()'],['../class_s_x127x.html#a5094d0f471aaa428167816d1ac30bb76',1,'SX127x::setRSSIThreshold()']]], + ['setrx2dr_1063',['setRx2Dr',['../class_lo_ra_w_a_n_node.html#addfd8ac3d0bfe5a273e9ba10e51f8025',1,'LoRaWANNode']]], + ['setrxbandwidth_1064',['setRxBandwidth',['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_l_r11x0.html#a25f5ee68b3c2638ae613c87ed1c3fc64',1,'LR11x0::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()']]], + ['setrxboostedgainmode_1065',['setRxBoostedGainMode',['../class_l_r11x0.html#ab0cf34cc0b67484fbf0f258bff7e9a9a',1,'LR11x0::setRxBoostedGainMode()'],['../class_s_x126x.html#a920aa76ff5f0f579424ef6de92e588c8',1,'SX126x::setRxBoostedGainMode()']]], + ['setsendsequence_1066',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], + ['setspreadingfactor_1067',['setSpreadingFactor',['../class_s_x1278.html#af70c22fe38bc3b944070ccbc083fed08',1,'SX1278::setSpreadingFactor()'],['../class_s_x128x.html#ae435f57132f76f4283abb870176acf54',1,'SX128x::setSpreadingFactor()'],['../class_s_x1277.html#a1df27f0b0b6e5b308879875e4d8306cf',1,'SX1277::setSpreadingFactor()'],['../class_s_x1273.html#a1dbc5a0847c2b62d2ec5fc439ddfec3f',1,'SX1273::setSpreadingFactor()'],['../class_s_x1272.html#a82084ac58502c83d2ada998410307490',1,'SX1272::setSpreadingFactor()'],['../class_s_x126x.html#ae5993359ace652fbdc862eb23fdd263d',1,'SX126x::setSpreadingFactor()'],['../class_l_r11x0.html#adf6895cbf7af7e00ea06c5b2b5040cb4',1,'LR11x0::setSpreadingFactor()'],['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()']]], + ['setsyncbits_1068',['setSyncBits',['../class_l_r11x0.html#a6501ef362df1a5b71927cfe4e43c202d',1,'LR11x0::setSyncBits()'],['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x::setSyncBits()']]], + ['setsyncword_1069',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord()'],['../class_physical_layer.html#a6c71cdc1238e1368274670758431a977',1,'PhysicalLayer::setSyncWord()'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x128x.html#ad9584464d2e4cc09686cf4e83e65d3e0',1,'SX128x::setSyncWord(const uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#aaf400f33e17c1679c0b55cd70bef90b0',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x126x.html#a827a4754ea53388513d263e5d9171395',1,'SX126x::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_si443x.html#af257fb09afaa6162e1506cfe87b219b3',1,'Si443x::setSyncWord()'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_l_r11x0.html#ab8c54b1b105605ffe0908c5ff9362932',1,'LR11x0::setSyncWord(uint8_t *syncWord, size_t len) override'],['../class_l_r11x0.html#a7ffa48f1b6aaaa3f48e4b51f8ada59d8',1,'LR11x0::setSyncWord(uint32_t syncWord)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord()']]], + ['settcxo_1070',['setTCXO',['../class_l_r11x0.html#a971b4ccd1d5479e9d72aa9649e8fef55',1,'LR11x0::setTCXO()'],['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x::setTCXO()']]], + ['settransmitpipe_1071',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], + ['settxpower_1072',['setTxPower',['../class_lo_ra_w_a_n_node.html#a9af613f7d923e7bdcfdbd020132c6d4b',1,'LoRaWANNode']]], + ['setwhitening_1073',['setWhitening',['../class_l_r11x0.html#adcde55b8660c24cf5783942a4132786d',1,'LR11x0::setWhitening()'],['../class_s_x126x.html#ae500bad45638a47264b7e5955a93107d',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], + ['setwifiscanaction_1074',['setWiFiScanAction',['../class_l_r11x0.html#aff6060e116701c60e078d3d930723b4b',1,'LR11x0']]], + ['si4430_1075',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]], + ['si4431_1076',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]], + ['si4432_1077',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]], + ['si443x_1078',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]], + ['sleep_1079',['sleep',['../class_physical_layer.html#af1bb9a5da26da8829795ebb72e9c666e',1,'PhysicalLayer::sleep()'],['../class_s_x128x.html#a98ef7dc21647642b40baf8c0194788c4',1,'SX128x::sleep(bool retainConfig)'],['../class_s_x128x.html#ab0c26aebd432d36974b3066055df6b01',1,'SX128x::sleep() override'],['../class_r_f69.html#adec9debf69f5ee846a5b6e34831ade3c',1,'RF69::sleep()'],['../class_s_x127x.html#a1ff85ee7979da08b4e66316f1ba2c6a9',1,'SX127x::sleep()'],['../class_s_x126x.html#aad7e4df3e1ca20d524e1d776047e1013',1,'SX126x::sleep(bool retainConfig)'],['../class_s_x126x.html#a882cec40d9aa98a0d536e6afb65b1719',1,'SX126x::sleep() override'],['../class_si443x.html#ab0cc51d6b4264acf8e3e49a3a490dee9',1,'Si443x::sleep()'],['../classn_r_f24.html#a69b75e0889c609099487a43c8c3b6721',1,'nRF24::sleep()'],['../class_l_r11x0.html#ad2786a2f17af5769c772ebc73df88e1f',1,'LR11x0::sleep(bool retainConfig, uint32_t sleepTime)'],['../class_l_r11x0.html#ad5dde79f751bbd7ea277872e237f2a69',1,'LR11x0::sleep() override']]], + ['spectralscanabort_1080',['spectralScanAbort',['../class_s_x126x.html#a865397e1cca38bec2d055c047825ea07',1,'SX126x']]], + ['spectralscangetresult_1081',['spectralScanGetResult',['../class_s_x126x.html#ae473773e5bed4b08452e80311bdb26f2',1,'SX126x']]], + ['spectralscangetstatus_1082',['spectralScanGetStatus',['../class_s_x126x.html#a5595fff99d76d50d711b8cdad98527c4',1,'SX126x']]], + ['spectralscanstart_1083',['spectralScanStart',['../class_s_x126x.html#a8a3ad4e12df862ab18b326d9dba26d66',1,'SX126x']]], + ['spibegin_1084',['spiBegin',['../class_radio_lib_hal.html#aa1f8e5cd323e53ef9fa977734a05d030',1,'RadioLibHal']]], + ['spibegintransaction_1085',['spiBeginTransaction',['../class_radio_lib_hal.html#abe787d5e556190eef2c63e1581235460',1,'RadioLibHal']]], + ['spicheckstream_1086',['SPIcheckStream',['../class_module.html#a5efa7ae78cab1d7f43005e965923f769',1,'Module']]], + ['spiend_1087',['spiEnd',['../class_radio_lib_hal.html#a41c85e560155d644f5b4ce8444dd8b64',1,'RadioLibHal']]], + ['spiendtransaction_1088',['spiEndTransaction',['../class_radio_lib_hal.html#a68d9271c76f8c96afb734a4634bf92e9',1,'RadioLibHal']]], + ['spigetregvalue_1089',['SPIgetRegValue',['../class_module.html#a369e916626c821ecec85f25d5b46d752',1,'Module']]], + ['spireadregister_1090',['SPIreadRegister',['../class_module.html#ab250eb929068e0c890e16e8e6d7cd7e6',1,'Module']]], + ['spireadregisterburst_1091',['SPIreadRegisterBurst',['../class_module.html#ac993ab8e2ea0f5aa93339d1f6ffb54ee',1,'Module']]], + ['spireadstream_1092',['SPIreadStream',['../class_module.html#adacceb57ecfecb09150c135b2b44436f',1,'Module::SPIreadStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#a085415b49ff72238f118b937ad896cbd',1,'Module::SPIreadStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], + ['spisetregvalue_1093',['SPIsetRegValue',['../class_module.html#ade75c5403a05156b43cc7562563ae2d7',1,'Module']]], + ['spitransfer_1094',['spiTransfer',['../class_radio_lib_hal.html#aebcaaf0cefdaaf5b572d4261e472ac8a',1,'RadioLibHal']]], + ['spitransfer_1095',['SPItransfer',['../class_module.html#aa6df70520aa015dd3a1bccdceae67232',1,'Module']]], + ['spitransferstream_1096',['SPItransferStream',['../class_module.html#a4174159e476de5cef6ea3f89c883cb5e',1,'Module']]], + ['spiwriteregister_1097',['SPIwriteRegister',['../class_module.html#a60ca6b4cae98f7d935191a569d519913',1,'Module']]], + ['spiwriteregisterburst_1098',['SPIwriteRegisterBurst',['../class_module.html#a2826f0fa116eb0a4dd18ddb9b21e4caf',1,'Module']]], + ['spiwritestream_1099',['SPIwriteStream',['../class_module.html#a7acbe601ebe6398781d0f2de5177305e',1,'Module::SPIwriteStream(uint8_t *cmd, uint8_t cmdLen, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)'],['../class_module.html#af99b0e74e67417a88f500ab7261ddd20',1,'Module::SPIwriteStream(uint16_t cmd, uint8_t *data, size_t numBytes, bool waitForGpio=true, bool verify=true)']]], + ['sstvclient_1100',['SSTVClient',['../class_s_s_t_v_client.html#af15cf501c00172270d2d2c43d7a7100a',1,'SSTVClient::SSTVClient(PhysicalLayer *phy)'],['../class_s_s_t_v_client.html#a99e46bec8403dfc36b9e5b102b1f7cf1',1,'SSTVClient::SSTVClient(AFSKClient *audio)']]], + ['standby_1101',['standby',['../class_s_x127x.html#aa565bbff460e487672953dc05d335cb0',1,'SX127x::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()'],['../class_physical_layer.html#a7d5da4311092e3df6b193ff303a0c5e8',1,'PhysicalLayer::standby(uint8_t mode)'],['../class_physical_layer.html#acbcaf6aefcb77a354797e66222fe5018',1,'PhysicalLayer::standby()'],['../class_f_s_k4_client.html#a8b5765371ebbf68a21bc0bbfdf9f82ac',1,'FSK4Client::standby()'],['../class_bell_client.html#a57c19c733b0dfe80bd321f23b18c1e80',1,'BellClient::standby()'],['../class_s_x128x.html#a389aab93e24ec8c7cc9c14de90e5dfae',1,'SX128x::standby(uint8_t mode, bool wakeup=false)'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x126x.html#a2fa0384a529746811e2dcb2eeb4188ec',1,'SX126x::standby()'],['../class_si443x.html#acbc0f95f32ca961294666405596ff529',1,'Si443x::standby(uint8_t mode) override'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby() override'],['../class_r_f69.html#a6e3002ab0c58e2087a7d101eda7afa82',1,'RF69::standby(uint8_t mode) override'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby() override'],['../classn_r_f24.html#a03e9ae7fbd0d55887acf1996df28ed5b',1,'nRF24::standby(uint8_t mode) override'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby() override'],['../class_l_r11x0.html#a2d682ec2ca0ddf4da41a93dd8e728665',1,'LR11x0::standby(uint8_t mode, bool wakeup=true)'],['../class_l_r11x0.html#a74c3f3f8409f1fd0f41347b7d3c7dc24',1,'LR11x0::standby() override'],['../class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a',1,'CC1101::standby(uint8_t mode) override'],['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby() override'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby()']]], + ['startchannelscan_1102',['startChannelScan',['../class_s_x128x.html#a948156af6e886bc46a6c6c5fb10a087a',1,'SX128x::startChannelScan()'],['../class_physical_layer.html#a82a52062d9259c2c546d7bf8072b7a72',1,'PhysicalLayer::startChannelScan(const ChannelScanConfig_t &config)'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()'],['../class_s_x128x.html#acdee68d9be73509f464226722551c4d9',1,'SX128x::startChannelScan()'],['../class_s_x126x.html#a09a8fe05c23c652c7ace2e2f1bf51d93',1,'SX126x::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan() override'],['../class_l_r11x0.html#ab073ade3f6b9bbb383e388904812f575',1,'LR11x0::startChannelScan(const ChannelScanConfig_t &config) override'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override'],['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()']]], + ['startdirect_1103',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], + ['startranging_1104',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], + ['startreceive_1105',['startReceive',['../class_si443x.html#ad5adec16d570b0d1b09420919dbe77e4',1,'Si443x::startReceive()'],['../class_s_x126x.html#a44856b641060cff8e9e2019901cd4751',1,'SX126x::startReceive()'],['../class_s_x127x.html#abbe1076252a366c3c4aa323fdff7d40c',1,'SX127x::startReceive() override'],['../class_s_x127x.html#acaab95d4bf57bf33f6269d2f099e48e0',1,'SX127x::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0) override'],['../class_s_x128x.html#a803eaca8bb7fdfa3570cf4aa95f8e729',1,'SX128x::startReceive() override'],['../class_s_x128x.html#a299dd5c01a6f7d2f8a96becd4fff1f09',1,'SX128x::startReceive(uint16_t timeout, RadioLibIrqFlags_t irqFlags=RADIOLIB_IRQ_RX_DEFAULT_FLAGS, RadioLibIrqFlags_t irqMask=RADIOLIB_IRQ_RX_DEFAULT_MASK, size_t len=0)'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#ac88f9185b5e9fdc1d89df9797dcdd9b7',1,'PhysicalLayer::startReceive(uint32_t timeout, RadioLibIrqFlags_t irqFlags, RadioLibIrqFlags_t irqMask, size_t len)'],['../class_si443x.html#ae188dec3175a3aec96844a613e911500',1,'Si443x::startReceive()'],['../class_s_x126x.html#a66ad433561b02fe61b09afd735ce56cc',1,'SX126x::startReceive()'],['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive() override'],['../class_c_c1101.html#abf153c8fcf2a0d60439426b03692642e',1,'CC1101::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_l_r11x0.html#aa6ce285cc1b76ce028db6442a421ed8d',1,'LR11x0::startReceive() override'],['../class_l_r11x0.html#ae79c42c4ceceb7a6897731d01d365281',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)'],['../classn_r_f24.html#a3c6aa3622c887118fb8d8cb2689fdff2',1,'nRF24::startReceive() override'],['../classn_r_f24.html#a38b0084ad11090f918f4f370b9df7514',1,'nRF24::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override'],['../class_r_f69.html#a3bece228d369dcc1aab6a5b29d0685a8',1,'RF69::startReceive() override'],['../class_r_f69.html#a21ae7524fe573f1a7e74dee342418222',1,'RF69::startReceive(uint32_t timeout, uint32_t irqFlags, uint32_t irqMask, size_t len) override']]], + ['startreceivedutycycle_1106',['startReceiveDutyCycle',['../class_s_x126x.html#af9352e49d893151d68a314109140fe29',1,'SX126x']]], + ['startreceivedutycycleauto_1107',['startReceiveDutyCycleAuto',['../class_s_x126x.html#ad0f95b62ee987010b00f4be75bf9ab4e',1,'SX126x']]], + ['startsignal_1108',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], + ['starttransmit_1109',['startTransmit',['../class_r_f69.html#a923654706eff5118ef6e84214e837f27',1,'RF69::startTransmit()'],['../classn_r_f24.html#a923654706eff5118ef6e84214e837f27',1,'nRF24::startTransmit(const char *str, uint8_t addr=0)'],['../classn_r_f24.html#af79757dbbd62e080c1bad2e608ab940c',1,'nRF24::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_l_r11x0.html#af79757dbbd62e080c1bad2e608ab940c',1,'LR11x0::startTransmit()'],['../class_r_f69.html#af79757dbbd62e080c1bad2e608ab940c',1,'RF69::startTransmit()'],['../class_si443x.html#a923654706eff5118ef6e84214e837f27',1,'Si443x::startTransmit(const char *str, uint8_t addr=0)'],['../class_si443x.html#af79757dbbd62e080c1bad2e608ab940c',1,'Si443x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x126x.html#a923654706eff5118ef6e84214e837f27',1,'SX126x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x126x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX126x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x127x.html#a923654706eff5118ef6e84214e837f27',1,'SX127x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x127x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX127x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_s_x128x.html#a923654706eff5118ef6e84214e837f27',1,'SX128x::startTransmit(const char *str, uint8_t addr=0)'],['../class_s_x128x.html#af79757dbbd62e080c1bad2e608ab940c',1,'SX128x::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_si443x.html#a187ea9ee96a67cd48e5b28be5b237c95',1,'Si443x::startTransmit()'],['../class_l_r11x0.html#a923654706eff5118ef6e84214e837f27',1,'LR11x0::startTransmit()'],['../class_c_c1101.html#a6ff7e4066d189482c142e05384a38df0',1,'CC1101::startTransmit()'],['../class_l_r11x0.html#a459825c5b46a2ca515e62042d605aa67',1,'LR11x0::startTransmit()'],['../classn_r_f24.html#a8b2365ad11840d1d05b0e17b37ddacd2',1,'nRF24::startTransmit()'],['../class_r_f69.html#af645f6b5d37812f6bb9ec11788e12066',1,'RF69::startTransmit()'],['../class_s_x126x.html#adf06ca0d64a61ce16a0a2f4f9a7d6a86',1,'SX126x::startTransmit()'],['../class_s_x127x.html#ae0902a990203ec67c628e5d006cbaa96',1,'SX127x::startTransmit()'],['../class_s_x128x.html#a46fff7c4b2bb0eed3fd313d6413dc4e9',1,'SX128x::startTransmit()'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af79757dbbd62e080c1bad2e608ab940c',1,'PhysicalLayer::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)'],['../class_c_c1101.html#a923654706eff5118ef6e84214e837f27',1,'CC1101::startTransmit(const char *str, uint8_t addr=0)'],['../class_c_c1101.html#af79757dbbd62e080c1bad2e608ab940c',1,'CC1101::startTransmit(const uint8_t *data, size_t len, uint8_t addr=0)']]], + ['startwifiscan_1110',['startWifiScan',['../class_l_r11x0.html#a3498e0e621f341e415145879989e0948',1,'LR11x0']]], + ['stm32wlx_1111',['STM32WLx',['../class_s_t_m32_w_lx.html#ac0e8787dbb8e8aaa172b089ace6eaa09',1,'STM32WLx']]], + ['sx1231_1112',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]], + ['sx1233_1113',['SX1233',['../class_s_x1233.html#a23d2fbf2473e48d46e341e6afe31f82f',1,'SX1233']]], + ['sx1261_1114',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]], + ['sx1262_1115',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]], + ['sx1268_1116',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]], + ['sx126x_1117',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]], + ['sx1272_1118',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]], + ['sx1273_1119',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]], + ['sx1276_1120',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]], + ['sx1277_1121',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]], + ['sx1278_1122',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]], + ['sx1279_1123',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]], + ['sx127x_1124',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]], + ['sx1280_1125',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]], + ['sx1281_1126',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]], + ['sx1282_1127',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]], + ['sx128x_1128',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]] ]; diff --git a/search/groups_0.js b/search/groups_0.js index 64742af0..77b55b18 100644 --- a/search/groups_0.js +++ b/search/groups_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['data_20shaping_20filter_20values_20aliases_2e_1341',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]] + ['data_20shaping_20filter_20values_20aliases_2e_1338',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]] ]; diff --git a/search/groups_1.js b/search/groups_1.js index b6c02019..9c5628ac 100644 --- a/search/groups_1.js +++ b/search/groups_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['encoding_20type_20aliases_2e_1342',['Encoding type aliases.',['../group__config__encoding.html',1,'']]] + ['encoding_20type_20aliases_2e_1339',['Encoding type aliases.',['../group__config__encoding.html',1,'']]] ]; diff --git a/search/groups_2.js b/search/groups_2.js index 83b90350..19f36c9d 100644 --- a/search/groups_2.js +++ b/search/groups_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['mic_2de_20message_20types_2e_1343',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]] + ['mic_2de_20message_20types_2e_1340',['Mic-E message types.',['../group__mic__e__message__types.html',1,'']]] ]; diff --git a/search/groups_3.js b/search/groups_3.js index 9765437d..cab7eeb4 100644 --- a/search/groups_3.js +++ b/search/groups_3.js @@ -1,5 +1,5 @@ var searchData= [ - ['position_20of_20bit_20field_20widths_20in_20module_3a_3aspiconfig_20width_20array_2e_1344',['Position of bit field widths in Module::spiConfig width array.',['../group__module__spi__width__pos.html',1,'']]], - ['position_20of_20commands_20in_20module_3a_3aspiconfig_20command_20array_2e_1345',['Position of commands in Module::spiConfig command array.',['../group__module__spi__command__pos.html',1,'']]] + ['position_20of_20bit_20field_20widths_20in_20module_3a_3aspiconfig_20width_20array_2e_1341',['Position of bit field widths in Module::spiConfig width array.',['../group__module__spi__width__pos.html',1,'']]], + ['position_20of_20commands_20in_20module_3a_3aspiconfig_20command_20array_2e_1342',['Position of commands in Module::spiConfig command array.',['../group__module__spi__command__pos.html',1,'']]] ]; diff --git a/search/groups_4.js b/search/groups_4.js index bc3408ec..d19dc100 100644 --- a/search/groups_4.js +++ b/search/groups_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['standby_20mode_20type_20aliases_2e_1346',['Standby mode type aliases.',['../group__config__standby.html',1,'']]], - ['status_20codes_1347',['Status Codes',['../group__status__codes.html',1,'']]] + ['standby_20mode_20type_20aliases_2e_1343',['Standby mode type aliases.',['../group__config__standby.html',1,'']]], + ['status_20codes_1344',['Status Codes',['../group__status__codes.html',1,'']]] ]; diff --git a/search/groups_5.js b/search/groups_5.js index 4349ade8..9e465476 100644 --- a/search/groups_5.js +++ b/search/groups_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['type_20aliases_20used_20by_20radiolib_2e_1348',['Type aliases used by RadioLib.',['../group__typedefs.html',1,'']]] + ['type_20aliases_20used_20by_20radiolib_2e_1345',['Type aliases used by RadioLib.',['../group__typedefs.html',1,'']]] ]; diff --git a/search/pages_0.js b/search/pages_0.js index efcdd92b..a7222b4b 100644 --- a/search/pages_0.js +++ b/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['radiolib_20documentation_1349',['RadioLib Documentation',['../index.html',1,'']]] + ['radiolib_20documentation_1346',['RadioLib Documentation',['../index.html',1,'']]] ]; diff --git a/search/pages_1.js b/search/pages_1.js index a7e0b50d..c9f088b1 100644 --- a/search/pages_1.js +++ b/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['todo_20list_1350',['Todo List',['../todo.html',1,'']]] + ['todo_20list_1347',['Todo List',['../todo.html',1,'']]] ]; diff --git a/search/typedefs_0.js b/search/typedefs_0.js index 3df924ab..df300417 100644 --- a/search/typedefs_0.js +++ b/search/typedefs_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['radiolibirqflags_5ft_1323',['RadioLibIrqFlags_t',['../group__typedefs.html#gafaf66becf1112a55ba8ad7402b802b77',1,'TypeDef.h']]], - ['radiolibtime_5ft_1324',['RadioLibTime_t',['../group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd',1,'TypeDef.h']]] + ['radiolibirqflags_5ft_1320',['RadioLibIrqFlags_t',['../group__typedefs.html#gafaf66becf1112a55ba8ad7402b802b77',1,'TypeDef.h']]], + ['radiolibtime_5ft_1321',['RadioLibTime_t',['../group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd',1,'TypeDef.h']]] ]; diff --git a/search/typedefs_1.js b/search/typedefs_1.js index f5505348..c7466b6b 100644 --- a/search/typedefs_1.js +++ b/search/typedefs_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['spicheckstatuscb_5ft_1325',['SPIcheckStatusCb_t',['../class_module.html#a1ad7bef7d380d3b6b88dca99bd35d640',1,'Module']]], - ['spiparsestatuscb_5ft_1326',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]] + ['spicheckstatuscb_5ft_1322',['SPIcheckStatusCb_t',['../class_module.html#a1ad7bef7d380d3b6b88dca99bd35d640',1,'Module']]], + ['spiparsestatuscb_5ft_1323',['SPIparseStatusCb_t',['../class_module.html#a9393088249856eab568126aeb2493e4a',1,'Module']]] ]; diff --git a/search/variables_0.js b/search/variables_0.js index 9d6c86c3..a666d5e0 100644 --- a/search/variables_0.js +++ b/search/variables_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['accuracy_1151',['accuracy',['../struct_l_r11x0_gnss_position__t.html#a3fd469e32f9df19574cab167e32124e5',1,'LR11x0GnssPosition_t']]], - ['almanacgnss_1152',['almanacGNSS',['../struct_l_r11x0_version_info__t.html#ad1839f1cb6a067cc21651d95908cff67',1,'LR11x0VersionInfo_t']]], - ['ap_1153',['ap',['../struct_l_r11x0_wifi_result__t.html#a18a5615328bfc7b549a7ef1a5514c087',1,'LR11x0WifiResult_t']]], - ['available_1154',['available',['../struct_lo_ra_w_a_n_channel__t.html#a5d8fc9046c6351b3bc54825052c471dd',1,'LoRaWANChannel_t']]] + ['accuracy_1148',['accuracy',['../struct_l_r11x0_gnss_position__t.html#a3fd469e32f9df19574cab167e32124e5',1,'LR11x0GnssPosition_t']]], + ['almanacgnss_1149',['almanacGNSS',['../struct_l_r11x0_version_info__t.html#ad1839f1cb6a067cc21651d95908cff67',1,'LR11x0VersionInfo_t']]], + ['ap_1150',['ap',['../struct_l_r11x0_wifi_result__t.html#a18a5615328bfc7b549a7ef1a5514c087',1,'LR11x0WifiResult_t']]], + ['available_1151',['available',['../struct_lo_ra_w_a_n_channel__t.html#a5d8fc9046c6351b3bc54825052c471dd',1,'LoRaWANChannel_t']]] ]; diff --git a/search/variables_1.js b/search/variables_1.js index 1ca35ec5..02c71369 100644 --- a/search/variables_1.js +++ b/search/variables_1.js @@ -1,11 +1,11 @@ var searchData= [ - ['bandnum_1155',['bandNum',['../struct_lo_ra_w_a_n_band__t.html#abb14a7c48ec89a944f441517b1d55986',1,'LoRaWANBand_t']]], - ['bandtype_1156',['bandType',['../struct_lo_ra_w_a_n_band__t.html#ad7ab17cc0b530fb99c3be39fd6411802',1,'LoRaWANBand_t']]], - ['bandwidth_1157',['bandwidth',['../struct_lo_ra_rate__t.html#a97626ff6c8f659ecad84734cca7a87b1',1,'LoRaRate_t']]], - ['baudrate_1158',['baudRate',['../struct_bell_modem__t.html#a8e16be8997a90db9a4b2482ec7e93171',1,'BellModem_t']]], - ['beidou_1159',['beidou',['../struct_l_r11x0_gnss_almanac_status__t.html#a6ecc7d7bbc090f380ca6d2d8774f7ca0',1,'LR11x0GnssAlmanacStatus_t']]], - ['beidousvnoalmanacflags_1160',['beidouSvNoAlmanacFlags',['../struct_l_r11x0_gnss_almanac_status__t.html#ab040b1d9ccf9c6497b008d11a93ebfdf',1,'LR11x0GnssAlmanacStatus_t']]], - ['bitrate_1161',['bitRate',['../struct_f_s_k_rate__t.html#a2500c6dee65326b52d4e58ecf4b6d107',1,'FSKRate_t']]], - ['bw_1162',['bw',['../struct_lr_fhss_rate__t.html#a965dcb7da1b9adc4818ae9e908585f21',1,'LrFhssRate_t']]] + ['bandnum_1152',['bandNum',['../struct_lo_ra_w_a_n_band__t.html#abb14a7c48ec89a944f441517b1d55986',1,'LoRaWANBand_t']]], + ['bandtype_1153',['bandType',['../struct_lo_ra_w_a_n_band__t.html#ad7ab17cc0b530fb99c3be39fd6411802',1,'LoRaWANBand_t']]], + ['bandwidth_1154',['bandwidth',['../struct_lo_ra_rate__t.html#a97626ff6c8f659ecad84734cca7a87b1',1,'LoRaRate_t']]], + ['baudrate_1155',['baudRate',['../struct_bell_modem__t.html#a8e16be8997a90db9a4b2482ec7e93171',1,'BellModem_t']]], + ['beidou_1156',['beidou',['../struct_l_r11x0_gnss_almanac_status__t.html#a6ecc7d7bbc090f380ca6d2d8774f7ca0',1,'LR11x0GnssAlmanacStatus_t']]], + ['beidousvnoalmanacflags_1157',['beidouSvNoAlmanacFlags',['../struct_l_r11x0_gnss_almanac_status__t.html#ab040b1d9ccf9c6497b008d11a93ebfdf',1,'LR11x0GnssAlmanacStatus_t']]], + ['bitrate_1158',['bitRate',['../struct_f_s_k_rate__t.html#a2500c6dee65326b52d4e58ecf4b6d107',1,'FSKRate_t']]], + ['bw_1159',['bw',['../struct_lr_fhss_rate__t.html#a965dcb7da1b9adc4818ae9e908585f21',1,'LrFhssRate_t']]] ]; diff --git a/search/variables_10.js b/search/variables_10.js index 139f588f..af2d2f85 100644 --- a/search/variables_10.js +++ b/search/variables_10.js @@ -1,20 +1,20 @@ var searchData= [ - ['scanguard_1288',['scanGuard',['../class_lo_ra_w_a_n_node.html#a2176aa3d546e6b00e870a7e1e310c403',1,'LoRaWANNode']]], - ['scanpixellen_1289',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], - ['sendseqnumber_1290',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], - ['seqctrl_1291',['seqCtrl',['../struct_l_r11x0_wifi_result_extended__t.html#ad86cb8ec2fca8dc1858a4fe6b0e1e9cf',1,'LR11x0WifiResultExtended_t']]], - ['service_1292',['service',['../struct_l_r11x0_wifi_result_extended__t.html#a4ffbb47fb23051dfeb2fe7ae52ae6dea',1,'LR11x0WifiResultExtended_t']]], - ['size_1293',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]], - ['spiconfig_1294',['spiConfig',['../class_module.html#a3a4fc4101fb3f134152b458c447b8ecb',1,'Module']]], - ['spreadingfactor_1295',['spreadingFactor',['../struct_lo_ra_rate__t.html#a24fcb6220c0577f985478dc109750076',1,'LoRaRate_t']]], - ['srccallsign_1296',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], - ['srcssid_1297',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], - ['ssid_1298',['ssid',['../struct_l_r11x0_wifi_result_extended__t.html#a640fdd5b33e6ab2f6867cd63da567147',1,'LR11x0WifiResultExtended_t']]], - ['standbyxosc_1299',['standbyXOSC',['../class_s_x126x.html#ae731568798d03d9722a440fd6a23faf2',1,'SX126x']]], - ['start_1300',['start',['../struct_l_r11x0_gnss_almanac_status__t.html#a2228a69fda1002c027b7b487aa579afb',1,'LR11x0GnssAlmanacStatus_t']]], - ['statuspos_1301',['statusPos',['../struct_module_1_1_s_p_i_config__t.html#a5b689d2722b8980a211a562ed394d23e',1,'Module::SPIConfig_t']]], - ['stream_1302',['stream',['../struct_module_1_1_s_p_i_config__t.html#a1a088c02ed02361746621ffbc2526681',1,'Module::SPIConfig_t']]], - ['svid_1303',['svId',['../struct_l_r11x0_gnss_satellite__t.html#a0513395fd04c052b862c443dfbe75e84',1,'LR11x0GnssSatellite_t']]], - ['symnum_1304',['symNum',['../struct_c_a_d_scan_config__t.html#a5cb000f071f740c8cc81ea2f04dd9b60',1,'CADScanConfig_t']]] + ['scanguard_1285',['scanGuard',['../class_lo_ra_w_a_n_node.html#a2176aa3d546e6b00e870a7e1e310c403',1,'LoRaWANNode']]], + ['scanpixellen_1286',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], + ['sendseqnumber_1287',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], + ['seqctrl_1288',['seqCtrl',['../struct_l_r11x0_wifi_result_extended__t.html#ad86cb8ec2fca8dc1858a4fe6b0e1e9cf',1,'LR11x0WifiResultExtended_t']]], + ['service_1289',['service',['../struct_l_r11x0_wifi_result_extended__t.html#a4ffbb47fb23051dfeb2fe7ae52ae6dea',1,'LR11x0WifiResultExtended_t']]], + ['size_1290',['size',['../class_radio_lib_c_r_c.html#ad09b067c00cda1cc676c13602dee2f5a',1,'RadioLibCRC']]], + ['spiconfig_1291',['spiConfig',['../class_module.html#a3a4fc4101fb3f134152b458c447b8ecb',1,'Module']]], + ['spreadingfactor_1292',['spreadingFactor',['../struct_lo_ra_rate__t.html#a24fcb6220c0577f985478dc109750076',1,'LoRaRate_t']]], + ['srccallsign_1293',['srcCallsign',['../class_a_x25_frame.html#a38f7fb6a4a6344b5892c3a3cdf26c585',1,'AX25Frame']]], + ['srcssid_1294',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], + ['ssid_1295',['ssid',['../struct_l_r11x0_wifi_result_extended__t.html#a640fdd5b33e6ab2f6867cd63da567147',1,'LR11x0WifiResultExtended_t']]], + ['standbyxosc_1296',['standbyXOSC',['../class_s_x126x.html#ae731568798d03d9722a440fd6a23faf2',1,'SX126x']]], + ['start_1297',['start',['../struct_l_r11x0_gnss_almanac_status__t.html#a2228a69fda1002c027b7b487aa579afb',1,'LR11x0GnssAlmanacStatus_t']]], + ['statuspos_1298',['statusPos',['../struct_module_1_1_s_p_i_config__t.html#a5b689d2722b8980a211a562ed394d23e',1,'Module::SPIConfig_t']]], + ['stream_1299',['stream',['../struct_module_1_1_s_p_i_config__t.html#a1a088c02ed02361746621ffbc2526681',1,'Module::SPIConfig_t']]], + ['svid_1300',['svId',['../struct_l_r11x0_gnss_satellite__t.html#a0513395fd04c052b862c443dfbe75e84',1,'LR11x0GnssSatellite_t']]], + ['symnum_1301',['symNum',['../struct_c_a_d_scan_config__t.html#a5cb000f071f740c8cc81ea2f04dd9b60',1,'CADScanConfig_t']]] ]; diff --git a/search/variables_11.js b/search/variables_11.js index bd97a036..7257df45 100644 --- a/search/variables_11.js +++ b/search/variables_11.js @@ -1,15 +1,15 @@ var searchData= [ - ['timeout_1305',['timeout',['../struct_module_1_1_s_p_i_config__t.html#a56ecc0b9c1207d655c581e90faa77bb5',1,'Module::SPIConfig_t::timeout()'],['../struct_c_a_d_scan_config__t.html#a44223617e2d046318e75f863c618e26c',1,'CADScanConfig_t::timeout()']]], - ['timestamp_1306',['timestamp',['../struct_l_r11x0_wifi_result_full__t.html#a4fbd2bfd834c890da47ab94c6f688738',1,'LR11x0WifiResultFull_t']]], - ['todistributionsystem_1307',['toDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#abe8e8b5e22a75ac988de6f98afa5fd61',1,'LR11x0WifiResultFull_t']]], - ['tones_1308',['tones',['../struct_s_s_t_v_mode__t.html#a7993c913a63cda9d927938fe0b08b8ea',1,'SSTVMode_t']]], - ['ts009_1309',['TS009',['../class_lo_ra_w_a_n_node.html#a8226f4d0329d15da9ffc706e5781403a',1,'LoRaWANNode']]], - ['txack_1310',['txAck',['../struct_lo_ra_w_a_n_band__t.html#a709fdad617bd9138eef52bc7220c29f2',1,'LoRaWANBand_t']]], - ['txfreqs_1311',['txFreqs',['../struct_lo_ra_w_a_n_band__t.html#a9bd952022473cb08e067c763325d689c',1,'LoRaWANBand_t']]], - ['txjoinreq_1312',['txJoinReq',['../struct_lo_ra_w_a_n_band__t.html#a9f6f43346f7c2e281b90d58a44565d38',1,'LoRaWANBand_t']]], - ['txparamsupported_1313',['txParamSupported',['../struct_lo_ra_w_a_n_band__t.html#a4bbc7445702c32199f0bbd011d6f4da6',1,'LoRaWANBand_t']]], - ['txspans_1314',['txSpans',['../struct_lo_ra_w_a_n_band__t.html#aa37a3cae13a68c2deb2968de26ad9bd3',1,'LoRaWANBand_t']]], - ['txwor_1315',['txWoR',['../struct_lo_ra_w_a_n_band__t.html#a918f643c1fc6df722efd8f969c68cf7e',1,'LoRaWANBand_t']]], - ['type_1316',['type',['../struct_l_r11x0_wifi_result__t.html#a7750bb14648b6ee4e96b73cd76a1ca2a',1,'LR11x0WifiResult_t::type()'],['../structtone__t.html#af92472bf087b9a7ec0c350bd503bdd74',1,'tone_t::type()']]] + ['timeout_1302',['timeout',['../struct_module_1_1_s_p_i_config__t.html#a56ecc0b9c1207d655c581e90faa77bb5',1,'Module::SPIConfig_t::timeout()'],['../struct_c_a_d_scan_config__t.html#a44223617e2d046318e75f863c618e26c',1,'CADScanConfig_t::timeout()']]], + ['timestamp_1303',['timestamp',['../struct_l_r11x0_wifi_result_full__t.html#a4fbd2bfd834c890da47ab94c6f688738',1,'LR11x0WifiResultFull_t']]], + ['todistributionsystem_1304',['toDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#abe8e8b5e22a75ac988de6f98afa5fd61',1,'LR11x0WifiResultFull_t']]], + ['tones_1305',['tones',['../struct_s_s_t_v_mode__t.html#a7993c913a63cda9d927938fe0b08b8ea',1,'SSTVMode_t']]], + ['ts009_1306',['TS009',['../class_lo_ra_w_a_n_node.html#a8226f4d0329d15da9ffc706e5781403a',1,'LoRaWANNode']]], + ['txack_1307',['txAck',['../struct_lo_ra_w_a_n_band__t.html#a709fdad617bd9138eef52bc7220c29f2',1,'LoRaWANBand_t']]], + ['txfreqs_1308',['txFreqs',['../struct_lo_ra_w_a_n_band__t.html#a9bd952022473cb08e067c763325d689c',1,'LoRaWANBand_t']]], + ['txjoinreq_1309',['txJoinReq',['../struct_lo_ra_w_a_n_band__t.html#a9f6f43346f7c2e281b90d58a44565d38',1,'LoRaWANBand_t']]], + ['txparamsupported_1310',['txParamSupported',['../struct_lo_ra_w_a_n_band__t.html#a4bbc7445702c32199f0bbd011d6f4da6',1,'LoRaWANBand_t']]], + ['txspans_1311',['txSpans',['../struct_lo_ra_w_a_n_band__t.html#aa37a3cae13a68c2deb2968de26ad9bd3',1,'LoRaWANBand_t']]], + ['txwor_1312',['txWoR',['../struct_lo_ra_w_a_n_band__t.html#a918f643c1fc6df722efd8f969c68cf7e',1,'LoRaWANBand_t']]], + ['type_1313',['type',['../struct_l_r11x0_wifi_result__t.html#a7750bb14648b6ee4e96b73cd76a1ca2a',1,'LR11x0WifiResult_t::type()'],['../structtone__t.html#af92472bf087b9a7ec0c350bd503bdd74',1,'tone_t::type()']]] ]; diff --git a/search/variables_12.js b/search/variables_12.js index eca7a8bc..d0faac83 100644 --- a/search/variables_12.js +++ b/search/variables_12.js @@ -1,4 +1,4 @@ var searchData= [ - ['user_1317',['user',['../struct_lo_ra_w_a_n_mac_command__t.html#a269530a63c3e2a66393fb10286a3b5b6',1,'LoRaWANMacCommand_t']]] + ['user_1314',['user',['../struct_lo_ra_w_a_n_mac_command__t.html#a269530a63c3e2a66393fb10286a3b5b6',1,'LoRaWANMacCommand_t']]] ]; diff --git a/search/variables_13.js b/search/variables_13.js index 7332a38a..16a7f095 100644 --- a/search/variables_13.js +++ b/search/variables_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['values_1318',['values',['../struct_module_1_1_rf_switch_mode__t.html#a694fecae172f868d8ca400319920ed66',1,'Module::RfSwitchMode_t']]], - ['viscode_1319',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] + ['values_1315',['values',['../struct_module_1_1_rf_switch_mode__t.html#a694fecae172f868d8ca400319920ed66',1,'Module::RfSwitchMode_t']]], + ['viscode_1316',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] ]; diff --git a/search/variables_14.js b/search/variables_14.js index f2cd2d39..5cae169c 100644 --- a/search/variables_14.js +++ b/search/variables_14.js @@ -1,5 +1,5 @@ var searchData= [ - ['width_1320',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]], - ['widths_1321',['widths',['../struct_module_1_1_s_p_i_config__t.html#a8cd88af331563749f10ac69b63e1755a',1,'Module::SPIConfig_t']]] + ['width_1317',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]], + ['widths_1318',['widths',['../struct_module_1_1_s_p_i_config__t.html#a8cd88af331563749f10ac69b63e1755a',1,'Module::SPIConfig_t']]] ]; diff --git a/search/variables_15.js b/search/variables_15.js index 34e96f69..ed5cf117 100644 --- a/search/variables_15.js +++ b/search/variables_15.js @@ -1,4 +1,4 @@ var searchData= [ - ['xtal_1322',['XTAL',['../class_l_r11x0.html#a3ccfd35d26960457214d2a0192d6b312',1,'LR11x0::XTAL()'],['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x::XTAL()']]] + ['xtal_1319',['XTAL',['../class_l_r11x0.html#a3ccfd35d26960457214d2a0192d6b312',1,'LR11x0::XTAL()'],['../class_s_x126x.html#ada0fe6c3d31885952b439135cf0c18f1',1,'SX126x::XTAL()']]] ]; diff --git a/search/variables_2.js b/search/variables_2.js index ead6b00a..8816c6bd 100644 --- a/search/variables_2.js +++ b/search/variables_2.js @@ -1,16 +1,16 @@ var searchData= [ - ['c_5fn0_1163',['c_n0',['../struct_l_r11x0_gnss_satellite__t.html#a1ca3d11db7b677955b7f1f3c4f85157f',1,'LR11x0GnssSatellite_t']]], - ['cad_1164',['cad',['../union_channel_scan_config__t.html#ad9cdc4ce1a4664a12802d1e652c9e098',1,'ChannelScanConfig_t']]], - ['channelfreq_1165',['channelFreq',['../struct_l_r11x0_wifi_result__t.html#a520382420ad088ac1ace3754192cbfeb',1,'LR11x0WifiResult_t']]], - ['checkstatuscb_1166',['checkStatusCb',['../struct_module_1_1_s_p_i_config__t.html#ac1e7f50d134ec054ed2074b846f1124e',1,'Module::SPIConfig_t']]], - ['cid_1167',['cid',['../struct_lo_ra_w_a_n_mac_command__t.html#a79d26324cafccbae8b95927935e0d0dc',1,'LoRaWANMacCommand_t']]], - ['cmds_1168',['cmds',['../struct_module_1_1_s_p_i_config__t.html#a57ecca17835380862426d3cf38561185',1,'Module::SPIConfig_t']]], - ['codingrate_1169',['codingRate',['../struct_lo_ra_rate__t.html#ae382629257949329b2fcb01d565183df',1,'LoRaRate_t']]], - ['confirmed_1170',['confirmed',['../struct_lo_ra_w_a_n_event__t.html#a09079dc76b5367d23766e357d2ddb794',1,'LoRaWANEvent_t']]], - ['confirming_1171',['confirming',['../struct_lo_ra_w_a_n_event__t.html#a506755c4731be16d126bdef873c420f8',1,'LoRaWANEvent_t']]], - ['control_1172',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]], - ['countrycode_1173',['countryCode',['../struct_l_r11x0_wifi_result_extended__t.html#ae9bf4bc28c72985edc131ad1b69cb06a',1,'LR11x0WifiResultExtended_t']]], - ['cr_1174',['cr',['../struct_lr_fhss_rate__t.html#a3eb7a2c2f4f23face4d6706aa8084c6b',1,'LrFhssRate_t']]], - ['currentchannel_1175',['currentChannel',['../struct_l_r11x0_wifi_result_extended__t.html#a7314104129f9ceb6d91c85578d85d252',1,'LR11x0WifiResultExtended_t']]] + ['c_5fn0_1160',['c_n0',['../struct_l_r11x0_gnss_satellite__t.html#a1ca3d11db7b677955b7f1f3c4f85157f',1,'LR11x0GnssSatellite_t']]], + ['cad_1161',['cad',['../union_channel_scan_config__t.html#ad9cdc4ce1a4664a12802d1e652c9e098',1,'ChannelScanConfig_t']]], + ['channelfreq_1162',['channelFreq',['../struct_l_r11x0_wifi_result__t.html#a520382420ad088ac1ace3754192cbfeb',1,'LR11x0WifiResult_t']]], + ['checkstatuscb_1163',['checkStatusCb',['../struct_module_1_1_s_p_i_config__t.html#ac1e7f50d134ec054ed2074b846f1124e',1,'Module::SPIConfig_t']]], + ['cid_1164',['cid',['../struct_lo_ra_w_a_n_mac_command__t.html#a79d26324cafccbae8b95927935e0d0dc',1,'LoRaWANMacCommand_t']]], + ['cmds_1165',['cmds',['../struct_module_1_1_s_p_i_config__t.html#a57ecca17835380862426d3cf38561185',1,'Module::SPIConfig_t']]], + ['codingrate_1166',['codingRate',['../struct_lo_ra_rate__t.html#ae382629257949329b2fcb01d565183df',1,'LoRaRate_t']]], + ['confirmed_1167',['confirmed',['../struct_lo_ra_w_a_n_event__t.html#a09079dc76b5367d23766e357d2ddb794',1,'LoRaWANEvent_t']]], + ['confirming_1168',['confirming',['../struct_lo_ra_w_a_n_event__t.html#a506755c4731be16d126bdef873c420f8',1,'LoRaWANEvent_t']]], + ['control_1169',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]], + ['countrycode_1170',['countryCode',['../struct_l_r11x0_wifi_result_extended__t.html#ae9bf4bc28c72985edc131ad1b69cb06a',1,'LR11x0WifiResultExtended_t']]], + ['cr_1171',['cr',['../struct_lr_fhss_rate__t.html#a3eb7a2c2f4f23face4d6706aa8084c6b',1,'LrFhssRate_t']]], + ['currentchannel_1172',['currentChannel',['../struct_l_r11x0_wifi_result_extended__t.html#a7314104129f9ceb6d91c85578d85d252',1,'LR11x0WifiResultExtended_t']]] ]; diff --git a/search/variables_3.js b/search/variables_3.js index dd008d73..e2b04cc4 100644 --- a/search/variables_3.js +++ b/search/variables_3.js @@ -1,22 +1,22 @@ var searchData= [ - ['datarate_1176',['datarate',['../struct_lo_ra_w_a_n_event__t.html#a56281d98efee007a0c03e6a6ae8a592b',1,'LoRaWANEvent_t']]], - ['datarateid_1177',['dataRateId',['../struct_l_r11x0_wifi_result__t.html#ac1768e3f878366d2187ffe6d4bc196bd',1,'LR11x0WifiResult_t']]], - ['datarates_1178',['dataRates',['../struct_lo_ra_w_a_n_band__t.html#a8b518a570756048dec56bec703a0b25b',1,'LoRaWANBand_t']]], - ['demodstat_1179',['demodStat',['../struct_l_r11x0_gnss_result__t.html#a6142622b9fb790108546b4d09b063b6c',1,'LR11x0GnssResult_t']]], - ['destcallsign_1180',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]], - ['destssid_1181',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]], - ['detmin_1182',['detMin',['../struct_c_a_d_scan_config__t.html#af44adcf8659f5e3f861f4b29e9a997d1',1,'CADScanConfig_t']]], - ['detpeak_1183',['detPeak',['../struct_c_a_d_scan_config__t.html#a474cc14f2a00ff351aac5aa0f3fa4e3a',1,'CADScanConfig_t']]], - ['device_1184',['device',['../struct_l_r11x0_version_info__t.html#a6686a59a55b567b11b325b7087d682b2',1,'LR11x0VersionInfo_t']]], - ['devnonce_1185',['devNonce',['../struct_lo_ra_w_a_n_join_event__t.html#abdb57ec1e16ea0d1822ba0a5632c9372',1,'LoRaWANJoinEvent_t']]], - ['dir_1186',['dir',['../struct_lo_ra_w_a_n_event__t.html#a698a1956ffafa152e7c2cada3a2a2805',1,'LoRaWANEvent_t']]], - ['doppler_1187',['doppler',['../struct_l_r11x0_gnss_satellite__t.html#a670c9e916637b5fede43c5fbb26cbfd8',1,'LR11x0GnssSatellite_t']]], - ['dr_1188',['dr',['../struct_lo_ra_w_a_n_channel__t.html#a8332e2b32f822524c6a1ed04de3144bf',1,'LoRaWANChannel_t']]], - ['drjoinrequest_1189',['drJoinRequest',['../struct_lo_ra_w_a_n_channel_span__t.html#a17203af63259911cba8b2ae05be25ff5',1,'LoRaWANChannelSpan_t']]], - ['drmax_1190',['drMax',['../struct_lo_ra_w_a_n_channel__t.html#aeabadf186d7bc105f6d289e3a491412c',1,'LoRaWANChannel_t::drMax()'],['../struct_lo_ra_w_a_n_channel_span__t.html#a914d2b6f54e9c8d2841acf1d0652fd79',1,'LoRaWANChannelSpan_t::drMax()']]], - ['drmin_1191',['drMin',['../struct_lo_ra_w_a_n_channel__t.html#abb028e93f3fe15ed6f95e5fcd8a62f53',1,'LoRaWANChannel_t::drMin()'],['../struct_lo_ra_w_a_n_channel_span__t.html#ab613b4ca3a2c99ef0aa53f8132f54535',1,'LoRaWANChannelSpan_t::drMin()']]], - ['dutycycle_1192',['dutyCycle',['../struct_lo_ra_w_a_n_band__t.html#a743d3a23aa5c58e156dff633b830ee4f',1,'LoRaWANBand_t']]], - ['dwelltimedn_1193',['dwellTimeDn',['../struct_lo_ra_w_a_n_band__t.html#aef289b63007a6e085c7c66f71209d84c',1,'LoRaWANBand_t']]], - ['dwelltimeup_1194',['dwellTimeUp',['../struct_lo_ra_w_a_n_band__t.html#a8bd0d705d9c0dbe87d25e83cc54e922c',1,'LoRaWANBand_t']]] + ['datarate_1173',['datarate',['../struct_lo_ra_w_a_n_event__t.html#a56281d98efee007a0c03e6a6ae8a592b',1,'LoRaWANEvent_t']]], + ['datarateid_1174',['dataRateId',['../struct_l_r11x0_wifi_result__t.html#ac1768e3f878366d2187ffe6d4bc196bd',1,'LR11x0WifiResult_t']]], + ['datarates_1175',['dataRates',['../struct_lo_ra_w_a_n_band__t.html#a8b518a570756048dec56bec703a0b25b',1,'LoRaWANBand_t']]], + ['demodstat_1176',['demodStat',['../struct_l_r11x0_gnss_result__t.html#a6142622b9fb790108546b4d09b063b6c',1,'LR11x0GnssResult_t']]], + ['destcallsign_1177',['destCallsign',['../class_a_x25_frame.html#a7fe9805148e2dd46d163cd989473dbff',1,'AX25Frame']]], + ['destssid_1178',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]], + ['detmin_1179',['detMin',['../struct_c_a_d_scan_config__t.html#af44adcf8659f5e3f861f4b29e9a997d1',1,'CADScanConfig_t']]], + ['detpeak_1180',['detPeak',['../struct_c_a_d_scan_config__t.html#a474cc14f2a00ff351aac5aa0f3fa4e3a',1,'CADScanConfig_t']]], + ['device_1181',['device',['../struct_l_r11x0_version_info__t.html#a6686a59a55b567b11b325b7087d682b2',1,'LR11x0VersionInfo_t']]], + ['devnonce_1182',['devNonce',['../struct_lo_ra_w_a_n_join_event__t.html#abdb57ec1e16ea0d1822ba0a5632c9372',1,'LoRaWANJoinEvent_t']]], + ['dir_1183',['dir',['../struct_lo_ra_w_a_n_event__t.html#a698a1956ffafa152e7c2cada3a2a2805',1,'LoRaWANEvent_t']]], + ['doppler_1184',['doppler',['../struct_l_r11x0_gnss_satellite__t.html#a670c9e916637b5fede43c5fbb26cbfd8',1,'LR11x0GnssSatellite_t']]], + ['dr_1185',['dr',['../struct_lo_ra_w_a_n_channel__t.html#a8332e2b32f822524c6a1ed04de3144bf',1,'LoRaWANChannel_t']]], + ['drjoinrequest_1186',['drJoinRequest',['../struct_lo_ra_w_a_n_channel_span__t.html#a17203af63259911cba8b2ae05be25ff5',1,'LoRaWANChannelSpan_t']]], + ['drmax_1187',['drMax',['../struct_lo_ra_w_a_n_channel__t.html#aeabadf186d7bc105f6d289e3a491412c',1,'LoRaWANChannel_t::drMax()'],['../struct_lo_ra_w_a_n_channel_span__t.html#a914d2b6f54e9c8d2841acf1d0652fd79',1,'LoRaWANChannelSpan_t::drMax()']]], + ['drmin_1188',['drMin',['../struct_lo_ra_w_a_n_channel__t.html#abb028e93f3fe15ed6f95e5fcd8a62f53',1,'LoRaWANChannel_t::drMin()'],['../struct_lo_ra_w_a_n_channel_span__t.html#ab613b4ca3a2c99ef0aa53f8132f54535',1,'LoRaWANChannelSpan_t::drMin()']]], + ['dutycycle_1189',['dutyCycle',['../struct_lo_ra_w_a_n_band__t.html#a743d3a23aa5c58e156dff633b830ee4f',1,'LoRaWANBand_t']]], + ['dwelltimedn_1190',['dwellTimeDn',['../struct_lo_ra_w_a_n_band__t.html#aef289b63007a6e085c7c66f71209d84c',1,'LoRaWANBand_t']]], + ['dwelltimeup_1191',['dwellTimeUp',['../struct_lo_ra_w_a_n_band__t.html#a8bd0d705d9c0dbe87d25e83cc54e922c',1,'LoRaWANBand_t']]] ]; diff --git a/search/variables_4.js b/search/variables_4.js index bb4ed093..42e96b5c 100644 --- a/search/variables_4.js +++ b/search/variables_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['enabled_1195',['enabled',['../struct_lo_ra_w_a_n_channel__t.html#acde186d519eca4dc43d053f2146b75a0',1,'LoRaWANChannel_t']]], - ['err_1196',['err',['../struct_module_1_1_s_p_i_config__t.html#ae11c030be96a72cd09fdfe9778ecdd51',1,'Module::SPIConfig_t']]], - ['exitmode_1197',['exitMode',['../struct_c_a_d_scan_config__t.html#a7830e01090d9a95d71cc6546d2dce3c1',1,'CADScanConfig_t']]] + ['enabled_1192',['enabled',['../struct_lo_ra_w_a_n_channel__t.html#acde186d519eca4dc43d053f2146b75a0',1,'LoRaWANChannel_t']]], + ['err_1193',['err',['../struct_module_1_1_s_p_i_config__t.html#ae11c030be96a72cd09fdfe9778ecdd51',1,'Module::SPIConfig_t']]], + ['exitmode_1194',['exitMode',['../struct_c_a_d_scan_config__t.html#a7830e01090d9a95d71cc6546d2dce3c1',1,'CADScanConfig_t']]] ]; diff --git a/search/variables_5.js b/search/variables_5.js index 838f27c9..e1317582 100644 --- a/search/variables_5.js +++ b/search/variables_5.js @@ -1,26 +1,26 @@ var searchData= [ - ['fcnt_1198',['fCnt',['../struct_lo_ra_w_a_n_event__t.html#a73ecb624afeda6ddb32c1007d3dcb846',1,'LoRaWANEvent_t']]], - ['fcscheckok_1199',['fcsCheckOk',['../struct_l_r11x0_wifi_result_extended__t.html#a45bbafdcc16a5ae8ee52d0ea40b40326',1,'LR11x0WifiResultExtended_t']]], - ['fport_1200',['fPort',['../struct_lo_ra_w_a_n_event__t.html#a14f360e64ae4a6090c04333567f1a513',1,'LoRaWANEvent_t']]], - ['framesubtype_1201',['frameSubType',['../struct_l_r11x0_wifi_result_full__t.html#ab4f5ee1a99afca09242ae31ae8bc75c2',1,'LR11x0WifiResultFull_t']]], - ['frametype_1202',['frameType',['../struct_l_r11x0_wifi_result_full__t.html#aac254fd90872d9e3457a0c44409ff9fb',1,'LR11x0WifiResultFull_t']]], - ['freq_1203',['freq',['../struct_lo_ra_w_a_n_channel__t.html#a96620451b311ba0126b9575aec81ec2f',1,'LoRaWANChannel_t::freq()'],['../struct_lo_ra_w_a_n_event__t.html#a01e1843dcd39911a0fbbb86cdca35d33',1,'LoRaWANEvent_t::freq()'],['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t::freq()']]], - ['freqdev_1204',['freqDev',['../struct_f_s_k_rate__t.html#a9d8801cd6a3533922db9410f81e2a244',1,'FSKRate_t']]], - ['freqmark_1205',['freqMark',['../struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5',1,'BellModem_t']]], - ['freqmarkreply_1206',['freqMarkReply',['../struct_bell_modem__t.html#aa26b8a2f2ae9722de9a69aab991ce229',1,'BellModem_t']]], - ['freqmax_1207',['freqMax',['../struct_lo_ra_w_a_n_band__t.html#ac6b39e29fe554cd53349d80dfff1f479',1,'LoRaWANBand_t']]], - ['freqmin_1208',['freqMin',['../struct_lo_ra_w_a_n_band__t.html#a92195dec46b60a55913cd3af43f410f9',1,'LoRaWANBand_t']]], - ['freqspace_1209',['freqSpace',['../struct_bell_modem__t.html#a27c1a411df3d887ca0ce246c3b5521f7',1,'BellModem_t']]], - ['freqspacereply_1210',['freqSpaceReply',['../struct_bell_modem__t.html#a40fe8a17a9b4fae3f313fea34077eacc',1,'BellModem_t']]], - ['freqstart_1211',['freqStart',['../struct_lo_ra_w_a_n_channel_span__t.html#a1bfba15154185b75693542cd0547cb96',1,'LoRaWANChannelSpan_t']]], - ['freqstep_1212',['freqStep',['../struct_lo_ra_w_a_n_channel_span__t.html#a958f8056a2611c7a503169457278541e',1,'LoRaWANChannelSpan_t']]], - ['frmpending_1213',['frmPending',['../struct_lo_ra_w_a_n_event__t.html#afe256fb2ed02e2ffdf0ae85f92951778',1,'LoRaWANEvent_t']]], - ['fromdistributionsystem_1214',['fromDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#a47cb77c1ccf8da32d3a4102518c0d72c',1,'LR11x0WifiResultFull_t']]], - ['fsk_1215',['fsk',['../union_data_rate__t.html#abfa0cbc4b33c49435e67662b6e6027cf',1,'DataRate_t']]], - ['fwgnss_1216',['fwGNSS',['../struct_l_r11x0_version_info__t.html#aba5ac25e1acff5678991483d3a56084a',1,'LR11x0VersionInfo_t']]], - ['fwmajor_1217',['fwMajor',['../struct_l_r11x0_version_info__t.html#a50d3cf257fb187c00a6290c8c7d95edc',1,'LR11x0VersionInfo_t']]], - ['fwmajorwifi_1218',['fwMajorWiFi',['../struct_l_r11x0_version_info__t.html#add0c362641afcfff4a2ef3563e5f1c36',1,'LR11x0VersionInfo_t']]], - ['fwminor_1219',['fwMinor',['../struct_l_r11x0_version_info__t.html#a93ffc624cb2545411a409e7879a6d597',1,'LR11x0VersionInfo_t']]], - ['fwminorwifi_1220',['fwMinorWiFi',['../struct_l_r11x0_version_info__t.html#a5505724d8dd4b361a30cc4afd7fba19f',1,'LR11x0VersionInfo_t']]] + ['fcnt_1195',['fCnt',['../struct_lo_ra_w_a_n_event__t.html#a73ecb624afeda6ddb32c1007d3dcb846',1,'LoRaWANEvent_t']]], + ['fcscheckok_1196',['fcsCheckOk',['../struct_l_r11x0_wifi_result_extended__t.html#a45bbafdcc16a5ae8ee52d0ea40b40326',1,'LR11x0WifiResultExtended_t']]], + ['fport_1197',['fPort',['../struct_lo_ra_w_a_n_event__t.html#a14f360e64ae4a6090c04333567f1a513',1,'LoRaWANEvent_t']]], + ['framesubtype_1198',['frameSubType',['../struct_l_r11x0_wifi_result_full__t.html#ab4f5ee1a99afca09242ae31ae8bc75c2',1,'LR11x0WifiResultFull_t']]], + ['frametype_1199',['frameType',['../struct_l_r11x0_wifi_result_full__t.html#aac254fd90872d9e3457a0c44409ff9fb',1,'LR11x0WifiResultFull_t']]], + ['freq_1200',['freq',['../struct_lo_ra_w_a_n_channel__t.html#a96620451b311ba0126b9575aec81ec2f',1,'LoRaWANChannel_t::freq()'],['../struct_lo_ra_w_a_n_event__t.html#a01e1843dcd39911a0fbbb86cdca35d33',1,'LoRaWANEvent_t::freq()'],['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t::freq()']]], + ['freqdev_1201',['freqDev',['../struct_f_s_k_rate__t.html#a9d8801cd6a3533922db9410f81e2a244',1,'FSKRate_t']]], + ['freqmark_1202',['freqMark',['../struct_bell_modem__t.html#ac57de3660aafb52bcf1b3197380c6ce5',1,'BellModem_t']]], + ['freqmarkreply_1203',['freqMarkReply',['../struct_bell_modem__t.html#aa26b8a2f2ae9722de9a69aab991ce229',1,'BellModem_t']]], + ['freqmax_1204',['freqMax',['../struct_lo_ra_w_a_n_band__t.html#ac6b39e29fe554cd53349d80dfff1f479',1,'LoRaWANBand_t']]], + ['freqmin_1205',['freqMin',['../struct_lo_ra_w_a_n_band__t.html#a92195dec46b60a55913cd3af43f410f9',1,'LoRaWANBand_t']]], + ['freqspace_1206',['freqSpace',['../struct_bell_modem__t.html#a27c1a411df3d887ca0ce246c3b5521f7',1,'BellModem_t']]], + ['freqspacereply_1207',['freqSpaceReply',['../struct_bell_modem__t.html#a40fe8a17a9b4fae3f313fea34077eacc',1,'BellModem_t']]], + ['freqstart_1208',['freqStart',['../struct_lo_ra_w_a_n_channel_span__t.html#a1bfba15154185b75693542cd0547cb96',1,'LoRaWANChannelSpan_t']]], + ['freqstep_1209',['freqStep',['../struct_lo_ra_w_a_n_channel_span__t.html#a958f8056a2611c7a503169457278541e',1,'LoRaWANChannelSpan_t']]], + ['frmpending_1210',['frmPending',['../struct_lo_ra_w_a_n_event__t.html#afe256fb2ed02e2ffdf0ae85f92951778',1,'LoRaWANEvent_t']]], + ['fromdistributionsystem_1211',['fromDistributionSystem',['../struct_l_r11x0_wifi_result_full__t.html#a47cb77c1ccf8da32d3a4102518c0d72c',1,'LR11x0WifiResultFull_t']]], + ['fsk_1212',['fsk',['../union_data_rate__t.html#abfa0cbc4b33c49435e67662b6e6027cf',1,'DataRate_t']]], + ['fwgnss_1213',['fwGNSS',['../struct_l_r11x0_version_info__t.html#aba5ac25e1acff5678991483d3a56084a',1,'LR11x0VersionInfo_t']]], + ['fwmajor_1214',['fwMajor',['../struct_l_r11x0_version_info__t.html#a50d3cf257fb187c00a6290c8c7d95edc',1,'LR11x0VersionInfo_t']]], + ['fwmajorwifi_1215',['fwMajorWiFi',['../struct_l_r11x0_version_info__t.html#add0c362641afcfff4a2ef3563e5f1c36',1,'LR11x0VersionInfo_t']]], + ['fwminor_1216',['fwMinor',['../struct_l_r11x0_version_info__t.html#a93ffc624cb2545411a409e7879a6d597',1,'LR11x0VersionInfo_t']]], + ['fwminorwifi_1217',['fwMinorWiFi',['../struct_l_r11x0_version_info__t.html#a5505724d8dd4b361a30cc4afd7fba19f',1,'LR11x0VersionInfo_t']]] ]; diff --git a/search/variables_6.js b/search/variables_6.js index dc9e6f50..54fd020e 100644 --- a/search/variables_6.js +++ b/search/variables_6.js @@ -1,10 +1,10 @@ var searchData= [ - ['gpiointerruptfalling_1221',['GpioInterruptFalling',['../class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936',1,'RadioLibHal']]], - ['gpiointerruptrising_1222',['GpioInterruptRising',['../class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851',1,'RadioLibHal']]], - ['gpiolevelhigh_1223',['GpioLevelHigh',['../class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d',1,'RadioLibHal']]], - ['gpiolevellow_1224',['GpioLevelLow',['../class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4',1,'RadioLibHal']]], - ['gpiomodeinput_1225',['GpioModeInput',['../class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769',1,'RadioLibHal']]], - ['gpiomodeoutput_1226',['GpioModeOutput',['../class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe',1,'RadioLibHal']]], - ['gps_1227',['gps',['../struct_l_r11x0_gnss_almanac_status__t.html#acec44165b211b49be3ca624ae03bc7cc',1,'LR11x0GnssAlmanacStatus_t']]] + ['gpiointerruptfalling_1218',['GpioInterruptFalling',['../class_radio_lib_hal.html#a01f73b66a632fc9dba41a23f592e0936',1,'RadioLibHal']]], + ['gpiointerruptrising_1219',['GpioInterruptRising',['../class_radio_lib_hal.html#a7ff9f3c608d68575dfc8962ba3669851',1,'RadioLibHal']]], + ['gpiolevelhigh_1220',['GpioLevelHigh',['../class_radio_lib_hal.html#a409c719ef8a11e8765c90e98ba42316d',1,'RadioLibHal']]], + ['gpiolevellow_1221',['GpioLevelLow',['../class_radio_lib_hal.html#a3cfca7ff9303fe84119ba2f4a4e1bbf4',1,'RadioLibHal']]], + ['gpiomodeinput_1222',['GpioModeInput',['../class_radio_lib_hal.html#a2d197fc1f62be4cd2d2c22be30744769',1,'RadioLibHal']]], + ['gpiomodeoutput_1223',['GpioModeOutput',['../class_radio_lib_hal.html#a18a711dd900a796ccfd7dddbdd2e6afe',1,'RadioLibHal']]], + ['gps_1224',['gps',['../struct_l_r11x0_gnss_almanac_status__t.html#acec44165b211b49be3ca624ae03bc7cc',1,'LR11x0GnssAlmanacStatus_t']]] ]; diff --git a/search/variables_7.js b/search/variables_7.js index 3c6bb4eb..7eb87def 100644 --- a/search/variables_7.js +++ b/search/variables_7.js @@ -1,6 +1,6 @@ var searchData= [ - ['hal_1228',['hal',['../class_module.html#a4483f0a39a523dd1b37b467d81418f7d',1,'Module']]], - ['hardware_1229',['hardware',['../struct_l_r11x0_version_info__t.html#a8c572580b8dba18d46ae50b4a4dd5a8d',1,'LR11x0VersionInfo_t']]], - ['height_1230',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]] + ['hal_1225',['hal',['../class_module.html#a4483f0a39a523dd1b37b467d81418f7d',1,'Module']]], + ['hardware_1226',['hardware',['../struct_l_r11x0_version_info__t.html#a8c572580b8dba18d46ae50b4a4dd5a8d',1,'LR11x0VersionInfo_t']]], + ['height_1227',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]] ]; diff --git a/search/variables_8.js b/search/variables_8.js index 040cadf1..4904824d 100644 --- a/search/variables_8.js +++ b/search/variables_8.js @@ -1,10 +1,10 @@ var searchData= [ - ['idx_1231',['idx',['../struct_lo_ra_w_a_n_channel__t.html#a9fc4b7ec0b298df267cc2c39ef12cfa0',1,'LoRaWANChannel_t']]], - ['info_1232',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], - ['infolen_1233',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]], - ['init_1234',['init',['../class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f',1,'RadioLibCRC']]], - ['ioreg_1235',['ioReg',['../struct_l_r11x0_wifi_result_extended__t.html#af9391a0e26fc6ef4cc1a5f5c61689409',1,'LR11x0WifiResultExtended_t']]], - ['irqflags_1236',['irqFlags',['../struct_c_a_d_scan_config__t.html#ab390fd53aba1e32ae1b41aae4aa835a5',1,'CADScanConfig_t']]], - ['irqmask_1237',['irqMask',['../struct_c_a_d_scan_config__t.html#ae86870cda342f39ad417abdfcb832ac3',1,'CADScanConfig_t']]] + ['idx_1228',['idx',['../struct_lo_ra_w_a_n_channel__t.html#a9fc4b7ec0b298df267cc2c39ef12cfa0',1,'LoRaWANChannel_t']]], + ['info_1229',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], + ['infolen_1230',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]], + ['init_1231',['init',['../class_radio_lib_c_r_c.html#a579acc51fe7a01b0b9b3f2e0e57b7d5f',1,'RadioLibCRC']]], + ['ioreg_1232',['ioReg',['../struct_l_r11x0_wifi_result_extended__t.html#af9391a0e26fc6ef4cc1a5f5c61689409',1,'LR11x0WifiResultExtended_t']]], + ['irqflags_1233',['irqFlags',['../struct_c_a_d_scan_config__t.html#ab390fd53aba1e32ae1b41aae4aa835a5',1,'CADScanConfig_t']]], + ['irqmask_1234',['irqMask',['../struct_c_a_d_scan_config__t.html#ae86870cda342f39ad417abdfcb832ac3',1,'CADScanConfig_t']]] ]; diff --git a/search/variables_9.js b/search/variables_9.js index c1a82d12..7510d13f 100644 --- a/search/variables_9.js +++ b/search/variables_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['joinnonce_1238',['joinNonce',['../struct_lo_ra_w_a_n_join_event__t.html#a935bc95eb2c02242c61f192fa2c68d8b',1,'LoRaWANJoinEvent_t']]] + ['joinnonce_1235',['joinNonce',['../struct_lo_ra_w_a_n_join_event__t.html#a935bc95eb2c02242c61f192fa2c68d8b',1,'LoRaWANJoinEvent_t']]] ]; diff --git a/search/variables_a.js b/search/variables_a.js index 3ad200c9..b35788c7 100644 --- a/search/variables_a.js +++ b/search/variables_a.js @@ -1,13 +1,13 @@ var searchData= [ - ['latitude_1239',['latitude',['../struct_l_r11x0_gnss_position__t.html#a1dc2c58c51b870cccf6542005f8afdc8',1,'LR11x0GnssPosition_t']]], - ['len_1240',['len',['../structtone__t.html#a7916c2e2d0011aead6f355076b8fb36c',1,'tone_t']]], - ['lendn_1241',['lenDn',['../struct_lo_ra_w_a_n_mac_command__t.html#a07d546268f6ac9ae191a7cca4791de37',1,'LoRaWANMacCommand_t']]], - ['length_1242',['length',['../struct_l_r11x0_wifi_result_extended__t.html#a403e9bde552ca9b07cdf49a2d295c563',1,'LR11x0WifiResultExtended_t']]], - ['lenup_1243',['lenUp',['../struct_lo_ra_w_a_n_mac_command__t.html#a89f71b4d17ad16089772ed070cc0949e',1,'LoRaWANMacCommand_t']]], - ['limit_1244',['limit',['../struct_r_s_s_i_scan_config__t.html#a8a9bf05648e82b49d43d6275ecf3cc3b',1,'RSSIScanConfig_t']]], - ['longitude_1245',['longitude',['../struct_l_r11x0_gnss_position__t.html#aa43d5bcce01522eb518cd8db0f73a057',1,'LR11x0GnssPosition_t']]], - ['lora_1246',['lora',['../union_data_rate__t.html#ab25c3fcaf1934cd9d6d5e9820749137d',1,'DataRate_t']]], - ['lr11xx_5ffirmware_5fimage_1247',['lr11xx_firmware_image',['../lr1110__transceiver__0307_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1110_transceiver_0307.h'],['../lr1120__transceiver__0101_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0102.h']]], - ['lrfhss_1248',['lrFhss',['../union_data_rate__t.html#aa11056b982f023a4572dee8d6ac5f9ef',1,'DataRate_t']]] + ['latitude_1236',['latitude',['../struct_l_r11x0_gnss_position__t.html#a1dc2c58c51b870cccf6542005f8afdc8',1,'LR11x0GnssPosition_t']]], + ['len_1237',['len',['../structtone__t.html#a7916c2e2d0011aead6f355076b8fb36c',1,'tone_t']]], + ['lendn_1238',['lenDn',['../struct_lo_ra_w_a_n_mac_command__t.html#a07d546268f6ac9ae191a7cca4791de37',1,'LoRaWANMacCommand_t']]], + ['length_1239',['length',['../struct_l_r11x0_wifi_result_extended__t.html#a403e9bde552ca9b07cdf49a2d295c563',1,'LR11x0WifiResultExtended_t']]], + ['lenup_1240',['lenUp',['../struct_lo_ra_w_a_n_mac_command__t.html#a89f71b4d17ad16089772ed070cc0949e',1,'LoRaWANMacCommand_t']]], + ['limit_1241',['limit',['../struct_r_s_s_i_scan_config__t.html#a8a9bf05648e82b49d43d6275ecf3cc3b',1,'RSSIScanConfig_t']]], + ['longitude_1242',['longitude',['../struct_l_r11x0_gnss_position__t.html#aa43d5bcce01522eb518cd8db0f73a057',1,'LR11x0GnssPosition_t']]], + ['lora_1243',['lora',['../union_data_rate__t.html#ab25c3fcaf1934cd9d6d5e9820749137d',1,'DataRate_t']]], + ['lr11xx_5ffirmware_5fimage_1244',['lr11xx_firmware_image',['../lr1110__transceiver__0307_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1110_transceiver_0307.h'],['../lr1120__transceiver__0101_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0101.h'],['../lr1120__transceiver__0102_8h.html#a3e84b323eea7cc20fb619e3d48818e64',1,'lr11xx_firmware_image(): lr1120_transceiver_0102.h']]], + ['lrfhss_1245',['lrFhss',['../union_data_rate__t.html#aa11056b982f023a4572dee8d6ac5f9ef',1,'DataRate_t']]] ]; diff --git a/search/variables_b.js b/search/variables_b.js index e14590b1..a21893c8 100644 --- a/search/variables_b.js +++ b/search/variables_b.js @@ -1,7 +1,7 @@ var searchData= [ - ['mac_1249',['mac',['../struct_l_r11x0_wifi_result__t.html#a9fb28ba0ff8e6625322b081a4bda5628',1,'LR11x0WifiResult_t']]], - ['mac0_1250',['mac0',['../struct_l_r11x0_wifi_result_extended__t.html#ae689651117f96ba356caea064cdeb191',1,'LR11x0WifiResultExtended_t']]], - ['mac2_1251',['mac2',['../struct_l_r11x0_wifi_result_extended__t.html#a530ba85cf4b0b41e519b2d89e37b2497',1,'LR11x0WifiResultExtended_t']]], - ['mode_1252',['mode',['../struct_module_1_1_rf_switch_mode__t.html#a2442217bfabfb124a3f46bb128aa7462',1,'Module::RfSwitchMode_t']]] + ['mac_1246',['mac',['../struct_l_r11x0_wifi_result__t.html#a9fb28ba0ff8e6625322b081a4bda5628',1,'LR11x0WifiResult_t']]], + ['mac0_1247',['mac0',['../struct_l_r11x0_wifi_result_extended__t.html#ae689651117f96ba356caea064cdeb191',1,'LR11x0WifiResultExtended_t']]], + ['mac2_1248',['mac2',['../struct_l_r11x0_wifi_result_extended__t.html#a530ba85cf4b0b41e519b2d89e37b2497',1,'LR11x0WifiResultExtended_t']]], + ['mode_1249',['mode',['../struct_module_1_1_rf_switch_mode__t.html#a2442217bfabfb124a3f46bb128aa7462',1,'Module::RfSwitchMode_t']]] ]; diff --git a/search/variables_c.js b/search/variables_c.js index a04611e6..61b44bfc 100644 --- a/search/variables_c.js +++ b/search/variables_c.js @@ -1,13 +1,13 @@ var searchData= [ - ['narrowgrid_1253',['narrowGrid',['../struct_lr_fhss_rate__t.html#a29dec307a472c34e9fafb10af3c4fb9c',1,'LrFhssRate_t']]], - ['nbtrans_1254',['nbTrans',['../struct_lo_ra_w_a_n_event__t.html#a6e46d7cf9c75ff511ad4d063692c16e7',1,'LoRaWANEvent_t']]], - ['newsession_1255',['newSession',['../struct_lo_ra_w_a_n_join_event__t.html#a5b233f8c9d2841b8db64df7f079ab0ee',1,'LoRaWANJoinEvent_t']]], - ['nextalmanacid_1256',['nextAlmanacId',['../struct_l_r11x0_gnss_almanac_status__t.html#aace4c0ad339bda11ee3c9c409f6492fb',1,'LR11x0GnssAlmanacStatus_t']]], - ['numchannels_1257',['numChannels',['../struct_lo_ra_w_a_n_channel_span__t.html#a50f5701ae19b79a0c8c487673135b2f2',1,'LoRaWANChannelSpan_t']]], - ['numrepeaters_1258',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], - ['numsatsdet_1259',['numSatsDet',['../struct_l_r11x0_gnss_result__t.html#a9e3cdbdf86357bfd0226926d7c5d97e3',1,'LR11x0GnssResult_t']]], - ['numsatsused_1260',['numSatsUsed',['../struct_l_r11x0_gnss_position__t.html#afd8b7a02f519af12ddb7d0dba5288b3f',1,'LR11x0GnssPosition_t']]], - ['numtones_1261',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]], - ['numtxspans_1262',['numTxSpans',['../struct_lo_ra_w_a_n_band__t.html#ae58f859a72e64aa4a6fe218ba7e21c10',1,'LoRaWANBand_t']]] + ['narrowgrid_1250',['narrowGrid',['../struct_lr_fhss_rate__t.html#a29dec307a472c34e9fafb10af3c4fb9c',1,'LrFhssRate_t']]], + ['nbtrans_1251',['nbTrans',['../struct_lo_ra_w_a_n_event__t.html#a6e46d7cf9c75ff511ad4d063692c16e7',1,'LoRaWANEvent_t']]], + ['newsession_1252',['newSession',['../struct_lo_ra_w_a_n_join_event__t.html#a5b233f8c9d2841b8db64df7f079ab0ee',1,'LoRaWANJoinEvent_t']]], + ['nextalmanacid_1253',['nextAlmanacId',['../struct_l_r11x0_gnss_almanac_status__t.html#aace4c0ad339bda11ee3c9c409f6492fb',1,'LR11x0GnssAlmanacStatus_t']]], + ['numchannels_1254',['numChannels',['../struct_lo_ra_w_a_n_channel_span__t.html#a50f5701ae19b79a0c8c487673135b2f2',1,'LoRaWANChannelSpan_t']]], + ['numrepeaters_1255',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], + ['numsatsdet_1256',['numSatsDet',['../struct_l_r11x0_gnss_result__t.html#a9e3cdbdf86357bfd0226926d7c5d97e3',1,'LR11x0GnssResult_t']]], + ['numsatsused_1257',['numSatsUsed',['../struct_l_r11x0_gnss_position__t.html#afd8b7a02f519af12ddb7d0dba5288b3f',1,'LR11x0GnssPosition_t']]], + ['numtones_1258',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]], + ['numtxspans_1259',['numTxSpans',['../struct_lo_ra_w_a_n_band__t.html#ae58f859a72e64aa4a6fe218ba7e21c10',1,'LoRaWANBand_t']]] ]; diff --git a/search/variables_d.js b/search/variables_d.js index 8eb48321..389ee26f 100644 --- a/search/variables_d.js +++ b/search/variables_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['origin_1263',['origin',['../struct_l_r11x0_wifi_result__t.html#aedbfd390bee0e0995321e0a5caedac53',1,'LR11x0WifiResult_t']]], - ['out_1264',['out',['../class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050',1,'RadioLibCRC']]] + ['origin_1260',['origin',['../struct_l_r11x0_wifi_result__t.html#aedbfd390bee0e0995321e0a5caedac53',1,'LR11x0WifiResult_t']]], + ['out_1261',['out',['../class_radio_lib_c_r_c.html#a46616ef58e9eeeca646de0c9fe681050',1,'RadioLibCRC']]] ]; diff --git a/search/variables_e.js b/search/variables_e.js index 5d9dcff8..2dd3009d 100644 --- a/search/variables_e.js +++ b/search/variables_e.js @@ -1,13 +1,13 @@ var searchData= [ - ['parsestatuscb_1265',['parseStatusCb',['../struct_module_1_1_s_p_i_config__t.html#a9619dcb8b269bcbd125e5a05e6c0fc77',1,'Module::SPIConfig_t']]], - ['payloadlenmax_1266',['payloadLenMax',['../struct_lo_ra_w_a_n_band__t.html#a9b8143ac9bbf3ed45e7cc80fc71ce055',1,'LoRaWANBand_t']]], - ['periodbeacon_1267',['periodBeacon',['../struct_l_r11x0_wifi_result_full__t.html#a0e2539bf62ddd7fb7a9671f4e8c58bf8',1,'LR11x0WifiResultFull_t']]], - ['persist_1268',['persist',['../struct_lo_ra_w_a_n_mac_command__t.html#aa253350bc95c821bf42eaee170922355',1,'LoRaWANMacCommand_t']]], - ['phioffset_1269',['phiOffset',['../struct_l_r11x0_wifi_result_full__t.html#a37d3203c39ca6d6f0ab42662a09bab13',1,'LR11x0WifiResultFull_t']]], - ['poly_1270',['poly',['../class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d',1,'RadioLibCRC']]], - ['power_1271',['power',['../struct_lo_ra_w_a_n_event__t.html#a49eebe64d351bb2e91901ef8fae044ff',1,'LoRaWANEvent_t']]], - ['powermax_1272',['powerMax',['../struct_lo_ra_w_a_n_band__t.html#a43fdafd540c93348f9b4a8958e021a4c',1,'LoRaWANBand_t']]], - ['powernumsteps_1273',['powerNumSteps',['../struct_lo_ra_w_a_n_band__t.html#aa22d7d7670846b36d3104439d18e5f15',1,'LoRaWANBand_t']]], - ['protocolid_1274',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]] + ['parsestatuscb_1262',['parseStatusCb',['../struct_module_1_1_s_p_i_config__t.html#a9619dcb8b269bcbd125e5a05e6c0fc77',1,'Module::SPIConfig_t']]], + ['payloadlenmax_1263',['payloadLenMax',['../struct_lo_ra_w_a_n_band__t.html#a9b8143ac9bbf3ed45e7cc80fc71ce055',1,'LoRaWANBand_t']]], + ['periodbeacon_1264',['periodBeacon',['../struct_l_r11x0_wifi_result_full__t.html#a0e2539bf62ddd7fb7a9671f4e8c58bf8',1,'LR11x0WifiResultFull_t']]], + ['persist_1265',['persist',['../struct_lo_ra_w_a_n_mac_command__t.html#aa253350bc95c821bf42eaee170922355',1,'LoRaWANMacCommand_t']]], + ['phioffset_1266',['phiOffset',['../struct_l_r11x0_wifi_result_full__t.html#a37d3203c39ca6d6f0ab42662a09bab13',1,'LR11x0WifiResultFull_t']]], + ['poly_1267',['poly',['../class_radio_lib_c_r_c.html#af3942e08bde9d9d127f735bd10392f6d',1,'RadioLibCRC']]], + ['power_1268',['power',['../struct_lo_ra_w_a_n_event__t.html#a49eebe64d351bb2e91901ef8fae044ff',1,'LoRaWANEvent_t']]], + ['powermax_1269',['powerMax',['../struct_lo_ra_w_a_n_band__t.html#a43fdafd540c93348f9b4a8958e021a4c',1,'LoRaWANBand_t']]], + ['powernumsteps_1270',['powerNumSteps',['../struct_lo_ra_w_a_n_band__t.html#aa22d7d7670846b36d3104439d18e5f15',1,'LoRaWANBand_t']]], + ['protocolid_1271',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]] ]; diff --git a/search/variables_f.js b/search/variables_f.js index dbd8ff7d..2507a985 100644 --- a/search/variables_f.js +++ b/search/variables_f.js @@ -1,16 +1,16 @@ var searchData= [ - ['radiolib_5flr1110_5ffirmware_5fattr_1275',['RADIOLIB_LR1110_FIRMWARE_ATTR',['../lr1121__transceiver__0103_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1120_transceiver_0201.h'],['../lr1110__transceiver__0401_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0306_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0305.h']]], - ['rate_1276',['rate',['../struct_l_r11x0_wifi_result_extended__t.html#a16a6732a8af0332f64c0f6bcc0d5257f',1,'LR11x0WifiResultExtended_t']]], - ['rcvseqnumber_1277',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], - ['refin_1278',['refIn',['../class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04',1,'RadioLibCRC']]], - ['refout_1279',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]], - ['repeatercallsigns_1280',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], - ['repeaterssids_1281',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], - ['reply_1282',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]], - ['ressize_1283',['resSize',['../struct_l_r11x0_gnss_result__t.html#a2fcd901f5815f3e4760f61d2bc7a7a9b',1,'LR11x0GnssResult_t']]], - ['rfswitch_5fmax_5fpins_1284',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]], - ['rssi_1285',['rssi',['../struct_l_r11x0_wifi_result__t.html#acac3f837ac4fa56e5fda3221f89f3d9f',1,'LR11x0WifiResult_t::rssi()'],['../union_channel_scan_config__t.html#ad728b1bd8f0410660f51df0b27f2797e',1,'ChannelScanConfig_t::rssi()']]], - ['rx1span_1286',['rx1Span',['../struct_lo_ra_w_a_n_band__t.html#af8def1e0b5c3dc122557f71f5637a529',1,'LoRaWANBand_t']]], - ['rx2_1287',['rx2',['../struct_lo_ra_w_a_n_band__t.html#ae3ed10eddc647a6f770121a1662a854f',1,'LoRaWANBand_t']]] + ['radiolib_5flr1110_5ffirmware_5fattr_1272',['RADIOLIB_LR1110_FIRMWARE_ATTR',['../lr1121__transceiver__0103_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1121_transceiver_0103.h'],['../lr1120__transceiver__0201_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1120_transceiver_0201.h'],['../lr1110__transceiver__0401_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0401.h'],['../lr1110__transceiver__0306_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0306.h'],['../lr1110__transceiver__0305_8h.html#a9d71ed93e8016b97a4d70b4194f622db',1,'RADIOLIB_LR1110_FIRMWARE_ATTR(): lr1110_transceiver_0305.h']]], + ['rate_1273',['rate',['../struct_l_r11x0_wifi_result_extended__t.html#a16a6732a8af0332f64c0f6bcc0d5257f',1,'LR11x0WifiResultExtended_t']]], + ['rcvseqnumber_1274',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], + ['refin_1275',['refIn',['../class_radio_lib_c_r_c.html#ac65a358753efd05067c19fcf1098ec04',1,'RadioLibCRC']]], + ['refout_1276',['refOut',['../class_radio_lib_c_r_c.html#ab1b5aa578ed5818a7618df8c6cf98087',1,'RadioLibCRC']]], + ['repeatercallsigns_1277',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], + ['repeaterssids_1278',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], + ['reply_1279',['reply',['../class_bell_client.html#a9233e10bc794af85e3e86b4ec2a8746d',1,'BellClient']]], + ['ressize_1280',['resSize',['../struct_l_r11x0_gnss_result__t.html#a2fcd901f5815f3e4760f61d2bc7a7a9b',1,'LR11x0GnssResult_t']]], + ['rfswitch_5fmax_5fpins_1281',['RFSWITCH_MAX_PINS',['../class_module.html#a0c11551e12579bbabf57b19e12555b3c',1,'Module']]], + ['rssi_1282',['rssi',['../struct_l_r11x0_wifi_result__t.html#acac3f837ac4fa56e5fda3221f89f3d9f',1,'LR11x0WifiResult_t::rssi()'],['../union_channel_scan_config__t.html#ad728b1bd8f0410660f51df0b27f2797e',1,'ChannelScanConfig_t::rssi()']]], + ['rx1span_1283',['rx1Span',['../struct_lo_ra_w_a_n_band__t.html#af8def1e0b5c3dc122557f71f5637a529',1,'LoRaWANBand_t']]], + ['rx2_1284',['rx2',['../struct_lo_ra_w_a_n_band__t.html#ae3ed10eddc647a6f770121a1662a854f',1,'LoRaWANBand_t']]] ];