diff --git a/_r_f69_8h_source.html b/_r_f69_8h_source.html index a0ab5c9b..98556710 100644 --- a/_r_f69_8h_source.html +++ b/_r_f69_8h_source.html @@ -608,130 +608,142 @@ $(document).ready(function(){initNavTree('_r_f69_8h_source.html',''); initResiza
750 
758  int16_t setOokThresholdType(uint8_t type);
759 
-
767  int16_t fixedPacketLengthMode(uint8_t len = RF69_MAX_PACKET_LENGTH);
+
767  int16_t setOokFixedThreshold(uint8_t value);
768 
-
776  int16_t variablePacketLengthMode(uint8_t maxLen = RF69_MAX_PACKET_LENGTH);
+
776  int16_t setOokPeakThresholdDecrement(uint8_t value);
777 
-
785  int16_t enableSyncWordFiltering(uint8_t maxErrBits = 0);
+
785  int16_t fixedPacketLengthMode(uint8_t len = RF69_MAX_PACKET_LENGTH);
786 
-
792  int16_t disableSyncWordFiltering();
-
793 
-
801  int16_t setCrcFiltering(bool crcOn = true);
-
802 
-
810  int16_t setPromiscuousMode(bool promiscuous = true);
+
794  int16_t variablePacketLengthMode(uint8_t maxLen = RF69_MAX_PACKET_LENGTH);
+
795 
+
803  int16_t enableSyncWordFiltering(uint8_t maxErrBits = 0);
+
804 
+
810  int16_t disableSyncWordFiltering();
811 
-
820  int16_t setDataShaping(uint8_t sh) override;
-
821 
-
830  int16_t setEncoding(uint8_t encoding) override;
-
831 
-
839  int16_t setLnaTestBoost(bool value);
-
840 
-
846  float getRSSI();
-
847 
-
856  void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn);
-
857 
-
863  uint8_t randomByte();
-
864 
-
870  int16_t getChipVersion();
-
871 
-
877  void setDirectAction(void (*func)(void));
-
878 
-
884  void readBit(RADIOLIB_PIN_TYPE pin);
-
885 
-
886 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
-
887  protected:
-
888 #endif
-
889  Module* _mod;
-
890 
-
891 #if !defined(RADIOLIB_GODMODE)
-
892  protected:
-
893 #endif
-
894 
-
895  float _freq = 0;
-
896  float _br = 0;
-
897  float _rxBw = 0;
-
898  bool _ook = false;
-
899  int16_t _tempOffset = 0;
-
900  int8_t _power = 0;
-
901 
-
902  size_t _packetLength = 0;
-
903  bool _packetLengthQueried = false;
-
904  uint8_t _packetLengthConfig = RF69_PACKET_FORMAT_VARIABLE;
-
905 
-
906  bool _promiscuous = false;
-
907 
-
908  uint8_t _syncWordLength = 2;
-
909 
-
910  int16_t config();
-
911  int16_t directMode();
-
912  int16_t setPacketMode(uint8_t mode, uint8_t len);
-
913 
-
914 #if !defined(RADIOLIB_GODMODE)
-
915  private:
-
916 #endif
-
917  int16_t setMode(uint8_t mode);
-
918  void clearIRQFlags();
-
919 };
-
920 
-
921 #endif
+
817  int16_t enableContinuousModeBitSync();
+
818 
+
824  int16_t disableContinuousModeBitSync();
+
825 
+
833  int16_t setCrcFiltering(bool crcOn = true);
+
834 
+
842  int16_t setPromiscuousMode(bool promiscuous = true);
+
843 
+
852  int16_t setDataShaping(uint8_t sh) override;
+
853 
+
862  int16_t setEncoding(uint8_t encoding) override;
+
863 
+
871  int16_t setLnaTestBoost(bool value);
+
872 
+
878  float getRSSI();
+
879 
+
888  void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn);
+
889 
+
895  uint8_t randomByte();
+
896 
+
902  int16_t getChipVersion();
+
903 
+
909  void setDirectAction(void (*func)(void));
+
910 
+
916  void readBit(RADIOLIB_PIN_TYPE pin);
+
917 
+
918 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
+
919  protected:
+
920 #endif
+
921  Module* _mod;
922 
-
923 #endif
+
923 #if !defined(RADIOLIB_GODMODE)
+
924  protected:
+
925 #endif
+
926 
+
927  float _freq = 0;
+
928  float _br = 0;
+
929  float _rxBw = 0;
+
930  bool _ook = false;
+
931  int16_t _tempOffset = 0;
+
932  int8_t _power = 0;
+
933 
+
934  size_t _packetLength = 0;
+
935  bool _packetLengthQueried = false;
+
936  uint8_t _packetLengthConfig = RF69_PACKET_FORMAT_VARIABLE;
+
937 
+
938  bool _promiscuous = false;
+
939 
+
940  uint8_t _syncWordLength = 2;
+
941 
+
942  int16_t config();
+
943  int16_t directMode();
+
944  int16_t setPacketMode(uint8_t mode, uint8_t len);
+
945 
+
946 #if !defined(RADIOLIB_GODMODE)
+
947  private:
+
948 #endif
+
949  int16_t setMode(uint8_t mode);
+
950  void clearIRQFlags();
+
951 };
+
952 
+
953 #endif
+
954 
+
955 #endif
-
RF69::setCrcFiltering
int16_t setCrcFiltering(bool crcOn=true)
Enable CRC filtering and generation.
Definition: RF69.cpp:715
+
RF69::setCrcFiltering
int16_t setCrcFiltering(bool crcOn=true)
Enable CRC filtering and generation.
Definition: RF69.cpp:731
RF69::setDio0Action
void setDio0Action(void(*func)(void))
Sets interrupt service routine to call when DIO0 activates.
Definition: RF69.cpp:269
RF69::clearDio1Action
void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: RF69.cpp:285
PhysicalLayer::transmit
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:10
-
RF69::setBroadcastAddress
int16_t setBroadcastAddress(uint8_t broadAddr)
Sets broadcast address. Calling this method will also enable address filtering for node and broadcast...
Definition: RF69.cpp:634
+
RF69::setBroadcastAddress
int16_t setBroadcastAddress(uint8_t broadAddr)
Sets broadcast address. Calling this method will also enable address filtering for node and broadcast...
Definition: RF69.cpp:642
RF69::receiveDirect
int16_t receiveDirect() override
Starts direct mode reception.
Definition: RF69.cpp:200
-
RF69::setRfSwitchPins
void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)
Some modules contain external RF switch controlled by two pins. This function gives RadioLib control ...
Definition: RF69.cpp:799
+
RF69::setRfSwitchPins
void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)
Some modules contain external RF switch controlled by two pins. This function gives RadioLib control ...
Definition: RF69.cpp:815
+
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:391
RF69::readData
int16_t readData(uint8_t *data, size_t len) override
Reads data received after calling startReceive method.
Definition: RF69.cpp:340
-
RF69::setPromiscuousMode
int16_t setPromiscuousMode(bool promiscuous=true)
Set modem in "sniff" mode: no packet filtering (e.g., no preamble, sync word, address,...
Definition: RF69.cpp:723
+
RF69::setPromiscuousMode
int16_t setPromiscuousMode(bool promiscuous=true)
Set modem in "sniff" mode: no packet filtering (e.g., no preamble, sync word, address,...
Definition: RF69.cpp:739
RF69::receive
int16_t receive(uint8_t *data, size_t len) override
Blocking binary receive method. Overloads for string-based transmissions are implemented in PhysicalL...
Definition: RF69.cpp:139
RF69::clearDio0Action
void clearDio0Action()
Clears interrupt service routine to call when DIO0 activates.
Definition: RF69.cpp:273
-
RF69::getPacketLength
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: RF69.cpp:677
+
RF69::getPacketLength
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: RF69.cpp:685
RF69
Control class for RF69 module. Also serves as base class for SX1231.
Definition: RF69.h:440
RF69::setDio1Action
void setDio1Action(void(*func)(void))
Sets interrupt service routine to call when DIO1 activates.
Definition: RF69.cpp:277
RF69::startReceive
int16_t startReceive()
Interrupt-driven receive method. GDO0 will be activated when full packet is received.
Definition: RF69.cpp:241
-
RF69::setFrequency
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510....
Definition: RF69.cpp:391
-
RF69::fixedPacketLengthMode
int16_t fixedPacketLengthMode(uint8_t len=RF69_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode.
Definition: RF69.cpp:690
-
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:625
+
RF69::setFrequency
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values are in bands 290.0 to 340.0 MHz, 431.0 to 510....
Definition: RF69.cpp:399
+
RF69::fixedPacketLengthMode
int16_t fixedPacketLengthMode(uint8_t len=RF69_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode.
Definition: RF69.cpp:698
+
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:633
RF69::enableAES
int16_t enableAES()
Enables AES encryption.
Definition: RF69.cpp:233
-
RF69::setPreambleLength
int16_t setPreambleLength(uint8_t preambleLen)
Sets preamble length.
Definition: RF69.cpp:614
+
RF69::setPreambleLength
int16_t setPreambleLength(uint8_t preambleLen)
Sets preamble length.
Definition: RF69.cpp:622
+
RF69::disableContinuousModeBitSync
int16_t disableContinuousModeBitSync()
Disable Bit synchronization in continuous mode.
Definition: RF69.cpp:727
RF69::reset
void reset()
Reset method. Will reset the chip to the default state using RST pin.
Definition: RF69.cpp:102
RF69::transmit
int16_t transmit(uint8_t *data, size_t len, uint8_t addr=0) override
Blocking binary transmit method. Overloads for string-based transmissions are implemented in Physical...
Definition: RF69.cpp:110
-
RF69::setRxBandwidth
int16_t setRxBandwidth(float rxBw)
Sets receiver bandwidth. Allowed values are 2.6, 3.1, 3.9, 5.2, 6.3, 7.8, 10.4, 12....
Definition: RF69.cpp:434
+
RF69::setRxBandwidth
int16_t setRxBandwidth(float rxBw)
Sets receiver bandwidth. Allowed values are 2.6, 3.1, 3.9, 5.2, 6.3, 7.8, 10.4, 12....
Definition: RF69.cpp:442
PhysicalLayer::readData
int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:59
-
RF69::setBitRate
int16_t setBitRate(float br)
Sets bit rate. Allowed values range from 1.2 to 300.0 kbps.
Definition: RF69.cpp:413
+
RF69::setBitRate
int16_t setBitRate(float br)
Sets bit rate. Allowed values range from 1.2 to 300.0 kbps.
Definition: RF69.cpp:421
RF69::disableAES
int16_t disableAES()
Disables AES encryption.
Definition: RF69.cpp:237
RF69::RF69
RF69(Module *module)
Default constructor.
Definition: RF69.cpp:4
-
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:749
-
RF69::randomByte
uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: RF69.cpp:803
+
RF69::setOokPeakThresholdDecrement
int16_t setOokPeakThresholdDecrement(uint8_t value)
Period of decrement of the RSSI threshold in the OOK demodulator.
Definition: RF69.cpp:395
+
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:765
+
RF69::enableContinuousModeBitSync
int16_t enableContinuousModeBitSync()
Enable Bit synchronization in continuous mode.
Definition: RF69.cpp:723
+
RF69::randomByte
uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: RF69.cpp:819
RF69::setOOK
int16_t setOOK(bool enableOOK)
Enables/disables OOK modulation instead of FSK.
Definition: RF69.cpp:369
RF69::standby
int16_t standby() override
Sets the module to standby mode.
Definition: RF69.cpp:171
-
RF69::setLnaTestBoost
int16_t setLnaTestBoost(bool value)
Enable/disable LNA Boost mode (disabled by default).
Definition: RF69.cpp:787
-
RF69::getTemperature
int16_t getTemperature()
Measures temperature.
Definition: RF69.cpp:660
-
RF69::setFrequencyDeviation
int16_t setFrequencyDeviation(float freqDev) override
Sets frequency deviation.
Definition: RF69.cpp:529
-
RF69::disableAddressFiltering
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: RF69.cpp:643
-
RF69::setSyncWord
int16_t setSyncWord(uint8_t *syncWord, size_t len, uint8_t maxErrBits=0)
Sets sync word. Up to 8 bytes can be set as sync word.
Definition: RF69.cpp:591
-
RF69::readBit
void readBit(RADIOLIB_PIN_TYPE pin)
Function to read and process data bit in direct reception mode.
Definition: RF69.cpp:826
-
RF69::disableSyncWordFiltering
int16_t disableSyncWordFiltering()
Disable preamble and sync word filtering and generation.
Definition: RF69.cpp:703
-
RF69::getRSSI
float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: RF69.cpp:795
+
RF69::setLnaTestBoost
int16_t setLnaTestBoost(bool value)
Enable/disable LNA Boost mode (disabled by default).
Definition: RF69.cpp:803
+
RF69::getTemperature
int16_t getTemperature()
Measures temperature.
Definition: RF69.cpp:668
+
RF69::setFrequencyDeviation
int16_t setFrequencyDeviation(float freqDev) override
Sets frequency deviation.
Definition: RF69.cpp:537
+
RF69::disableAddressFiltering
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: RF69.cpp:651
+
RF69::setSyncWord
int16_t setSyncWord(uint8_t *syncWord, size_t len, uint8_t maxErrBits=0)
Sets sync word. Up to 8 bytes can be set as sync word.
Definition: RF69.cpp:599
+
RF69::readBit
void readBit(RADIOLIB_PIN_TYPE pin)
Function to read and process data bit in direct reception mode.
Definition: RF69.cpp:842
+
RF69::disableSyncWordFiltering
int16_t disableSyncWordFiltering()
Disable preamble and sync word filtering and generation.
Definition: RF69.cpp:711
+
RF69::getRSSI
float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: RF69.cpp:811
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
PhysicalLayer::receive
int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:100
-
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:769
+
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:785
RF69::setAESKey
void setAESKey(uint8_t *key)
Sets AES key.
Definition: RF69.cpp:229
-
RF69::setDirectAction
void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: RF69.cpp:822
+
RF69::setDirectAction
void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: RF69.cpp:838
Module
Implements all common low-level SPI/UART methods to control the wireless module. Every module class c...
Definition: Module.h:17
RF69::transmitDirect
int16_t transmitDirect(uint32_t frf=0) override
Starts direct mode transmission.
Definition: RF69.cpp:179
-
RF69::setOutputPower
int16_t setOutputPower(int8_t power, bool highPower=false)
Sets output power. Allowed values range from -18 to 13 dBm for low power modules (RF69C/CW) or -2 to ...
Definition: RF69.cpp:553
+
RF69::setOutputPower
int16_t setOutputPower(int8_t power, bool highPower=false)
Sets output power. Allowed values range from -18 to 13 dBm for low power modules (RF69C/CW) or -2 to ...
Definition: RF69.cpp:561
RF69::packetMode
int16_t packetMode()
Stops direct mode. It is required to call this method to switch from direct transmissions to packet-b...
Definition: RF69.cpp:225
-
RF69::setAmbientTemperature
void setAmbientTemperature(int16_t tempAmbient)
Sets ambient temperature. Required to correct values from on-board temperature sensor.
Definition: RF69.cpp:656
+
RF69::setAmbientTemperature
void setAmbientTemperature(int16_t tempAmbient)
Sets ambient temperature. Required to correct values from on-board temperature sensor.
Definition: RF69.cpp:664
RF69::setOokThresholdType
int16_t setOokThresholdType(uint8_t type)
Selects the type of threshold in the OOK data slicer.
Definition: RF69.cpp:384
RF69::sleep
int16_t sleep()
Sets the module to sleep mode.
Definition: RF69.cpp:163
-
RF69::getChipVersion
int16_t getChipVersion()
Read version SPI register. Should return RF69_CHIP_VERSION (0x24) if SX127x is connected and working.
Definition: RF69.cpp:830
-
RF69::enableSyncWordFiltering
int16_t enableSyncWordFiltering(uint8_t maxErrBits=0)
Enable sync word filtering and generation.
Definition: RF69.cpp:698
-
RF69::variablePacketLengthMode
int16_t variablePacketLengthMode(uint8_t maxLen=RF69_MAX_PACKET_LENGTH)
Set modem in variable packet length mode.
Definition: RF69.cpp:694
+
RF69::getChipVersion
int16_t getChipVersion()
Read version SPI register. Should return RF69_CHIP_VERSION (0x24) if SX127x is connected and working.
Definition: RF69.cpp:846
+
RF69::enableSyncWordFiltering
int16_t enableSyncWordFiltering(uint8_t maxErrBits=0)
Enable sync word filtering and generation.
Definition: RF69.cpp:706
+
RF69::variablePacketLengthMode
int16_t variablePacketLengthMode(uint8_t maxLen=RF69_MAX_PACKET_LENGTH)
Set modem in variable packet length mode.
Definition: RF69.cpp:702
RF69::startTransmit
int16_t startTransmit(uint8_t *data, size_t len, uint8_t addr=0) override
Interrupt-driven binary transmit method. Overloads for string-based transmissions are implemented in ...
Definition: RF69.cpp:292
RF69::begin
int16_t begin(float freq=434.0, float br=48.0, float freqDev=50.0, float rxBw=125.0, int8_t power=10, uint8_t preambleLen=16)
Initialization method.
Definition: RF69.cpp:8
PhysicalLayer::startTransmit
int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:51
diff --git a/_s_x127x_8h_source.html b/_s_x127x_8h_source.html index 69aaa0df..fad57171 100644 --- a/_s_x127x_8h_source.html +++ b/_s_x127x_8h_source.html @@ -724,94 +724,100 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
920 
928  int16_t setOokFixedOrFloorThreshold(uint8_t value);
929 
-
937  size_t getPacketLength(bool update = true) override;
-
938 
-
946  int16_t fixedPacketLengthMode(uint8_t len = SX127X_MAX_PACKET_LENGTH_FSK);
-
947 
-
955  int16_t variablePacketLengthMode(uint8_t maxLen = SX127X_MAX_PACKET_LENGTH_FSK);
-
956 
-
967  int16_t setRSSIConfig(uint8_t smoothingSamples, int8_t offset = 0);
-
968 
-
977  int16_t setEncoding(uint8_t encoding) override;
-
978 
-
986  uint16_t getIRQFlags();
-
987 
-
993  uint8_t getModemStatus();
-
994 
-
1001  int8_t getTempRaw();
-
1002 
-
1011  void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn);
-
1012 
-
1018  uint8_t randomByte();
-
1019 
-
1025  int16_t getChipVersion();
+
935  int16_t enableBitSync();
+
936 
+
942  int16_t disableBitSync();
+
943 
+
951  size_t getPacketLength(bool update = true) override;
+
952 
+
960  int16_t fixedPacketLengthMode(uint8_t len = SX127X_MAX_PACKET_LENGTH_FSK);
+
961 
+
969  int16_t variablePacketLengthMode(uint8_t maxLen = SX127X_MAX_PACKET_LENGTH_FSK);
+
970 
+
981  int16_t setRSSIConfig(uint8_t smoothingSamples, int8_t offset = 0);
+
982 
+
991  int16_t setEncoding(uint8_t encoding) override;
+
992 
+
1000  uint16_t getIRQFlags();
+
1001 
+
1007  uint8_t getModemStatus();
+
1008 
+
1015  int8_t getTempRaw();
+
1016 
+
1025  void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn);
1026 
-
1034  int16_t invertIQ(bool invertIQ);
-
1035 
-
1041  void setDirectAction(void (*func)(void));
-
1042 
-
1048  void readBit(RADIOLIB_PIN_TYPE pin);
+
1032  uint8_t randomByte();
+
1033 
+
1039  int16_t getChipVersion();
+
1040 
+
1048  int16_t invertIQ(bool invertIQ);
1049 
-
1050 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
-
1051  protected:
-
1052 #endif
-
1053  Module* _mod;
-
1054 
-
1055 #if !defined(RADIOLIB_GODMODE)
-
1056  protected:
-
1057 #endif
-
1058 
-
1059  float _freq = 0;
-
1060  float _bw = 0;
-
1061  uint8_t _sf = 0;
-
1062  uint8_t _cr = 0;
-
1063  float _br = 0;
-
1064  bool _ook = false;
-
1065  bool _crcEnabled = false;
-
1066  size_t _packetLength = 0;
-
1067 
-
1068  int16_t setFrequencyRaw(float newFreq);
-
1069  int16_t config();
-
1070  int16_t configFSK();
-
1071  int16_t getActiveModem();
-
1072  int16_t directMode();
-
1073  int16_t setPacketMode(uint8_t mode, uint8_t len);
-
1074 
-
1075 #if !defined(RADIOLIB_GODMODE)
-
1076  private:
-
1077 #endif
-
1078  float _dataRate = 0;
-
1079  bool _packetLengthQueried = false; // FSK packet length is the first byte in FIFO, length can only be queried once
-
1080  uint8_t _packetLengthConfig = SX127X_PACKET_VARIABLE;
+
1055  void setDirectAction(void (*func)(void));
+
1056 
+
1062  void readBit(RADIOLIB_PIN_TYPE pin);
+
1063 
+
1064 #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
+
1065  protected:
+
1066 #endif
+
1067  Module* _mod;
+
1068 
+
1069 #if !defined(RADIOLIB_GODMODE)
+
1070  protected:
+
1071 #endif
+
1072 
+
1073  float _freq = 0;
+
1074  float _bw = 0;
+
1075  uint8_t _sf = 0;
+
1076  uint8_t _cr = 0;
+
1077  float _br = 0;
+
1078  bool _ook = false;
+
1079  bool _crcEnabled = false;
+
1080  size_t _packetLength = 0;
1081 
-
1082  bool findChip(uint8_t ver);
-
1083  int16_t setMode(uint8_t mode);
-
1084  int16_t setActiveModem(uint8_t modem);
-
1085  void clearIRQFlags();
-
1086  void clearFIFO(size_t count); // used mostly to clear remaining bytes in FIFO after a packet read
-
1094  static uint8_t calculateBWManExp(float bandwidth);
+
1082  int16_t setFrequencyRaw(float newFreq);
+
1083  int16_t config();
+
1084  int16_t configFSK();
+
1085  int16_t getActiveModem();
+
1086  int16_t directMode();
+
1087  int16_t setPacketMode(uint8_t mode, uint8_t len);
+
1088 
+
1089 #if !defined(RADIOLIB_GODMODE)
+
1090  private:
+
1091 #endif
+
1092  float _dataRate = 0;
+
1093  bool _packetLengthQueried = false; // FSK packet length is the first byte in FIFO, length can only be queried once
+
1094  uint8_t _packetLengthConfig = SX127X_PACKET_VARIABLE;
1095 
-
1096  virtual void errataFix(bool rx) = 0;
-
1097 };
-
1098 
-
1099 #endif
-
1100 
-
1101 #endif
+
1096  bool findChip(uint8_t ver);
+
1097  int16_t setMode(uint8_t mode);
+
1098  int16_t setActiveModem(uint8_t modem);
+
1099  void clearIRQFlags();
+
1100  void clearFIFO(size_t count); // used mostly to clear remaining bytes in FIFO after a packet read
+
1108  static uint8_t calculateBWManExp(float bandwidth);
+
1109 
+
1110  virtual void errataFix(bool rx) = 0;
+
1111 };
+
1112 
+
1113 #endif
+
1114 
+
1115 #endif
PhysicalLayer::transmit
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:10
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:872
-
SX127x::getTempRaw
int8_t getTempRaw()
Reads uncalibrated temperature value. This function will change operating mode and should not be call...
Definition: SX127x.cpp:1112
-
SX127x::variablePacketLengthMode
int16_t variablePacketLengthMode(uint8_t maxLen=SX127X_MAX_PACKET_LENGTH_FSK)
Set modem in variable packet length mode. Available in FSK mode only.
Definition: SX127x.cpp:1008
-
SX127x::invertIQ
int16_t invertIQ(bool invertIQ)
Enables/disables Invert the LoRa I and Q signals.
Definition: SX127x.cpp:1301
+
SX127x::getTempRaw
int8_t getTempRaw()
Reads uncalibrated temperature value. This function will change operating mode and should not be call...
Definition: SX127x.cpp:1120
+
SX127x::variablePacketLengthMode
int16_t variablePacketLengthMode(uint8_t maxLen=SX127X_MAX_PACKET_LENGTH_FSK)
Set modem in variable packet length mode. Available in FSK mode only.
Definition: SX127x.cpp:1016
+
SX127x::invertIQ
int16_t invertIQ(bool invertIQ)
Enables/disables Invert the LoRa I and Q signals.
Definition: SX127x.cpp:1309
SX127x::setAFCAGCTrigger
int16_t setAFCAGCTrigger(uint8_t trigger)
Controls trigger of AFC and AGC.
Definition: SX127x.cpp:838
-
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:1035
+
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:1043
SX127x::setDio1Action
void setDio1Action(void(*func)(void))
Set interrupt service routine function to call when DIO1 activates.
Definition: SX127x.cpp:415
-
SX127x::readBit
void readBit(RADIOLIB_PIN_TYPE pin)
Function to read and process data bit in direct reception mode.
Definition: SX127x.cpp:1325
-
SX127x::setDirectAction
void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: SX127x.cpp:1321
+
SX127x::readBit
void readBit(RADIOLIB_PIN_TYPE pin)
Function to read and process data bit in direct reception mode.
Definition: SX127x.cpp:1333
+
SX127x::enableBitSync
int16_t enableBitSync()
Enable Bit synchronizer.
Definition: SX127x.cpp:942
+
SX127x::setDirectAction
void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: SX127x.cpp:1329
SX127x::sleep
int16_t sleep()
Sets the LoRa module to sleep to save power. Module will not be able to transmit or receive any data ...
Definition: SX127x.cpp:269
SX127x::startReceive
int16_t startReceive(uint8_t len=0, uint8_t mode=SX127X_RXCONTINUOUS)
Interrupt-driven receive method. DIO0 will be activated when full valid packet is received.
Definition: SX127x.cpp:360
SX127x::readData
int16_t readData(uint8_t *data, size_t len) override
Reads data that was received after calling startReceive method. This method reads len characters.
Definition: SX127x.cpp:493
+
SX127x::disableBitSync
int16_t disableBitSync()
Disable Bit synchronizer (not allowed in Packet mode).
Definition: SX127x.cpp:946
SX127x::setAFC
int16_t setAFC(bool isEnabled)
Enables or disables FSK automatic frequency correction(AFC)
Definition: SX127x.cpp:828
SX127x::clearDio1Action
void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: SX127x.cpp:422
SX127x::setSyncWord
int16_t setSyncWord(uint8_t syncWord)
Sets LoRa sync word. Only available in LoRa mode.
Definition: SX127x.cpp:575
@@ -823,16 +829,16 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
SX127x::startChannelScan
int16_t startChannelScan()
Interrupt-driven channel activity detection method. DIO0 will be activated when LoRa preamble is dete...
Definition: SX127x.cpp:550
SX127x::getDataRate
float getDataRate() const
Get data rate of the latest transmitted packet.
Definition: SX127x.cpp:721
SX127x::transmit
int16_t transmit(uint8_t *data, size_t len, uint8_t addr=0) override
Binary transmit method. Will transmit arbitrary binary data up to 255 bytes long using LoRa or up to ...
Definition: SX127x.cpp:137
-
SX127x::fixedPacketLengthMode
int16_t fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)
Set modem in fixed packet length mode. Available in FSK mode only.
Definition: SX127x.cpp:1004
+
SX127x::fixedPacketLengthMode
int16_t fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)
Set modem in fixed packet length mode. Available in FSK mode only.
Definition: SX127x.cpp:1012
SX127x::setOokFixedOrFloorThreshold
int16_t setOokFixedOrFloorThreshold(uint8_t value)
Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Pe...
Definition: SX127x.cpp:926
-
SX127x::setRfSwitchPins
void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)
Some modules contain external RF switch controlled by two pins. This function gives RadioLib control ...
Definition: SX127x.cpp:1079
+
SX127x::setRfSwitchPins
void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)
Some modules contain external RF switch controlled by two pins. This function gives RadioLib control ...
Definition: SX127x.cpp:1087
SX127x::disableAddressFiltering
int16_t disableAddressFiltering()
Disables FSK address filtering.
Definition: SX127x.cpp:900
SX127x::transmitDirect
int16_t transmitDirect(uint32_t frf=0) override
Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). While in direct mode,...
Definition: SX127x.cpp:285
SX127x::startTransmit
int16_t startTransmit(uint8_t *data, size_t len, uint8_t addr=0) override
Interrupt-driven binary transmit method. Will start transmitting arbitrary binary data up to 255 byte...
Definition: SX127x.cpp:429
SX127x::setBroadcastAddress
int16_t setBroadcastAddress(uint8_t broadAddr)
Sets FSK broadcast address. Calling this method will enable address filtering. Only available in FSK ...
Definition: SX127x.cpp:886
SX127x::getAFCError
float getAFCError()
Gets current AFC error.
Definition: SX127x.cpp:694
-
SX127x::getModemStatus
uint8_t getModemStatus()
Reads modem status. Only available in LoRa mode.
Definition: SX127x.cpp:1069
-
SX127x::randomByte
uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: SX127x.cpp:1083
+
SX127x::getModemStatus
uint8_t getModemStatus()
Reads modem status. Only available in LoRa mode.
Definition: SX127x.cpp:1077
+
SX127x::randomByte
uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: SX127x.cpp:1091
SX127x::standby
int16_t standby() override
Sets the LoRa module to standby.
Definition: SX127x.cpp:277
SX127x
Base class for SX127x series. All derived classes for SX127x (e.g. SX1278 or SX1272) inherit from thi...
Definition: SX127x.h:547
SX127x::getSNR
float getSNR()
Gets signal-to-noise ratio of the latest received packet.
Definition: SX127x.cpp:710
@@ -843,18 +849,18 @@ $(document).ready(function(){initNavTree('_s_x127x_8h_source.html',''); initResi
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
PhysicalLayer::receive
int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:100
SX127x::clearDio0Action
void clearDio0Action()
Clears interrupt service routine to call when DIO0 activates.
Definition: SX127x.cpp:411
-
SX127x::getIRQFlags
uint16_t getIRQFlags()
Reads currently active IRQ flags, can be used to check which event caused an interrupt....
Definition: SX127x.cpp:1054
+
SX127x::getIRQFlags
uint16_t getIRQFlags()
Reads currently active IRQ flags, can be used to check which event caused an interrupt....
Definition: SX127x.cpp:1062
SX127x::setOokPeakThresholdDecrement
int16_t setOokPeakThresholdDecrement(uint8_t value)
Period of decrement of the RSSI threshold in the OOK demodulator.
Definition: SX127x.cpp:934
-
SX127x::setRSSIConfig
int16_t setRSSIConfig(uint8_t smoothingSamples, int8_t offset=0)
Sets RSSI measurement configuration in FSK mode.
Definition: SX127x.cpp:1012
+
SX127x::setRSSIConfig
int16_t setRSSIConfig(uint8_t smoothingSamples, int8_t offset=0)
Sets RSSI measurement configuration in FSK mode.
Definition: SX127x.cpp:1020
SX127x::setOokThresholdType
int16_t setOokThresholdType(uint8_t type)
Selects the type of threshold in the OOK data slicer.
Definition: SX127x.cpp:918
SX127x::setAFCBandwidth
int16_t setAFCBandwidth(float afcBw)
Sets FSK automatic frequency correction bandwidth. Allowed values range from 2.6 to 250 kHz....
Definition: SX127x.cpp:812
-
SX127x::setOOK
int16_t setOOK(bool enableOOK)
Enables/disables OOK modulation instead of FSK.
Definition: SX127x.cpp:942
+
SX127x::setOOK
int16_t setOOK(bool enableOOK)
Enables/disables OOK modulation instead of FSK.
Definition: SX127x.cpp:950
SX127x::setRxBandwidth
int16_t setRxBandwidth(float rxBw)
Sets FSK receiver bandwidth. Allowed values range from 2.6 to 250 kHz. Only available in FSK mode.
Definition: SX127x.cpp:796
Module
Implements all common low-level SPI/UART methods to control the wireless module. Every module class c...
Definition: Module.h:17
SX127x::scanChannel
int16_t scanChannel()
Performs scan for valid LoRa preamble in the current channel.
Definition: SX127x.cpp:249
SX127x::receive
int16_t receive(uint8_t *data, size_t len) override
Binary receive method. Will attempt to receive arbitrary binary data up to 255 bytes long using LoRa ...
Definition: SX127x.cpp:204
-
SX127x::getChipVersion
int16_t getChipVersion()
Read version SPI register. Should return SX1278_CHIP_VERSION (0x12) or SX1272_CHIP_VERSION (0x22) if ...
Definition: SX127x.cpp:1108
-
SX127x::getPacketLength
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: SX127x.cpp:976
+
SX127x::getChipVersion
int16_t getChipVersion()
Read version SPI register. Should return SX1278_CHIP_VERSION (0x12) or SX1272_CHIP_VERSION (0x22) if ...
Definition: SX127x.cpp:1116
+
SX127x::getPacketLength
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: SX127x.cpp:984
SX127x::SX127x
SX127x(Module *mod)
Default constructor. Called internally when creating new LoRa instance.
Definition: SX127x.cpp:4
SX127x::packetMode
int16_t packetMode()
Disables direct mode and enables packet mode, allowing the module to receive packets....
Definition: SX127x.cpp:351
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:588
diff --git a/class_physical_layer.html b/class_physical_layer.html index 81e183b9..0102f815 100644 --- a/class_physical_layer.html +++ b/class_physical_layer.html @@ -427,7 +427,7 @@ Public Member Functions

Get one truly random byte from RSSI noise. Must be implemented in module class.

Returns
TRNG byte.
-

Implemented in SX127x, SX126x, CC1101, RF69, Si443x, SX128x, and nRF24.

+

Implemented in SX127x, SX126x, RF69, CC1101, Si443x, SX128x, and nRF24.

@@ -483,7 +483,7 @@ Public Member Functions -

Implemented in SX127x, SX126x, CC1101, RF69, Si443x, SX128x, and nRF24.

+

Implemented in SX127x, RF69, SX126x, CC1101, Si443x, SX128x, and nRF24.

@@ -758,7 +758,7 @@ Public Member Functions -

Implemented in SX127x, SX126x, CC1101, RF69, Si443x, SX128x, and nRF24.

+

Implemented in SX127x, RF69, SX126x, CC1101, Si443x, SX128x, and nRF24.

diff --git a/class_r_f69-members.html b/class_r_f69-members.html index b05d85f3..abd390f7 100644 --- a/class_r_f69-members.html +++ b/class_r_f69-members.html @@ -95,8 +95,10 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable() clearDio1Action()RF69 disableAddressFiltering()RF69 disableAES()RF69 - disableSyncWordFiltering()RF69 - enableAES()RF69 + disableContinuousModeBitSync()RF69 + disableSyncWordFiltering()RF69 + enableAES()RF69 + enableContinuousModeBitSync()RF69 enableSyncWordFiltering(uint8_t maxErrBits=0)RF69 fixedPacketLengthMode(uint8_t len=RF69_MAX_PACKET_LENGTH)RF69 getChipVersion()RF69 @@ -138,6 +140,8 @@ $(document).ready(function(){initNavTree('class_r_f69.html',''); initResizable() setLnaTestBoost(bool value)RF69 setNodeAddress(uint8_t nodeAddr)RF69 setOOK(bool enableOOK)RF69 + setOokFixedThreshold(uint8_t value)RF69 + setOokPeakThresholdDecrement(uint8_t value)RF69 setOokThresholdType(uint8_t type)RF69 setOutputPower(int8_t power, bool highPower=false)RF69 setPreambleLength(uint8_t preambleLen)RF69 diff --git a/class_r_f69.html b/class_r_f69.html index 3b475c98..3b1014a0 100644 --- a/class_r_f69.html +++ b/class_r_f69.html @@ -216,6 +216,12 @@ void int16_t setOokThresholdType (uint8_t type)  Selects the type of threshold in the OOK data slicer. More...
  +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 Peak mode is used. More...
+  +int16_t setOokPeakThresholdDecrement (uint8_t value) + Period of decrement of the RSSI threshold in the OOK demodulator. More...
+  int16_t fixedPacketLengthMode (uint8_t len=RF69_MAX_PACKET_LENGTH)  Set modem in fixed packet length mode. More...
  @@ -228,6 +234,12 @@ void int16_t disableSyncWordFiltering ()  Disable preamble and sync word filtering and generation. More...
  +int16_t enableContinuousModeBitSync () + Enable Bit synchronization in continuous mode. More...
+  +int16_t disableContinuousModeBitSync () + Disable Bit synchronization in continuous mode. More...
+  int16_t setCrcFiltering (bool crcOn=true)  Enable CRC filtering and generation. More...
  @@ -475,6 +487,26 @@ void 
Returns
Status Codes
+ + + +

◆ disableContinuousModeBitSync()

+ +
+
+ + + + + + + +
int16_t RF69::disableContinuousModeBitSync ()
+
+ +

Disable Bit synchronization in continuous mode.

+
Returns
Status Codes
+
@@ -515,6 +547,26 @@ void 
Returns
Status Codes
+ + + +

◆ enableContinuousModeBitSync()

+ +
+
+ + + + + + + +
int16_t RF69::enableContinuousModeBitSync ()
+
+ +

Enable Bit synchronization in continuous mode.

+
Returns
Status Codes
+
@@ -1394,6 +1446,60 @@ void 
Returns
Status Codes
+ + + +

◆ setOokFixedThreshold()

+ +
+
+ + + + + + + + +
int16_t RF69::setOokFixedThreshold (uint8_t value)
+
+ +

Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Peak mode is used.

+
Parameters
+ + +
valueFixed threshold value (in dB) in the OOK demodulator. Used when OokThresType = RF69_OOK_THRESH_FIXED.
+
+
+
Returns
Status Codes
+ +
+
+ +

◆ setOokPeakThresholdDecrement()

+ +
+
+ + + + + + + + +
int16_t RF69::setOokPeakThresholdDecrement (uint8_t value)
+
+ +

Period of decrement of the RSSI threshold in the OOK demodulator.

+
Parameters
+ + +
valueUse defines RF69_OOK_PEAK_THRESH_DEC_X_X_CHIP
+
+
+
Returns
Status Codes
+
diff --git a/class_r_f69.js b/class_r_f69.js index d4b0ec01..b57e9a26 100644 --- a/class_r_f69.js +++ b/class_r_f69.js @@ -6,8 +6,10 @@ var class_r_f69 = [ "clearDio1Action", "class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51", null ], [ "disableAddressFiltering", "class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee", null ], [ "disableAES", "class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa", null ], + [ "disableContinuousModeBitSync", "class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad", null ], [ "disableSyncWordFiltering", "class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80", null ], [ "enableAES", "class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69", null ], + [ "enableContinuousModeBitSync", "class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0", null ], [ "enableSyncWordFiltering", "class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417", null ], [ "fixedPacketLengthMode", "class_r_f69.html#a4c9dcbd7e44bc5e46d9f10ae276a0c5f", null ], [ "getChipVersion", "class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638", null ], @@ -40,6 +42,8 @@ var class_r_f69 = [ "setLnaTestBoost", "class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194", null ], [ "setNodeAddress", "class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c", null ], [ "setOOK", "class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a", null ], + [ "setOokFixedThreshold", "class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459", null ], + [ "setOokPeakThresholdDecrement", "class_r_f69.html#a434420f2def6c383608223105469fda1", null ], [ "setOokThresholdType", "class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a", null ], [ "setOutputPower", "class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc", null ], [ "setPreambleLength", "class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9", null ], diff --git a/class_r_f_m95-members.html b/class_r_f_m95-members.html index 179bbe11..985bd310 100644 --- a/class_r_f_m95-members.html +++ b/class_r_f_m95-members.html @@ -98,6 +98,8 @@ $(document).ready(function(){initNavTree('class_r_f_m95.html',''); initResizable clearDio0Action()SX127x clearDio1Action()SX127x disableAddressFiltering()SX127x + disableBitSync()SX127x + enableBitSync()SX127x explicitHeader()SX1278 fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)SX127x forceLDRO(bool enable)SX1278 diff --git a/class_r_f_m95.html b/class_r_f_m95.html index 7770a8a7..b9c1aeef 100644 --- a/class_r_f_m95.html +++ b/class_r_f_m95.html @@ -297,6 +297,12 @@ void int16_t setOokFixedOrFloorThreshold (uint8_t value)  Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Peak mode is used. More...
  +int16_t enableBitSync () + Enable Bit synchronizer. More...
+  +int16_t disableBitSync () + Disable Bit synchronizer (not allowed in Packet mode). More...
+  size_t getPacketLength (bool update=true) override  Query modem for the packet length of received payload. More...
  diff --git a/class_r_f_m96-members.html b/class_r_f_m96-members.html index 8b73e6b4..f3b53db9 100644 --- a/class_r_f_m96-members.html +++ b/class_r_f_m96-members.html @@ -98,6 +98,8 @@ $(document).ready(function(){initNavTree('class_r_f_m96.html',''); initResizable clearDio0Action()SX127x clearDio1Action()SX127x disableAddressFiltering()SX127x + disableBitSync()SX127x + enableBitSync()SX127x explicitHeader()SX1278 fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)SX127x forceLDRO(bool enable)SX1278 diff --git a/class_r_f_m96.html b/class_r_f_m96.html index af1695c9..16af5aae 100644 --- a/class_r_f_m96.html +++ b/class_r_f_m96.html @@ -296,6 +296,12 @@ void int16_t setOokFixedOrFloorThreshold (uint8_t value)  Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Peak mode is used. More...
  +int16_t enableBitSync () + Enable Bit synchronizer. More...
+  +int16_t disableBitSync () + Disable Bit synchronizer (not allowed in Packet mode). More...
+  size_t getPacketLength (bool update=true) override  Query modem for the packet length of received payload. More...
  diff --git a/class_r_f_m97-members.html b/class_r_f_m97-members.html index 6f654d0f..d29c8b8c 100644 --- a/class_r_f_m97-members.html +++ b/class_r_f_m97-members.html @@ -98,6 +98,8 @@ $(document).ready(function(){initNavTree('class_r_f_m97.html',''); initResizable clearDio0Action()SX127x clearDio1Action()SX127x disableAddressFiltering()SX127x + disableBitSync()SX127x + enableBitSync()SX127x explicitHeader()SX1278 fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)SX127x forceLDRO(bool enable)SX1278 diff --git a/class_r_f_m97.html b/class_r_f_m97.html index 99ac6129..c86af571 100644 --- a/class_r_f_m97.html +++ b/class_r_f_m97.html @@ -304,6 +304,12 @@ void int16_t setOokFixedOrFloorThreshold (uint8_t value)  Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Peak mode is used. More...
  +int16_t enableBitSync () + Enable Bit synchronizer. More...
+  +int16_t disableBitSync () + Disable Bit synchronizer (not allowed in Packet mode). More...
+  size_t getPacketLength (bool update=true) override  Query modem for the packet length of received payload. More...
  diff --git a/class_s_x1231-members.html b/class_s_x1231-members.html index 71969a00..79bcd658 100644 --- a/class_s_x1231-members.html +++ b/class_s_x1231-members.html @@ -95,8 +95,10 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable clearDio1Action()RF69 disableAddressFiltering()RF69 disableAES()RF69 - disableSyncWordFiltering()RF69 - enableAES()RF69 + disableContinuousModeBitSync()RF69 + disableSyncWordFiltering()RF69 + enableAES()RF69 + enableContinuousModeBitSync()RF69 enableSyncWordFiltering(uint8_t maxErrBits=0)RF69 fixedPacketLengthMode(uint8_t len=RF69_MAX_PACKET_LENGTH)RF69 getChipVersion()RF69 @@ -138,6 +140,8 @@ $(document).ready(function(){initNavTree('class_s_x1231.html',''); initResizable setLnaTestBoost(bool value)RF69 setNodeAddress(uint8_t nodeAddr)RF69 setOOK(bool enableOOK)RF69 + setOokFixedThreshold(uint8_t value)RF69 + setOokPeakThresholdDecrement(uint8_t value)RF69 setOokThresholdType(uint8_t type)RF69 setOutputPower(int8_t power, bool highPower=false)RF69 setPreambleLength(uint8_t preambleLen)RF69 diff --git a/class_s_x1231.html b/class_s_x1231.html index b1c34bbe..a83b3570 100644 --- a/class_s_x1231.html +++ b/class_s_x1231.html @@ -223,6 +223,12 @@ void int16_t setOokThresholdType (uint8_t type)  Selects the type of threshold in the OOK data slicer. More...
  +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 Peak mode is used. More...
+  +int16_t setOokPeakThresholdDecrement (uint8_t value) + Period of decrement of the RSSI threshold in the OOK demodulator. More...
+  int16_t fixedPacketLengthMode (uint8_t len=RF69_MAX_PACKET_LENGTH)  Set modem in fixed packet length mode. More...
  @@ -235,6 +241,12 @@ void int16_t disableSyncWordFiltering ()  Disable preamble and sync word filtering and generation. More...
  +int16_t enableContinuousModeBitSync () + Enable Bit synchronization in continuous mode. More...
+  +int16_t disableContinuousModeBitSync () + Disable Bit synchronization in continuous mode. More...
+  int16_t setCrcFiltering (bool crcOn=true)  Enable CRC filtering and generation. More...
  diff --git a/class_s_x1272-members.html b/class_s_x1272-members.html index 22cac97b..d2fc3a6a 100644 --- a/class_s_x1272-members.html +++ b/class_s_x1272-members.html @@ -98,6 +98,8 @@ $(document).ready(function(){initNavTree('class_s_x1272.html',''); initResizable clearDio0Action()SX127x clearDio1Action()SX127x disableAddressFiltering()SX127x + disableBitSync()SX127x + enableBitSync()SX127x explicitHeader()SX1272 fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)SX127x forceLDRO(bool enable)SX1272 diff --git a/class_s_x1272.html b/class_s_x1272.html index 4b6607c8..a5c10a3c 100644 --- a/class_s_x1272.html +++ b/class_s_x1272.html @@ -286,6 +286,12 @@ void int16_t setOokFixedOrFloorThreshold (uint8_t value)  Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Peak mode is used. More...
  +int16_t enableBitSync () + Enable Bit synchronizer. More...
+  +int16_t disableBitSync () + Disable Bit synchronizer (not allowed in Packet mode). More...
+  size_t getPacketLength (bool update=true) override  Query modem for the packet length of received payload. More...
  diff --git a/class_s_x1273-members.html b/class_s_x1273-members.html index 18b5583f..6eda35aa 100644 --- a/class_s_x1273-members.html +++ b/class_s_x1273-members.html @@ -98,6 +98,8 @@ $(document).ready(function(){initNavTree('class_s_x1273.html',''); initResizable clearDio0Action()SX127x clearDio1Action()SX127x disableAddressFiltering()SX127x + disableBitSync()SX127x + enableBitSync()SX127x explicitHeader()SX1272 fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)SX127x forceLDRO(bool enable)SX1272 diff --git a/class_s_x1273.html b/class_s_x1273.html index cb5e2106..9d1cb2e5 100644 --- a/class_s_x1273.html +++ b/class_s_x1273.html @@ -296,6 +296,12 @@ void int16_t setOokFixedOrFloorThreshold (uint8_t value)  Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Peak mode is used. More...
  +int16_t enableBitSync () + Enable Bit synchronizer. More...
+  +int16_t disableBitSync () + Disable Bit synchronizer (not allowed in Packet mode). More...
+  size_t getPacketLength (bool update=true) override  Query modem for the packet length of received payload. More...
  diff --git a/class_s_x1276-members.html b/class_s_x1276-members.html index 29f2bf55..8582327a 100644 --- a/class_s_x1276-members.html +++ b/class_s_x1276-members.html @@ -98,6 +98,8 @@ $(document).ready(function(){initNavTree('class_s_x1276.html',''); initResizable clearDio0Action()SX127x clearDio1Action()SX127x disableAddressFiltering()SX127x + disableBitSync()SX127x + enableBitSync()SX127x explicitHeader()SX1278 fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)SX127x forceLDRO(bool enable)SX1278 diff --git a/class_s_x1276.html b/class_s_x1276.html index 7eb4fcba..4831997d 100644 --- a/class_s_x1276.html +++ b/class_s_x1276.html @@ -299,6 +299,12 @@ void int16_t setOokFixedOrFloorThreshold (uint8_t value)  Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Peak mode is used. More...
  +int16_t enableBitSync () + Enable Bit synchronizer. More...
+  +int16_t disableBitSync () + Disable Bit synchronizer (not allowed in Packet mode). More...
+  size_t getPacketLength (bool update=true) override  Query modem for the packet length of received payload. More...
  diff --git a/class_s_x1277-members.html b/class_s_x1277-members.html index 5d878a88..0b11d93e 100644 --- a/class_s_x1277-members.html +++ b/class_s_x1277-members.html @@ -98,6 +98,8 @@ $(document).ready(function(){initNavTree('class_s_x1277.html',''); initResizable clearDio0Action()SX127x clearDio1Action()SX127x disableAddressFiltering()SX127x + disableBitSync()SX127x + enableBitSync()SX127x explicitHeader()SX1278 fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)SX127x forceLDRO(bool enable)SX1278 diff --git a/class_s_x1277.html b/class_s_x1277.html index 553c34b8..bc39c5e1 100644 --- a/class_s_x1277.html +++ b/class_s_x1277.html @@ -302,6 +302,12 @@ void int16_t setOokFixedOrFloorThreshold (uint8_t value)  Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Peak mode is used. More...
  +int16_t enableBitSync () + Enable Bit synchronizer. More...
+  +int16_t disableBitSync () + Disable Bit synchronizer (not allowed in Packet mode). More...
+  size_t getPacketLength (bool update=true) override  Query modem for the packet length of received payload. More...
  diff --git a/class_s_x1278-members.html b/class_s_x1278-members.html index 0ffbffd2..8d999cc1 100644 --- a/class_s_x1278-members.html +++ b/class_s_x1278-members.html @@ -98,6 +98,8 @@ $(document).ready(function(){initNavTree('class_s_x1278.html',''); initResizable clearDio0Action()SX127x clearDio1Action()SX127x disableAddressFiltering()SX127x + disableBitSync()SX127x + enableBitSync()SX127x explicitHeader()SX1278 fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)SX127x forceLDRO(bool enable)SX1278 diff --git a/class_s_x1278.html b/class_s_x1278.html index cbef8e4c..e064ae96 100644 --- a/class_s_x1278.html +++ b/class_s_x1278.html @@ -291,6 +291,12 @@ void int16_t setOokFixedOrFloorThreshold (uint8_t value)  Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Peak mode is used. More...
  +int16_t enableBitSync () + Enable Bit synchronizer. More...
+  +int16_t disableBitSync () + Disable Bit synchronizer (not allowed in Packet mode). More...
+  size_t getPacketLength (bool update=true) override  Query modem for the packet length of received payload. More...
  diff --git a/class_s_x1279-members.html b/class_s_x1279-members.html index b5957028..99f3f57a 100644 --- a/class_s_x1279-members.html +++ b/class_s_x1279-members.html @@ -98,6 +98,8 @@ $(document).ready(function(){initNavTree('class_s_x1279.html',''); initResizable clearDio0Action()SX127x clearDio1Action()SX127x disableAddressFiltering()SX127x + disableBitSync()SX127x + enableBitSync()SX127x explicitHeader()SX1278 fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)SX127x forceLDRO(bool enable)SX1278 diff --git a/class_s_x1279.html b/class_s_x1279.html index ac101f02..cf2d152d 100644 --- a/class_s_x1279.html +++ b/class_s_x1279.html @@ -299,6 +299,12 @@ void int16_t setOokFixedOrFloorThreshold (uint8_t value)  Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Peak mode is used. More...
  +int16_t enableBitSync () + Enable Bit synchronizer. More...
+  +int16_t disableBitSync () + Disable Bit synchronizer (not allowed in Packet mode). More...
+  size_t getPacketLength (bool update=true) override  Query modem for the packet length of received payload. More...
  diff --git a/class_s_x127x-members.html b/class_s_x127x-members.html index 377f16da..d9153838 100644 --- a/class_s_x127x-members.html +++ b/class_s_x127x-members.html @@ -95,6 +95,8 @@ $(document).ready(function(){initNavTree('class_s_x127x.html',''); initResizable clearDio0Action()SX127x clearDio1Action()SX127x disableAddressFiltering()SX127x + disableBitSync()SX127x + enableBitSync()SX127x fixedPacketLengthMode(uint8_t len=SX127X_MAX_PACKET_LENGTH_FSK)SX127x getAFCError()SX127x getChipVersion()SX127x diff --git a/class_s_x127x.html b/class_s_x127x.html index 3e6bc87e..c08c2bd8 100644 --- a/class_s_x127x.html +++ b/class_s_x127x.html @@ -241,6 +241,12 @@ void int16_t setOokFixedOrFloorThreshold (uint8_t value)  Fixed threshold for the Data Slicer in OOK mode or floor threshold for the Data Slicer in OOK when Peak mode is used. More...
  +int16_t enableBitSync () + Enable Bit synchronizer. More...
+  +int16_t disableBitSync () + Disable Bit synchronizer (not allowed in Packet mode). More...
+  size_t getPacketLength (bool update=true) override  Query modem for the packet length of received payload. More...
  @@ -525,6 +531,46 @@ void 
Returns
Status Codes
+ + + +

◆ disableBitSync()

+ +
+
+ + + + + + + +
int16_t SX127x::disableBitSync ()
+
+ +

Disable Bit synchronizer (not allowed in Packet mode).

+
Returns
Status Codes
+ +
+
+ +

◆ enableBitSync()

+ +
+
+ + + + + + + +
int16_t SX127x::enableBitSync ()
+
+ +

Enable Bit synchronizer.

+
Returns
Status Codes
+
@@ -1511,7 +1557,7 @@ void 
Parameters
- +
valueThe actual value used by teh data slicer is (128 - value/2).
valueThe actual value is devided by 2 because (0.5db step). ie: value=12 means 6dB
diff --git a/class_s_x127x.js b/class_s_x127x.js index 00cb1ff0..fa459515 100644 --- a/class_s_x127x.js +++ b/class_s_x127x.js @@ -6,6 +6,8 @@ var class_s_x127x = [ "clearDio0Action", "class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823", null ], [ "clearDio1Action", "class_s_x127x.html#a9b6532a25e1730973ac08146008adca5", null ], [ "disableAddressFiltering", "class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5", null ], + [ "disableBitSync", "class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd", null ], + [ "enableBitSync", "class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa", null ], [ "fixedPacketLengthMode", "class_s_x127x.html#aaf8ce9f09d0f46a76a5e251786b6de7f", null ], [ "getAFCError", "class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544", null ], [ "getChipVersion", "class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd", null ], diff --git a/functions_d.html b/functions_d.html index 617a988c..4cdd933f 100644 --- a/functions_d.html +++ b/functions_d.html @@ -115,6 +115,12 @@ $(document).ready(function(){initNavTree('functions_d.html',''); initResizable()
  • disableAES() : RF69
  • +
  • disableBitSync() +: SX127x +
  • +
  • disableContinuousModeBitSync() +: RF69 +
  • disablePipe() : nRF24
  • diff --git a/functions_e.html b/functions_e.html index bc911e80..db8d2b2f 100644 --- a/functions_e.html +++ b/functions_e.html @@ -88,6 +88,12 @@ $(document).ready(function(){initNavTree('functions_e.html',''); initResizable()
  • enableAES() : RF69
  • +
  • enableBitSync() +: SX127x +
  • +
  • enableContinuousModeBitSync() +: RF69 +
  • enableSyncWordFiltering() : CC1101 , RF69 diff --git a/functions_func_d.html b/functions_func_d.html index 009312d8..0d676eb6 100644 --- a/functions_func_d.html +++ b/functions_func_d.html @@ -109,6 +109,12 @@ $(document).ready(function(){initNavTree('functions_func_d.html',''); initResiza
  • disableAES() : RF69
  • +
  • disableBitSync() +: SX127x +
  • +
  • disableContinuousModeBitSync() +: RF69 +
  • disablePipe() : nRF24
  • diff --git a/functions_func_e.html b/functions_func_e.html index 0567eb01..78530845 100644 --- a/functions_func_e.html +++ b/functions_func_e.html @@ -88,6 +88,12 @@ $(document).ready(function(){initNavTree('functions_func_e.html',''); initResiza
  • enableAES() : RF69
  • +
  • enableBitSync() +: SX127x +
  • +
  • enableContinuousModeBitSync() +: RF69 +
  • enableSyncWordFiltering() : CC1101 , RF69 diff --git a/functions_func_s.html b/functions_func_s.html index 74bd60ee..6434ea22 100644 --- a/functions_func_s.html +++ b/functions_func_s.html @@ -289,8 +289,12 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • setOokFixedOrFloorThreshold() : SX127x
  • +
  • setOokFixedThreshold() +: RF69 +
  • setOokPeakThresholdDecrement() -: SX127x +: RF69 +, SX127x
  • setOokThresholdType() : RF69 @@ -327,7 +331,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza , RF69
  • setReceivePipe() -: nRF24 +: nRF24
  • setRecvSequence() : AX25Frame @@ -380,7 +384,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : SX126x
  • setSyncWord() -: CC1101 +: CC1101 , RF69 , Si443x , SX126x @@ -448,7 +452,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza , RF69 , RTTYClient , Si443x -, SX126x +, SX126x , SX127x , SX128x
  • @@ -483,7 +487,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • startTransmit() : CC1101 , nRF24 -, PhysicalLayer +, PhysicalLayer , RF69 , Si443x , SX126x diff --git a/functions_s.html b/functions_s.html index 3ed3bace..2fe27caa 100644 --- a/functions_s.html +++ b/functions_s.html @@ -295,8 +295,12 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • setOokFixedOrFloorThreshold() : SX127x
  • +
  • setOokFixedThreshold() +: RF69 +
  • setOokPeakThresholdDecrement() -: SX127x +: RF69 +, SX127x
  • setOokThresholdType() : RF69 @@ -333,7 +337,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() , RF69
  • setReceivePipe() -: nRF24 +: nRF24
  • setRecvSequence() : AX25Frame @@ -386,7 +390,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : SX126x
  • setSyncWord() -: CC1101 +: CC1101 , RF69 , Si443x , SX126x @@ -457,7 +461,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : AX25Frame
  • SSTVClient() -: SSTVClient +: SSTVClient
  • standby() : CC1101 @@ -466,9 +470,9 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() , RF69 , RTTYClient , Si443x -, SX126x +, SX126x , SX127x -, SX128x +, SX128x
  • startChannelScan() : SX126x @@ -501,7 +505,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • startTransmit() : CC1101 , nRF24 -, PhysicalLayer +, PhysicalLayer , RF69 , Si443x , SX126x diff --git a/navtreedata.js b/navtreedata.js index 53701cc3..749281d6 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -46,9 +46,9 @@ var NAVTREEINDEX = [ "_a_f_s_k_8h_source.html", "class_m_q_t_t_client.html#ab59a1174098dfdf514d8ec6d0bd9d015", -"class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf", -"class_si4430.html", -"group__status__codes.html#ga8a1f83c8c9abed26b497c9eb69f1a521" +"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08", +"class_s_x128x.html#af81565ee82ef9a7de9c5663c745f4ef7", +"group__status__codes.html#ga6581323ae6a4f0bfe38e5a087c5a6f36" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex1.js b/navtreeindex1.js index 6cbce604..fa997c9d 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -102,66 +102,70 @@ var NAVTREEINDEX1 = "class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,17,27], "class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,17,11], "class_r_f69.html":[3,0,18], -"class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853":[3,0,18,13], -"class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847":[3,0,18,57], -"class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638":[3,0,18,10], -"class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa":[3,0,18,16], +"class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853":[3,0,18,15], +"class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847":[3,0,18,61], +"class_r_f69.html#a0c30202b2d52eb32f43066bc0f938638":[3,0,18,12], +"class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa":[3,0,18,18], "class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa":[3,0,18,5], -"class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8":[3,0,18,28], -"class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69":[3,0,18,7], -"class_r_f69.html#a2023f0f22aad00a702bdf598c2154043":[3,0,18,15], -"class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1":[3,0,18,48], -"class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a":[3,0,18,40], -"class_r_f69.html#a222682569338abb49d6952430b6eebdd":[3,0,18,59], -"class_r_f69.html#a26667d50ec845c28e17236c69c886561":[3,0,18,46], -"class_r_f69.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,18,22], -"class_r_f69.html#a3983b66c83818b4082805bcafc712f00":[3,0,18,18], -"class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80":[3,0,18,6], -"class_r_f69.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,18,53], -"class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a":[3,0,18,30], -"class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb":[3,0,18,47], -"class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,18,55], -"class_r_f69.html#a4c9dcbd7e44bc5e46d9f10ae276a0c5f":[3,0,18,9], +"class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8":[3,0,18,30], +"class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69":[3,0,18,8], +"class_r_f69.html#a2023f0f22aad00a702bdf598c2154043":[3,0,18,17], +"class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1":[3,0,18,52], +"class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a":[3,0,18,44], +"class_r_f69.html#a222682569338abb49d6952430b6eebdd":[3,0,18,63], +"class_r_f69.html#a26667d50ec845c28e17236c69c886561":[3,0,18,50], +"class_r_f69.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,18,24], +"class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459":[3,0,18,42], +"class_r_f69.html#a3983b66c83818b4082805bcafc712f00":[3,0,18,20], +"class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80":[3,0,18,7], +"class_r_f69.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,18,57], +"class_r_f69.html#a42b99e437454e92c6932c3b7acc1fc4a":[3,0,18,32], +"class_r_f69.html#a434420f2def6c383608223105469fda1":[3,0,18,43], +"class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb":[3,0,18,51], +"class_r_f69.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,18,59], +"class_r_f69.html#a4c9dcbd7e44bc5e46d9f10ae276a0c5f":[3,0,18,11], "class_r_f69.html#a4d0dea965aba1017a660c9478ec57560":[3,0,18,1], "class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee":[3,0,18,4], -"class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417":[3,0,18,8], -"class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f":[3,0,18,14], -"class_r_f69.html#a6d90ad1d455de045c53c5758babd876c":[3,0,18,43], -"class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a":[3,0,18,45], -"class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9":[3,0,18,42], -"class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28":[3,0,18,33], -"class_r_f69.html#a855dc194947b095b821ec1524ba6814c":[3,0,18,52], -"class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1":[3,0,18,11], -"class_r_f69.html#a923654706eff5118ef6e84214e837f27":[3,0,18,50], +"class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417":[3,0,18,10], +"class_r_f69.html#a6a67dd698b3cc6afcaf18c3710ad5f0f":[3,0,18,16], +"class_r_f69.html#a6d90ad1d455de045c53c5758babd876c":[3,0,18,47], +"class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a":[3,0,18,49], +"class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9":[3,0,18,46], +"class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0":[3,0,18,9], +"class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28":[3,0,18,35], +"class_r_f69.html#a855dc194947b095b821ec1524ba6814c":[3,0,18,56], +"class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1":[3,0,18,13], +"class_r_f69.html#a923654706eff5118ef6e84214e837f27":[3,0,18,54], "class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942":[3,0,18,2], -"class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc":[3,0,18,41], -"class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a":[3,0,18,39], -"class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77":[3,0,18,31], -"class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194":[3,0,18,37], -"class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf":[3,0,18,32], -"class_r_f69.html#aada7c48828b950cdfd260594d502b03d":[3,0,18,44], -"class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2":[3,0,18,34], -"class_r_f69.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,18,54], -"class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b":[3,0,18,35], -"class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c":[3,0,18,38], -"class_r_f69.html#abd556b0f455f9510213b17588a4baf1b":[3,0,18,23], -"class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3":[3,0,18,25], -"class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e":[3,0,18,29], -"class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703":[3,0,18,26], -"class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7":[3,0,18,12], -"class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13":[3,0,18,27], -"class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be":[3,0,18,36], +"class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad":[3,0,18,6], +"class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc":[3,0,18,45], +"class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a":[3,0,18,41], +"class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77":[3,0,18,33], +"class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194":[3,0,18,39], +"class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf":[3,0,18,34], +"class_r_f69.html#aada7c48828b950cdfd260594d502b03d":[3,0,18,48], +"class_r_f69.html#aae828ce8dda16da4e54d2f18b1fb8af2":[3,0,18,36], +"class_r_f69.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,18,58], +"class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b":[3,0,18,37], +"class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c":[3,0,18,40], +"class_r_f69.html#abd556b0f455f9510213b17588a4baf1b":[3,0,18,25], +"class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3":[3,0,18,27], +"class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e":[3,0,18,31], +"class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703":[3,0,18,28], +"class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7":[3,0,18,14], +"class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13":[3,0,18,29], +"class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be":[3,0,18,38], "class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51":[3,0,18,3], -"class_r_f69.html#ae36e8e6042245621a182b29526fe2245":[3,0,18,21], -"class_r_f69.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,18,19], -"class_r_f69.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,18,17], -"class_r_f69.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,18,56], -"class_r_f69.html#af068e6e862c99e39d0261a7971dd56db":[3,0,18,51], -"class_r_f69.html#af62ebde1ea34a394b9781a21ae348c39":[3,0,18,60], -"class_r_f69.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,18,58], -"class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a":[3,0,18,24], -"class_r_f69.html#afae38fa64242043de34096bf497725f1":[3,0,18,49], -"class_r_f69.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,18,20], +"class_r_f69.html#ae36e8e6042245621a182b29526fe2245":[3,0,18,23], +"class_r_f69.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,18,21], +"class_r_f69.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,18,19], +"class_r_f69.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,18,60], +"class_r_f69.html#af068e6e862c99e39d0261a7971dd56db":[3,0,18,55], +"class_r_f69.html#af62ebde1ea34a394b9781a21ae348c39":[3,0,18,64], +"class_r_f69.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,18,62], +"class_r_f69.html#af953ee17aca5392f1e62ea4fe690550a":[3,0,18,26], +"class_r_f69.html#afae38fa64242043de34096bf497725f1":[3,0,18,53], +"class_r_f69.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,18,22], "class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448":[3,0,18,0], "class_r_f_m22.html":[3,0,19], "class_r_f_m23.html":[3,0,20], @@ -245,9 +249,5 @@ var NAVTREEINDEX1 = "class_s_x126x.html#a288257242e483cb3eb6944333179dd26":[3,0,37,45], "class_s_x126x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,37,25], "class_s_x126x.html#a2b3eb51117558c58384b03de4b7bfe60":[3,0,37,39], -"class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c":[3,0,37,3], -"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08":[3,0,37,29], -"class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2":[3,0,37,21], -"class_s_x126x.html#a3765f534418d4e0540c179621c019138":[3,0,37,6], -"class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92":[3,0,37,56] +"class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c":[3,0,37,3] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index d0d4c3fe..bd0dbd6e 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,5 +1,9 @@ var NAVTREEINDEX2 = { +"class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08":[3,0,37,29], +"class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2":[3,0,37,21], +"class_s_x126x.html#a3765f534418d4e0540c179621c019138":[3,0,37,6], +"class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92":[3,0,37,56], "class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf":[3,0,37,49], "class_s_x126x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,37,63], "class_s_x126x.html#a420c23bb1861646e29f44c0f4c646ee8":[3,0,37,8], @@ -117,72 +121,74 @@ var NAVTREEINDEX2 = "class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a":[3,0,43,0], "class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817":[3,0,43,3], "class_s_x127x.html":[3,0,44], -"class_s_x127x.html#a071442611a32154e8b3db7981f242a53":[3,0,44,19], -"class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1":[3,0,44,17], -"class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538":[3,0,44,42], -"class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059":[3,0,44,53], -"class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04":[3,0,44,16], -"class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee":[3,0,44,41], -"class_s_x127x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,44,25], -"class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53":[3,0,44,48], -"class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc":[3,0,44,12], -"class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68":[3,0,44,27], -"class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002":[3,0,44,34], -"class_s_x127x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,44,58], -"class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e":[3,0,44,29], -"class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df":[3,0,44,51], -"class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679":[3,0,44,39], -"class_s_x127x.html#a462fa74275e67c296328a01f361892d5":[3,0,44,13], -"class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,44,60], -"class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544":[3,0,44,7], +"class_s_x127x.html#a071442611a32154e8b3db7981f242a53":[3,0,44,21], +"class_s_x127x.html#a0995088d37689a3c240a1af791df6cf1":[3,0,44,19], +"class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538":[3,0,44,44], +"class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa":[3,0,44,7], +"class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059":[3,0,44,55], +"class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04":[3,0,44,18], +"class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee":[3,0,44,43], +"class_s_x127x.html#a2ad4c6a8ac267f8ac590260414ffcda3":[3,0,44,27], +"class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53":[3,0,44,50], +"class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc":[3,0,44,14], +"class_s_x127x.html#a3321ac4a7f65e73004202486db9b1d68":[3,0,44,29], +"class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002":[3,0,44,36], +"class_s_x127x.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,44,60], +"class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e":[3,0,44,31], +"class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df":[3,0,44,53], +"class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679":[3,0,44,41], +"class_s_x127x.html#a462fa74275e67c296328a01f361892d5":[3,0,44,15], +"class_s_x127x.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,44,62], +"class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544":[3,0,44,9], "class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430":[3,0,44,1], -"class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022":[3,0,44,32], -"class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef":[3,0,44,31], -"class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450":[3,0,44,18], +"class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022":[3,0,44,34], +"class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef":[3,0,44,33], +"class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450":[3,0,44,20], "class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823":[3,0,44,3], -"class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41":[3,0,44,52], -"class_s_x127x.html#a8b93142202167270db109d18b743c744":[3,0,44,44], -"class_s_x127x.html#a923654706eff5118ef6e84214e837f27":[3,0,44,55], -"class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1":[3,0,44,15], +"class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41":[3,0,44,54], +"class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd":[3,0,44,6], +"class_s_x127x.html#a8b93142202167270db109d18b743c744":[3,0,44,46], +"class_s_x127x.html#a923654706eff5118ef6e84214e837f27":[3,0,44,57], +"class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1":[3,0,44,17], "class_s_x127x.html#a9b6532a25e1730973ac08146008adca5":[3,0,44,4], -"class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc":[3,0,44,49], -"class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29":[3,0,44,62], -"class_s_x127x.html#a9f753c0857e7b8b4b9f7f6e91c77f0fd":[3,0,44,65], -"class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238":[3,0,44,37], -"class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f":[3,0,44,26], -"class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d":[3,0,44,43], -"class_s_x127x.html#aaf8ce9f09d0f46a76a5e251786b6de7f":[3,0,44,6], -"class_s_x127x.html#ab0f67330124cefc07a462e77922453d0":[3,0,44,30], -"class_s_x127x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,44,59], -"class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed":[3,0,44,45], -"class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95":[3,0,44,40], -"class_s_x127x.html#abad2d455012bd28d304589c8164390eb":[3,0,44,38], -"class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb":[3,0,44,14], -"class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40":[3,0,44,33], -"class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745":[3,0,44,21], -"class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde":[3,0,44,50], -"class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d":[3,0,44,11], +"class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc":[3,0,44,51], +"class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29":[3,0,44,64], +"class_s_x127x.html#a9f753c0857e7b8b4b9f7f6e91c77f0fd":[3,0,44,67], +"class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238":[3,0,44,39], +"class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f":[3,0,44,28], +"class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d":[3,0,44,45], +"class_s_x127x.html#aaf8ce9f09d0f46a76a5e251786b6de7f":[3,0,44,8], +"class_s_x127x.html#ab0f67330124cefc07a462e77922453d0":[3,0,44,32], +"class_s_x127x.html#ab139a34e03a6fd5a781cd54da21d308f":[3,0,44,61], +"class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed":[3,0,44,47], +"class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95":[3,0,44,42], +"class_s_x127x.html#abad2d455012bd28d304589c8164390eb":[3,0,44,40], +"class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb":[3,0,44,16], +"class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40":[3,0,44,35], +"class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745":[3,0,44,23], +"class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde":[3,0,44,52], +"class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d":[3,0,44,13], "class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c":[3,0,44,0], -"class_s_x127x.html#ad3955f85f456edae772a51025a19029b":[3,0,44,47], -"class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5":[3,0,44,28], -"class_s_x127x.html#ada53419d65f207f352124da7747c5960":[3,0,44,35], -"class_s_x127x.html#adc25b685de0859b799488bf7729350b6":[3,0,44,9], -"class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083":[3,0,44,57], +"class_s_x127x.html#ad3955f85f456edae772a51025a19029b":[3,0,44,49], +"class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5":[3,0,44,30], +"class_s_x127x.html#ada53419d65f207f352124da7747c5960":[3,0,44,37], +"class_s_x127x.html#adc25b685de0859b799488bf7729350b6":[3,0,44,11], +"class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083":[3,0,44,59], "class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3":[3,0,44,2], -"class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c":[3,0,44,24], -"class_s_x127x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,44,22], -"class_s_x127x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,44,20], -"class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a":[3,0,44,46], -"class_s_x127x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,44,61], -"class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd":[3,0,44,8], -"class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84":[3,0,44,64], -"class_s_x127x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,44,56], -"class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362":[3,0,44,10], -"class_s_x127x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,44,63], -"class_s_x127x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,44,23], -"class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123":[3,0,44,36], +"class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c":[3,0,44,26], +"class_s_x127x.html#ae8b6c756eb4b92855433ca389d73c632":[3,0,44,24], +"class_s_x127x.html#ae8eed0e888a7c8742e89d2b850977de2":[3,0,44,22], +"class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a":[3,0,44,48], +"class_s_x127x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,44,63], +"class_s_x127x.html#aee5324d7d854e7a2f6768221d4f362cd":[3,0,44,10], +"class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84":[3,0,44,66], +"class_s_x127x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,44,58], +"class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362":[3,0,44,12], +"class_s_x127x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,44,65], +"class_s_x127x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,44,25], +"class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123":[3,0,44,38], "class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5":[3,0,44,5], -"class_s_x127x.html#afe8456d0f9abbce4d743f256f3e1e6c6":[3,0,44,54], +"class_s_x127x.html#afe8456d0f9abbce4d743f256f3e1e6c6":[3,0,44,56], "class_s_x1280.html":[3,0,45], "class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb":[3,0,45,0], "class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c":[3,0,45,2], @@ -243,11 +249,5 @@ var NAVTREEINDEX2 = "class_s_x128x.html#aeb62c5a521aafc1e0525c58e9364482b":[3,0,48,51], "class_s_x128x.html#aef221e7d463c5228ce00ed6934512848":[3,0,48,47], "class_s_x128x.html#af068e6e862c99e39d0261a7971dd56db":[3,0,48,46], -"class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5":[3,0,48,52], -"class_s_x128x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,48,53], -"class_s_x128x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,48,17], -"class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236":[3,0,48,30], -"class_s_x128x.html#aff7d86352c98771595375e17d19a2a97":[3,0,48,20], -"class_serial_module.html":[3,0,26], -"class_serial_module.html#a753631600e2070c57ed74e9eb296ce19":[3,0,26,0] +"class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5":[3,0,48,52] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index 1ad0ba51..899ee593 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,5 +1,11 @@ var NAVTREEINDEX3 = { +"class_s_x128x.html#af81565ee82ef9a7de9c5663c745f4ef7":[3,0,48,53], +"class_s_x128x.html#afb1b090348d9091bfa3a0b5ba3d85b36":[3,0,48,17], +"class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236":[3,0,48,30], +"class_s_x128x.html#aff7d86352c98771595375e17d19a2a97":[3,0,48,20], +"class_serial_module.html":[3,0,26], +"class_serial_module.html#a753631600e2070c57ed74e9eb296ce19":[3,0,26,0], "class_si4430.html":[3,0,27], "class_si4430.html#a025a31861d1511090168e416140d0343":[3,0,27,2], "class_si4430.html#a8e17e67d0d3dd9b478be964be8647ca7":[3,0,27,1], @@ -152,15 +158,15 @@ var NAVTREEINDEX3 = "dir_ed12d23d857ca7061030f8751e72e77c.html":[4,0,0,0,13], "dir_f980efad9544c0545d0fa50a84ff12f2.html":[4,0,0,0,12], "files.html":[4,0], -"functions.html":[3,3,0,0], "functions.html":[3,3,0], +"functions.html":[3,3,0,0], "functions_b.html":[3,3,0,1], "functions_c.html":[3,3,0,2], "functions_d.html":[3,3,0,3], "functions_e.html":[3,3,0,4], "functions_f.html":[3,3,0,5], -"functions_func.html":[3,3,1,0], "functions_func.html":[3,3,1], +"functions_func.html":[3,3,1,0], "functions_func_b.html":[3,3,1,1], "functions_func_c.html":[3,3,1,2], "functions_func_d.html":[3,3,1,3], @@ -243,11 +249,5 @@ var NAVTREEINDEX3 = "group__status__codes.html#ga5a373a7e054a6c8e7a5198e23439157d":[2,4,52], "group__status__codes.html#ga5bbfeb0ed4631a9a1f37b62d13818340":[2,4,69], "group__status__codes.html#ga5f16976086bbc9bf66c77719ccf0f277":[2,4,31], -"group__status__codes.html#ga60d04c865fd58d86758894edca38bf30":[2,4,64], -"group__status__codes.html#ga6581323ae6a4f0bfe38e5a087c5a6f36":[2,4,0], -"group__status__codes.html#ga66ac4a39ab53bd83f36ba49ea2a88e2c":[2,4,3], -"group__status__codes.html#ga67d0525915e7e4dc6f5d13199d5e37ae":[2,4,28], -"group__status__codes.html#ga764f561222124ffd6620356e21cf7afd":[2,4,65], -"group__status__codes.html#ga819f4587f681d62d96babf3f51a0268e":[2,4,32], -"group__status__codes.html#ga81f8c801d5a34b8000dd127002092299":[2,4,5] +"group__status__codes.html#ga60d04c865fd58d86758894edca38bf30":[2,4,64] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index be2e3789..1b231831 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,5 +1,11 @@ var NAVTREEINDEX4 = { +"group__status__codes.html#ga6581323ae6a4f0bfe38e5a087c5a6f36":[2,4,0], +"group__status__codes.html#ga66ac4a39ab53bd83f36ba49ea2a88e2c":[2,4,3], +"group__status__codes.html#ga67d0525915e7e4dc6f5d13199d5e37ae":[2,4,28], +"group__status__codes.html#ga764f561222124ffd6620356e21cf7afd":[2,4,65], +"group__status__codes.html#ga819f4587f681d62d96babf3f51a0268e":[2,4,32], +"group__status__codes.html#ga81f8c801d5a34b8000dd127002092299":[2,4,5], "group__status__codes.html#ga8a1f83c8c9abed26b497c9eb69f1a521":[2,4,24], "group__status__codes.html#ga8a4168b6953ca4e289d2bda1d4c422e7":[2,4,25], "group__status__codes.html#ga8c65c39a6addd77e64c36ae1aff64c95":[2,4,4], @@ -51,8 +57,8 @@ var NAVTREEINDEX4 = "group__uart__config.html#gad418f0922126e27279d1a374fc63e036":[2,1,8], "group__uart__config.html#gae077d53c5c120a989b1f285f183f1b78":[2,1,3], "hierarchy.html":[3,2], -"index.html":[0], "index.html":[], +"index.html":[0], "modules.html":[2], "n_r_f24_8h_source.html":[4,0,0,0,5,0], "pages.html":[], diff --git a/search/all_10.js b/search/all_10.js index f4a86ad8..72aba0f8 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -1,115 +1,116 @@ var searchData= [ - ['scanchannel_237',['scanChannel',['../class_s_x126x.html#ae9f24414bd684434c310df54b3558f21',1,'SX126x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]], - ['scanpixellen_238',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], - ['send_239',['send',['../class_e_s_p8266.html#a1caaa537edd52d1c2b7a0a25ef69c1c9',1,'ESP8266::send(const char *data) override'],['../class_e_s_p8266.html#a2f34474953b7dbe4d057c8e3f65e0dc4',1,'ESP8266::send(uint8_t *data, size_t len) override'],['../class_transport_layer.html#a1d9cb76640868aa0338b52808e4f022d',1,'TransportLayer::send(const char *data)=0'],['../class_transport_layer.html#afb001c6348bc19694090532cc5f00e52',1,'TransportLayer::send(uint8_t *data, size_t len)=0']]], - ['sendframe_240',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client']]], - ['sendheader_241',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], - ['sendline_242',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]], - ['sendseqnumber_243',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], - ['serialmodule_244',['SerialModule',['../class_serial_module.html',1,'SerialModule'],['../class_serial_module.html#a753631600e2070c57ed74e9eb296ce19',1,'SerialModule::SerialModule()']]], - ['setaccessaddress_245',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], - ['setaddresswidth_246',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], - ['setaeskey_247',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], - ['setafc_248',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], - ['setafcagctrigger_249',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], - ['setafcbandwidth_250',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], - ['setambienttemperature_251',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], - ['setautoack_252',['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_253',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()']]], - ['setbitrate_254',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x128x.html#a3bee00ec197ef9855c0079cb0a3009a6',1,'SX128x::setBitRate()']]], - ['setbroadcastaddress_255',['setBroadcastAddress',['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()']]], - ['setcodingrate_256',['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_257',['setCorrection',['../class_a_x25_client.html#aa6a10784d59428a4d5c13067ba6af69c',1,'AX25Client']]], - ['setcrc_258',['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_259',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()']]], - ['setcurrentlimit_260',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], - ['setdatarate_261',['setDataRate',['../classn_r_f24.html#a1f3ec2196733a2e2476f50690967f285',1,'nRF24']]], - ['setdatashaping_262',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::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_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd',1,'PhysicalLayer::setDataShaping()']]], - ['setdatashapingook_263',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], - ['setdestinationaddress_264',['setDestinationAddress',['../class_x_bee_serial.html#ae485a8ebeaf574ffe0c2c56a61583f13',1,'XBeeSerial']]], - ['setdio0action_265',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ada53419d65f207f352124da7747c5960',1,'SX127x::setDio0Action()']]], - ['setdio1action_266',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], - ['setdio2asrfswitch_267',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdirectaction_268',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086',1,'PhysicalLayer::setDirectAction()']]], - ['setdirectsyncword_269',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], - ['setencoding_270',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::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_physical_layer.html#a7d3419227d201d6912b77784636d437d',1,'PhysicalLayer::setEncoding()']]], - ['setfrequency_271',['setFrequency',['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../classn_r_f24.html#abec5f9dba44a019e23c8bf516f104fad',1,'nRF24::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_s_x1262.html#a7e72da22fa1fc2d87186107a3285e846',1,'SX1262::setFrequency()'],['../class_s_x1268.html#a6ad998275281de5c6f24f8a64db88052',1,'SX1268::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()']]], - ['setfrequencydeviation_272',['setFrequencyDeviation',['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b',1,'PhysicalLayer::setFrequencyDeviation()']]], - ['setgain_273',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], - ['setgdo0action_274',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]], - ['setgdo2action_275',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]], - ['setirqaction_276',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], - ['setlnatestboost_277',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], - ['setnodeaddress_278',['setNodeAddress',['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752',1,'SX126x::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()']]], - ['setook_279',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()']]], - ['setookfixedorfloorthreshold_280',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], - ['setookpeakthresholddecrement_281',['setOokPeakThresholdDecrement',['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x']]], - ['setookthresholdtype_282',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], - ['setoutputpower_283',['setOutputPower',['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()']]], - ['setpanid_284',['setPanId',['../class_x_bee_serial.html#ad429a47dc445765d2dec7ff64b922306',1,'XBeeSerial::setPanId()'],['../class_x_bee.html#a88745c61a1dc2d1139c34d6cc385d35b',1,'XBee::setPanId()']]], - ['setpreamblelength_285',['setPreambleLength',['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',1,'CC1101::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()']]], - ['setpromiscuousmode_286',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]], - ['setreceivepipe_287',['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_288',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], - ['setregulatordcdc_289',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]], - ['setregulatorldo_290',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]], - ['setrepeaters_291',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], - ['setrfswitchpins_292',['setRfSwitchPins',['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()']]], - ['setrfswitchstate_293',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]], - ['setrssiconfig_294',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], - ['setrxbandwidth_295',['setRxBandwidth',['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()']]], - ['setsendsequence_296',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], - ['setspreadingfactor_297',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::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_298',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]], - ['setsyncword_299',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]], - ['settcxo_300',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]], - ['settransmitpipe_301',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], - ['setwhitening_302',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], - ['shield_20configuration_303',['Shield Configuration',['../group__shield__config.html',1,'']]], - ['si4430_304',['Si4430',['../class_si4430.html',1,'Si4430'],['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()']]], - ['si4431_305',['Si4431',['../class_si4431.html',1,'Si4431'],['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()']]], - ['si4432_306',['Si4432',['../class_si4432.html',1,'Si4432'],['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()']]], - ['si443x_307',['Si443x',['../class_si443x.html',1,'Si443x'],['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()']]], - ['sleep_308',['sleep',['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb',1,'RF69::sleep()'],['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep()'],['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()']]], - ['spigetregvalue_309',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]], - ['spireadcommand_310',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]], - ['spireadregister_311',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]], - ['spireadregisterburst_312',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]], - ['spisetregvalue_313',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]], - ['spitransfer_314',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]], - ['spiwritecommand_315',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]], - ['spiwriteregister_316',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]], - ['spiwriteregisterburst_317',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]], - ['srccallsign_318',['srcCallsign',['../class_a_x25_frame.html#ab76eaa8445e7953059a46bb78082dd5a',1,'AX25Frame']]], - ['srcssid_319',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], - ['sstvclient_320',['SSTVClient',['../class_s_s_t_v_client.html',1,'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)']]], - ['sstvmode_5ft_321',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], - ['standby_322',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9',1,'PhysicalLayer::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()']]], - ['startchannelscan_323',['startChannelScan',['../class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]], - ['startdirect_324',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], - ['startranging_325',['startRanging',['../class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795',1,'SX1280']]], - ['startreceive_326',['startReceive',['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_s_x126x.html#a5052dc09f4b10ee22e169129f368685f',1,'SX126x::startReceive()'],['../class_s_x127x.html#afe8456d0f9abbce4d743f256f3e1e6c6',1,'SX127x::startReceive()'],['../class_s_x128x.html#a8171d2f3de53156526580ca4fe4d647d',1,'SX128x::startReceive()']]], - ['startreceivedutycycle_327',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]], - ['startreceivedutycycleauto_328',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]], - ['startsignal_329',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], - ['starttransmit_330',['startTransmit',['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], - ['status_20codes_331',['Status Codes',['../group__status__codes.html',1,'']]], - ['subscribe_332',['subscribe',['../class_m_q_t_t_client.html#a9488df90534953c33d76e9183965a300',1,'MQTTClient']]], - ['sx1231_333',['SX1231',['../class_s_x1231.html',1,'SX1231'],['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()']]], - ['sx1261_334',['SX1261',['../class_s_x1261.html',1,'SX1261'],['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()']]], - ['sx1262_335',['SX1262',['../class_s_x1262.html',1,'SX1262'],['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()']]], - ['sx1268_336',['SX1268',['../class_s_x1268.html',1,'SX1268'],['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()']]], - ['sx126x_337',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]], - ['sx1272_338',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]], - ['sx1273_339',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]], - ['sx1276_340',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]], - ['sx1277_341',['SX1277',['../class_s_x1277.html',1,'SX1277'],['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()']]], - ['sx1278_342',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]], - ['sx1279_343',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]], - ['sx127x_344',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]], - ['sx1280_345',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]], - ['sx1281_346',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]], - ['sx1282_347',['SX1282',['../class_s_x1282.html',1,'SX1282'],['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()']]], - ['sx128x_348',['SX128x',['../class_s_x128x.html',1,'SX128x'],['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x::SX128x()']]] + ['scanchannel_241',['scanChannel',['../class_s_x126x.html#ae9f24414bd684434c310df54b3558f21',1,'SX126x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]], + ['scanpixellen_242',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], + ['send_243',['send',['../class_e_s_p8266.html#a1caaa537edd52d1c2b7a0a25ef69c1c9',1,'ESP8266::send(const char *data) override'],['../class_e_s_p8266.html#a2f34474953b7dbe4d057c8e3f65e0dc4',1,'ESP8266::send(uint8_t *data, size_t len) override'],['../class_transport_layer.html#a1d9cb76640868aa0338b52808e4f022d',1,'TransportLayer::send(const char *data)=0'],['../class_transport_layer.html#afb001c6348bc19694090532cc5f00e52',1,'TransportLayer::send(uint8_t *data, size_t len)=0']]], + ['sendframe_244',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client']]], + ['sendheader_245',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], + ['sendline_246',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]], + ['sendseqnumber_247',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], + ['serialmodule_248',['SerialModule',['../class_serial_module.html',1,'SerialModule'],['../class_serial_module.html#a753631600e2070c57ed74e9eb296ce19',1,'SerialModule::SerialModule()']]], + ['setaccessaddress_249',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], + ['setaddresswidth_250',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], + ['setaeskey_251',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], + ['setafc_252',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], + ['setafcagctrigger_253',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], + ['setafcbandwidth_254',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], + ['setambienttemperature_255',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], + ['setautoack_256',['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_257',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()']]], + ['setbitrate_258',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x128x.html#a3bee00ec197ef9855c0079cb0a3009a6',1,'SX128x::setBitRate()']]], + ['setbroadcastaddress_259',['setBroadcastAddress',['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()']]], + ['setcodingrate_260',['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_261',['setCorrection',['../class_a_x25_client.html#aa6a10784d59428a4d5c13067ba6af69c',1,'AX25Client']]], + ['setcrc_262',['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_263',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()']]], + ['setcurrentlimit_264',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], + ['setdatarate_265',['setDataRate',['../classn_r_f24.html#a1f3ec2196733a2e2476f50690967f285',1,'nRF24']]], + ['setdatashaping_266',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::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_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd',1,'PhysicalLayer::setDataShaping()']]], + ['setdatashapingook_267',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], + ['setdestinationaddress_268',['setDestinationAddress',['../class_x_bee_serial.html#ae485a8ebeaf574ffe0c2c56a61583f13',1,'XBeeSerial']]], + ['setdio0action_269',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ada53419d65f207f352124da7747c5960',1,'SX127x::setDio0Action()']]], + ['setdio1action_270',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], + ['setdio2asrfswitch_271',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], + ['setdirectaction_272',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086',1,'PhysicalLayer::setDirectAction()']]], + ['setdirectsyncword_273',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], + ['setencoding_274',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::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_physical_layer.html#a7d3419227d201d6912b77784636d437d',1,'PhysicalLayer::setEncoding()']]], + ['setfrequency_275',['setFrequency',['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../classn_r_f24.html#abec5f9dba44a019e23c8bf516f104fad',1,'nRF24::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_s_x1262.html#a7e72da22fa1fc2d87186107a3285e846',1,'SX1262::setFrequency()'],['../class_s_x1268.html#a6ad998275281de5c6f24f8a64db88052',1,'SX1268::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()']]], + ['setfrequencydeviation_276',['setFrequencyDeviation',['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b',1,'PhysicalLayer::setFrequencyDeviation()']]], + ['setgain_277',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], + ['setgdo0action_278',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]], + ['setgdo2action_279',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]], + ['setirqaction_280',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], + ['setlnatestboost_281',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], + ['setnodeaddress_282',['setNodeAddress',['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752',1,'SX126x::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()']]], + ['setook_283',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()']]], + ['setookfixedorfloorthreshold_284',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], + ['setookfixedthreshold_285',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], + ['setookpeakthresholddecrement_286',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement()']]], + ['setookthresholdtype_287',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], + ['setoutputpower_288',['setOutputPower',['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()']]], + ['setpanid_289',['setPanId',['../class_x_bee_serial.html#ad429a47dc445765d2dec7ff64b922306',1,'XBeeSerial::setPanId()'],['../class_x_bee.html#a88745c61a1dc2d1139c34d6cc385d35b',1,'XBee::setPanId()']]], + ['setpreamblelength_290',['setPreambleLength',['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',1,'CC1101::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()']]], + ['setpromiscuousmode_291',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]], + ['setreceivepipe_292',['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_293',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], + ['setregulatordcdc_294',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]], + ['setregulatorldo_295',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]], + ['setrepeaters_296',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], + ['setrfswitchpins_297',['setRfSwitchPins',['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()']]], + ['setrfswitchstate_298',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]], + ['setrssiconfig_299',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], + ['setrxbandwidth_300',['setRxBandwidth',['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()']]], + ['setsendsequence_301',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], + ['setspreadingfactor_302',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::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_303',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]], + ['setsyncword_304',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]], + ['settcxo_305',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]], + ['settransmitpipe_306',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], + ['setwhitening_307',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], + ['shield_20configuration_308',['Shield Configuration',['../group__shield__config.html',1,'']]], + ['si4430_309',['Si4430',['../class_si4430.html',1,'Si4430'],['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430::Si4430()']]], + ['si4431_310',['Si4431',['../class_si4431.html',1,'Si4431'],['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431::Si4431()']]], + ['si4432_311',['Si4432',['../class_si4432.html',1,'Si4432'],['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432::Si4432()']]], + ['si443x_312',['Si443x',['../class_si443x.html',1,'Si443x'],['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x::Si443x()']]], + ['sleep_313',['sleep',['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb',1,'RF69::sleep()'],['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep()'],['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()']]], + ['spigetregvalue_314',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]], + ['spireadcommand_315',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]], + ['spireadregister_316',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]], + ['spireadregisterburst_317',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]], + ['spisetregvalue_318',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]], + ['spitransfer_319',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]], + ['spiwritecommand_320',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]], + ['spiwriteregister_321',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]], + ['spiwriteregisterburst_322',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]], + ['srccallsign_323',['srcCallsign',['../class_a_x25_frame.html#ab76eaa8445e7953059a46bb78082dd5a',1,'AX25Frame']]], + ['srcssid_324',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]], + ['sstvclient_325',['SSTVClient',['../class_s_s_t_v_client.html',1,'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)']]], + ['sstvmode_5ft_326',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], + ['standby_327',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9',1,'PhysicalLayer::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()']]], + ['startchannelscan_328',['startChannelScan',['../class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]], + ['startdirect_329',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], + ['startranging_330',['startRanging',['../class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795',1,'SX1280']]], + ['startreceive_331',['startReceive',['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_s_x126x.html#a5052dc09f4b10ee22e169129f368685f',1,'SX126x::startReceive()'],['../class_s_x127x.html#afe8456d0f9abbce4d743f256f3e1e6c6',1,'SX127x::startReceive()'],['../class_s_x128x.html#a8171d2f3de53156526580ca4fe4d647d',1,'SX128x::startReceive()']]], + ['startreceivedutycycle_332',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]], + ['startreceivedutycycleauto_333',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]], + ['startsignal_334',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], + ['starttransmit_335',['startTransmit',['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], + ['status_20codes_336',['Status Codes',['../group__status__codes.html',1,'']]], + ['subscribe_337',['subscribe',['../class_m_q_t_t_client.html#a9488df90534953c33d76e9183965a300',1,'MQTTClient']]], + ['sx1231_338',['SX1231',['../class_s_x1231.html',1,'SX1231'],['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231::SX1231()']]], + ['sx1261_339',['SX1261',['../class_s_x1261.html',1,'SX1261'],['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261::SX1261()']]], + ['sx1262_340',['SX1262',['../class_s_x1262.html',1,'SX1262'],['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262::SX1262()']]], + ['sx1268_341',['SX1268',['../class_s_x1268.html',1,'SX1268'],['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268::SX1268()']]], + ['sx126x_342',['SX126x',['../class_s_x126x.html',1,'SX126x'],['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x::SX126x()']]], + ['sx1272_343',['SX1272',['../class_s_x1272.html',1,'SX1272'],['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272::SX1272()']]], + ['sx1273_344',['SX1273',['../class_s_x1273.html',1,'SX1273'],['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273::SX1273()']]], + ['sx1276_345',['SX1276',['../class_s_x1276.html',1,'SX1276'],['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276::SX1276()']]], + ['sx1277_346',['SX1277',['../class_s_x1277.html',1,'SX1277'],['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277::SX1277()']]], + ['sx1278_347',['SX1278',['../class_s_x1278.html',1,'SX1278'],['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278::SX1278()']]], + ['sx1279_348',['SX1279',['../class_s_x1279.html',1,'SX1279'],['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279::SX1279()']]], + ['sx127x_349',['SX127x',['../class_s_x127x.html',1,'SX127x'],['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x::SX127x()']]], + ['sx1280_350',['SX1280',['../class_s_x1280.html',1,'SX1280'],['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280::SX1280()']]], + ['sx1281_351',['SX1281',['../class_s_x1281.html',1,'SX1281'],['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281::SX1281()']]], + ['sx1282_352',['SX1282',['../class_s_x1282.html',1,'SX1282'],['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282::SX1282()']]], + ['sx128x_353',['SX128x',['../class_s_x128x.html',1,'SX128x'],['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x::SX128x()']]] ]; diff --git a/search/all_11.js b/search/all_11.js index 09768960..4f6013a8 100644 --- a/search/all_11.js +++ b/search/all_11.js @@ -1,12 +1,12 @@ var searchData= [ - ['term_349',['term',['../class_module.html#af0569f6930da7bee761eeca8158aed3a',1,'Module']]], - ['todo_20list_350',['Todo List',['../todo.html',1,'']]], - ['tone_351',['tone',['../class_module.html#a32ba59613a2f1e77038956e18d9fedd7',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], - ['tone_5ft_352',['tone_t',['../structtone__t.html',1,'']]], - ['tones_353',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]], - ['transmit_354',['transmit',['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit()'],['../class_x_bee.html#ac1573e0aa0421cbcc767a968dda65819',1,'XBee::transmit(uint8_t *dest, const char *payload, uint8_t radius=1)'],['../class_x_bee.html#a697bfb6969560ef25bfb6c7bc64c3f09',1,'XBee::transmit(uint8_t *dest, uint8_t *destNetwork, const char *payload, uint8_t radius=1)'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], - ['transmitdirect_355',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]], - ['transportlayer_356',['TransportLayer',['../class_transport_layer.html',1,'']]], - ['type_357',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]] + ['term_354',['term',['../class_module.html#af0569f6930da7bee761eeca8158aed3a',1,'Module']]], + ['todo_20list_355',['Todo List',['../todo.html',1,'']]], + ['tone_356',['tone',['../class_module.html#a32ba59613a2f1e77038956e18d9fedd7',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], + ['tone_5ft_357',['tone_t',['../structtone__t.html',1,'']]], + ['tones_358',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]], + ['transmit_359',['transmit',['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit()'],['../class_x_bee.html#ac1573e0aa0421cbcc767a968dda65819',1,'XBee::transmit(uint8_t *dest, const char *payload, uint8_t radius=1)'],['../class_x_bee.html#a697bfb6969560ef25bfb6c7bc64c3f09',1,'XBee::transmit(uint8_t *dest, uint8_t *destNetwork, const char *payload, uint8_t radius=1)'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], + ['transmitdirect_360',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]], + ['transportlayer_361',['TransportLayer',['../class_transport_layer.html',1,'']]], + ['type_362',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]] ]; diff --git a/search/all_12.js b/search/all_12.js index bd30f572..bef93e9a 100644 --- a/search/all_12.js +++ b/search/all_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['uart_20configuration_358',['UART Configuration',['../group__uart__config.html',1,'']]], - ['unsubscribe_359',['unsubscribe',['../class_m_q_t_t_client.html#a782158f20b289746b7b6884fd922a22c',1,'MQTTClient']]] + ['uart_20configuration_363',['UART Configuration',['../group__uart__config.html',1,'']]], + ['unsubscribe_364',['unsubscribe',['../class_m_q_t_t_client.html#a782158f20b289746b7b6884fd922a22c',1,'MQTTClient']]] ]; diff --git a/search/all_13.js b/search/all_13.js index 0b73d6ee..73d6a87a 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['variablepacketlengthmode_360',['variablePacketLengthMode',['../class_c_c1101.html#a881122ec3457c5f95760859f8e0297c7',1,'CC1101::variablePacketLengthMode()'],['../class_r_f69.html#af62ebde1ea34a394b9781a21ae348c39',1,'RF69::variablePacketLengthMode()'],['../class_s_x126x.html#aa11ab2c6f4488daf2ece93288e05c504',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a9f753c0857e7b8b4b9f7f6e91c77f0fd',1,'SX127x::variablePacketLengthMode()']]], - ['viscode_361',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] + ['variablepacketlengthmode_365',['variablePacketLengthMode',['../class_c_c1101.html#a881122ec3457c5f95760859f8e0297c7',1,'CC1101::variablePacketLengthMode()'],['../class_r_f69.html#af62ebde1ea34a394b9781a21ae348c39',1,'RF69::variablePacketLengthMode()'],['../class_s_x126x.html#aa11ab2c6f4488daf2ece93288e05c504',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a9f753c0857e7b8b4b9f7f6e91c77f0fd',1,'SX127x::variablePacketLengthMode()']]], + ['viscode_366',['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 505e281f..3310eb2f 100644 --- a/search/all_14.js +++ b/search/all_14.js @@ -1,4 +1,4 @@ var searchData= [ - ['width_362',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]] + ['width_367',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]] ]; diff --git a/search/all_15.js b/search/all_15.js index 02f45f2a..fb3bd9ff 100644 --- a/search/all_15.js +++ b/search/all_15.js @@ -1,5 +1,5 @@ var searchData= [ - ['xbee_363',['XBee',['../class_x_bee.html',1,'XBee'],['../class_x_bee.html#a8a60ce7fd2b58e495b436d046e730e0b',1,'XBee::XBee()']]], - ['xbeeserial_364',['XBeeSerial',['../class_x_bee_serial.html',1,'XBeeSerial'],['../class_x_bee_serial.html#a9ee7ddd4b45096a6112798be1be09080',1,'XBeeSerial::XBeeSerial()']]] + ['xbee_368',['XBee',['../class_x_bee.html',1,'XBee'],['../class_x_bee.html#a8a60ce7fd2b58e495b436d046e730e0b',1,'XBee::XBee()']]], + ['xbeeserial_369',['XBeeSerial',['../class_x_bee_serial.html',1,'XBeeSerial'],['../class_x_bee_serial.html#a9ee7ddd4b45096a6112798be1be09080',1,'XBeeSerial::XBeeSerial()']]] ]; diff --git a/search/all_16.js b/search/all_16.js index 5440e5d1..271084a6 100644 --- a/search/all_16.js +++ b/search/all_16.js @@ -1,4 +1,4 @@ var searchData= [ - ['yield_365',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]] + ['yield_370',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]] ]; diff --git a/search/all_17.js b/search/all_17.js index 8e1d17cf..3020b1a2 100644 --- a/search/all_17.js +++ b/search/all_17.js @@ -1,5 +1,5 @@ var searchData= [ - ['_7eax25frame_366',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], - ['_7eita2string_367',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]] + ['_7eax25frame_371',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], + ['_7eita2string_372',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]] ]; diff --git a/search/all_3.js b/search/all_3.js index 033597df..ac66ab35 100644 --- a/search/all_3.js +++ b/search/all_3.js @@ -10,7 +10,9 @@ var searchData= ['digitalwrite_36',['digitalWrite',['../class_module.html#a46ad10b113df7c7e0a932be19eff63cd',1,'Module']]], ['disableaddressfiltering_37',['disableAddressFiltering',['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()'],['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()']]], ['disableaes_38',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]], - ['disablepipe_39',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], - ['disablesyncwordfiltering_40',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]], - ['disconnect_41',['disconnect',['../class_m_q_t_t_client.html#af10176e2cf67bd652823d44f3203a96e',1,'MQTTClient']]] + ['disablebitsync_39',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]], + ['disablecontinuousmodebitsync_40',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]], + ['disablepipe_41',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], + ['disablesyncwordfiltering_42',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]], + ['disconnect_43',['disconnect',['../class_m_q_t_t_client.html#af10176e2cf67bd652823d44f3203a96e',1,'MQTTClient']]] ]; diff --git a/search/all_4.js b/search/all_4.js index 6284a224..42c6c4f2 100644 --- a/search/all_4.js +++ b/search/all_4.js @@ -1,75 +1,77 @@ var searchData= [ - ['encoding_20type_20aliases_2e_42',['Encoding type aliases.',['../group__config__encoding.html',1,'']]], - ['enableaes_43',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], - ['enablesyncwordfiltering_44',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], - ['err_5fack_5fnot_5freceived_45',['ERR_ACK_NOT_RECEIVED',['../group__status__codes.html#ga10d6ef8fd76e4bda92075e649cc14f81',1,'TypeDef.h']]], - ['err_5fat_5ffailed_46',['ERR_AT_FAILED',['../group__status__codes.html#gad0226134c1246d627d2a532a89b03050',1,'TypeDef.h']]], - ['err_5fchip_5fnot_5ffound_47',['ERR_CHIP_NOT_FOUND',['../group__status__codes.html#ga66ac4a39ab53bd83f36ba49ea2a88e2c',1,'TypeDef.h']]], - ['err_5fcmd_5fmode_5ffailed_48',['ERR_CMD_MODE_FAILED',['../group__status__codes.html#ga8c65c39a6addd77e64c36ae1aff64c95',1,'TypeDef.h']]], - ['err_5fcrc_5fmismatch_49',['ERR_CRC_MISMATCH',['../group__status__codes.html#ga81f8c801d5a34b8000dd127002092299',1,'TypeDef.h']]], - ['err_5fframe_5fincorrect_5fchecksum_50',['ERR_FRAME_INCORRECT_CHECKSUM',['../group__status__codes.html#gac1fec2f7cf44d57a670a90d49de224dd',1,'TypeDef.h']]], - ['err_5fframe_5fmalformed_51',['ERR_FRAME_MALFORMED',['../group__status__codes.html#gaf56437c272ebe407f2e323eacc4d30b4',1,'TypeDef.h']]], - ['err_5fframe_5fno_5fresponse_52',['ERR_FRAME_NO_RESPONSE',['../group__status__codes.html#gaa9983b460eb8c29f7903b22dc907fb65',1,'TypeDef.h']]], - ['err_5fframe_5funexpected_5fid_53',['ERR_FRAME_UNEXPECTED_ID',['../group__status__codes.html#ga41235956d8113d0b175008257daa01da',1,'TypeDef.h']]], - ['err_5finvalid_5faddress_5fwidth_54',['ERR_INVALID_ADDRESS_WIDTH',['../group__status__codes.html#ga03955017183ea3e54cd37d02a053bf17',1,'TypeDef.h']]], - ['err_5finvalid_5fbandwidth_55',['ERR_INVALID_BANDWIDTH',['../group__status__codes.html#gaf1f9fb751ed4f4094c02a406e049f645',1,'TypeDef.h']]], - ['err_5finvalid_5fbit_5frange_56',['ERR_INVALID_BIT_RANGE',['../group__status__codes.html#gab18e3c068ca8d9e7c07e6b9473c5e0df',1,'TypeDef.h']]], - ['err_5finvalid_5fbit_5frate_57',['ERR_INVALID_BIT_RATE',['../group__status__codes.html#gaaa1f1221c85e65caecb13f9f23cf02a2',1,'TypeDef.h']]], - ['err_5finvalid_5fbit_5frate_5fbw_5fratio_58',['ERR_INVALID_BIT_RATE_BW_RATIO',['../group__status__codes.html#ga922d0c9f0434ca59f8e82fce26d0e4c7',1,'TypeDef.h']]], - ['err_5finvalid_5fcallsign_59',['ERR_INVALID_CALLSIGN',['../group__status__codes.html#ga3dcd9b09caecdbc3d267bc9dc4c3d0a3',1,'TypeDef.h']]], - ['err_5finvalid_5fcoding_5frate_60',['ERR_INVALID_CODING_RATE',['../group__status__codes.html#ga39b71357447cf06f433d589133d61af2',1,'TypeDef.h']]], - ['err_5finvalid_5fcrc_5fconfiguration_61',['ERR_INVALID_CRC_CONFIGURATION',['../group__status__codes.html#ga2e2ba33c5844ca459a97820fee4375c6',1,'TypeDef.h']]], - ['err_5finvalid_5fcurrent_5flimit_62',['ERR_INVALID_CURRENT_LIMIT',['../group__status__codes.html#ga47d567bd065787445759a1eb0f6eca5c',1,'TypeDef.h']]], - ['err_5finvalid_5fdata_5frate_63',['ERR_INVALID_DATA_RATE',['../group__status__codes.html#gaf6ce56c0b0d24e28f68fc28159a9f9e2',1,'TypeDef.h']]], - ['err_5finvalid_5fdata_5fshaping_64',['ERR_INVALID_DATA_SHAPING',['../group__status__codes.html#ga9ca18294bf38d20331b42b9d3197bb61',1,'TypeDef.h']]], - ['err_5finvalid_5fencoding_65',['ERR_INVALID_ENCODING',['../group__status__codes.html#ga38bd76783868e5a9e4a0ad6894160670',1,'TypeDef.h']]], - ['err_5finvalid_5ffrequency_66',['ERR_INVALID_FREQUENCY',['../group__status__codes.html#gae340a46264dfa98e51c5d2eefeae08e7',1,'TypeDef.h']]], - ['err_5finvalid_5ffrequency_5fdeviation_67',['ERR_INVALID_FREQUENCY_DEVIATION',['../group__status__codes.html#ga212fdb49959455bf6980055aa4abc28c',1,'TypeDef.h']]], - ['err_5finvalid_5fgain_68',['ERR_INVALID_GAIN',['../group__status__codes.html#ga8a1f83c8c9abed26b497c9eb69f1a521',1,'TypeDef.h']]], - ['err_5finvalid_5fmodulation_69',['ERR_INVALID_MODULATION',['../group__status__codes.html#ga8a4168b6953ca4e289d2bda1d4c422e7',1,'TypeDef.h']]], - ['err_5finvalid_5fmodulation_5fparameters_70',['ERR_INVALID_MODULATION_PARAMETERS',['../group__status__codes.html#ga3fed4b30666e7ecc9dba67739a6bc52b',1,'TypeDef.h']]], - ['err_5finvalid_5fnum_5fbroad_5faddrs_71',['ERR_INVALID_NUM_BROAD_ADDRS',['../group__status__codes.html#ga975011f5b371bfc864c36e65f2b26a24',1,'TypeDef.h']]], - ['err_5finvalid_5fnum_5frepeaters_72',['ERR_INVALID_NUM_REPEATERS',['../group__status__codes.html#ga67d0525915e7e4dc6f5d13199d5e37ae',1,'TypeDef.h']]], - ['err_5finvalid_5fnum_5fsamples_73',['ERR_INVALID_NUM_SAMPLES',['../group__status__codes.html#gabb4c168ec8dd99c2b853d589af455884',1,'TypeDef.h']]], - ['err_5finvalid_5fook_5frssi_5fpeak_5ftype_74',['ERR_INVALID_OOK_RSSI_PEAK_TYPE',['../group__status__codes.html#gacd4ead53ff1363d12e2f2c3ebdf2caae',1,'TypeDef.h']]], - ['err_5finvalid_5foutput_5fpower_75',['ERR_INVALID_OUTPUT_POWER',['../group__status__codes.html#ga5f16976086bbc9bf66c77719ccf0f277',1,'TypeDef.h']]], - ['err_5finvalid_5fpipe_5fnumber_76',['ERR_INVALID_PIPE_NUMBER',['../group__status__codes.html#ga819f4587f681d62d96babf3f51a0268e',1,'TypeDef.h']]], - ['err_5finvalid_5fpreamble_5flength_77',['ERR_INVALID_PREAMBLE_LENGTH',['../group__status__codes.html#ga267654efbc717258ff5ac95c10e180f1',1,'TypeDef.h']]], - ['err_5finvalid_5frepeater_5fcallsign_78',['ERR_INVALID_REPEATER_CALLSIGN',['../group__status__codes.html#gae98a89e9fb2c2d8c85203870c939e43a',1,'TypeDef.h']]], - ['err_5finvalid_5frssi_5foffset_79',['ERR_INVALID_RSSI_OFFSET',['../group__status__codes.html#gaf85ebeb45d6d949753a9a3e58fa40c46',1,'TypeDef.h']]], - ['err_5finvalid_5frtty_5fshift_80',['ERR_INVALID_RTTY_SHIFT',['../group__status__codes.html#gac9ca6ac94f8a11579c418e63943c056d',1,'TypeDef.h']]], - ['err_5finvalid_5frx_5fbandwidth_81',['ERR_INVALID_RX_BANDWIDTH',['../group__status__codes.html#ga228942d2635d5bdea96cf0804f5cace2',1,'TypeDef.h']]], - ['err_5finvalid_5frx_5fperiod_82',['ERR_INVALID_RX_PERIOD',['../group__status__codes.html#ga2e1460e2969e76242bf17963448d62c6',1,'TypeDef.h']]], - ['err_5finvalid_5fsleep_5fperiod_83',['ERR_INVALID_SLEEP_PERIOD',['../group__status__codes.html#gac852eedc5c168b511bbc83abce3123e7',1,'TypeDef.h']]], - ['err_5finvalid_5fspreading_5ffactor_84',['ERR_INVALID_SPREADING_FACTOR',['../group__status__codes.html#ga8d2622e3d347809a5b8b13b90e789121',1,'TypeDef.h']]], - ['err_5finvalid_5fsync_5fword_85',['ERR_INVALID_SYNC_WORD',['../group__status__codes.html#gaa70935907871709286cfef58d1074a51',1,'TypeDef.h']]], - ['err_5finvalid_5ftcxo_5fvoltage_86',['ERR_INVALID_TCXO_VOLTAGE',['../group__status__codes.html#gad46a0a43a686f8057b2516dcee2ac935',1,'TypeDef.h']]], - ['err_5flora_5fheader_5fdamaged_87',['ERR_LORA_HEADER_DAMAGED',['../group__status__codes.html#gae4108bebce0009bdbca68c645b3207ff',1,'TypeDef.h']]], - ['err_5fmemory_5fallocation_5ffailed_88',['ERR_MEMORY_ALLOCATION_FAILED',['../group__status__codes.html#ga10c401bcff17771aaa3814569598e5a2',1,'TypeDef.h']]], - ['err_5fmqtt_5fconn_5fbad_5fusername_5fpassword_89',['ERR_MQTT_CONN_BAD_USERNAME_PASSWORD',['../group__status__codes.html#gabd7da172470aea37cd7b5d0300b89ad8',1,'TypeDef.h']]], - ['err_5fmqtt_5fconn_5fid_5frejected_90',['ERR_MQTT_CONN_ID_REJECTED',['../group__status__codes.html#ga3c1be62b28b6ec25da16643bfe2e6fba',1,'TypeDef.h']]], - ['err_5fmqtt_5fconn_5fnot_5fauthorized_91',['ERR_MQTT_CONN_NOT_AUTHORIZED',['../group__status__codes.html#ga03cb5a5924e72d8ee5c5e9fbd33f2549',1,'TypeDef.h']]], - ['err_5fmqtt_5fconn_5fserver_5funavailable_92',['ERR_MQTT_CONN_SERVER_UNAVAILABLE',['../group__status__codes.html#gaccd2c15a0a2372183a64c7796fa3207f',1,'TypeDef.h']]], - ['err_5fmqtt_5fconn_5fversion_5frejected_93',['ERR_MQTT_CONN_VERSION_REJECTED',['../group__status__codes.html#ga47124a33fbae3e47fd21eedbb8d5334c',1,'TypeDef.h']]], - ['err_5fmqtt_5fno_5fnew_5fpacket_5favailable_94',['ERR_MQTT_NO_NEW_PACKET_AVAILABLE',['../group__status__codes.html#gae68036ef658da67f79e0506034e72221',1,'TypeDef.h']]], - ['err_5fmqtt_5fsubs_5ffailed_95',['ERR_MQTT_SUBS_FAILED',['../group__status__codes.html#ga06f7816dddbe094c2158a40a517f950e',1,'TypeDef.h']]], - ['err_5fmqtt_5funexpected_5fpacket_5fid_96',['ERR_MQTT_UNEXPECTED_PACKET_ID',['../group__status__codes.html#ga5a373a7e054a6c8e7a5198e23439157d',1,'TypeDef.h']]], - ['err_5fnone_97',['ERR_NONE',['../group__status__codes.html#gaff0d3fb76f11f6e8ea4002d826bbd23c',1,'TypeDef.h']]], - ['err_5fpacket_5ftoo_5flong_98',['ERR_PACKET_TOO_LONG',['../group__status__codes.html#gadd7021d50cf3fd55417a3d476bb4308d',1,'TypeDef.h']]], - ['err_5franging_5ftimeout_99',['ERR_RANGING_TIMEOUT',['../group__status__codes.html#gafef1096303c151991e6d933bd5f870ff',1,'TypeDef.h']]], - ['err_5fresponse_5fmalformed_100',['ERR_RESPONSE_MALFORMED',['../group__status__codes.html#ga1595a1ed0d191defe3b78a1ae1deedf7',1,'TypeDef.h']]], - ['err_5fresponse_5fmalformed_5fat_101',['ERR_RESPONSE_MALFORMED_AT',['../group__status__codes.html#gab0af68b1c852a4c124550baabf71a0f0',1,'TypeDef.h']]], - ['err_5frx_5ftimeout_102',['ERR_RX_TIMEOUT',['../group__status__codes.html#gaec29abeb9f0b3f44f7dbed1a17bc675a',1,'TypeDef.h']]], - ['err_5fspi_5fcmd_5ffailed_103',['ERR_SPI_CMD_FAILED',['../group__status__codes.html#gabbd93b7bffc697e5eb394ba7e601b648',1,'TypeDef.h']]], - ['err_5fspi_5fcmd_5finvalid_104',['ERR_SPI_CMD_INVALID',['../group__status__codes.html#gaa698c4e61a86e0b43e1e58c36f89d1d7',1,'TypeDef.h']]], - ['err_5fspi_5fcmd_5ftimeout_105',['ERR_SPI_CMD_TIMEOUT',['../group__status__codes.html#ga171202c690c6df1b6c1fd914c37e7d37',1,'TypeDef.h']]], - ['err_5fspi_5fwrite_5ffailed_106',['ERR_SPI_WRITE_FAILED',['../group__status__codes.html#ga4e05af49324b9f065ae93f9664d51c2f',1,'TypeDef.h']]], - ['err_5ftx_5ftimeout_107',['ERR_TX_TIMEOUT',['../group__status__codes.html#ga198c0b71c71734ab53023e3fe23a1248',1,'TypeDef.h']]], - ['err_5funknown_108',['ERR_UNKNOWN',['../group__status__codes.html#ga60d04c865fd58d86758894edca38bf30',1,'TypeDef.h']]], - ['err_5funsupported_5fencoding_109',['ERR_UNSUPPORTED_ENCODING',['../group__status__codes.html#ga764f561222124ffd6620356e21cf7afd',1,'TypeDef.h']]], - ['err_5furl_5fmalformed_110',['ERR_URL_MALFORMED',['../group__status__codes.html#gac4980128c06104656146109af0a944e4',1,'TypeDef.h']]], - ['err_5fwrong_5fmodem_111',['ERR_WRONG_MODEM',['../group__status__codes.html#ga8ec3e01efb503b4e32c59ea0a6566714',1,'TypeDef.h']]], - ['esp8266_112',['ESP8266',['../class_e_s_p8266.html',1,'ESP8266'],['../class_e_s_p8266.html#ac0adb20130a378b8b99fcb9101823636',1,'ESP8266::ESP8266()']]], - ['explicitheader_113',['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()']]] + ['encoding_20type_20aliases_2e_44',['Encoding type aliases.',['../group__config__encoding.html',1,'']]], + ['enableaes_45',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], + ['enablebitsync_46',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]], + ['enablecontinuousmodebitsync_47',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]], + ['enablesyncwordfiltering_48',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], + ['err_5fack_5fnot_5freceived_49',['ERR_ACK_NOT_RECEIVED',['../group__status__codes.html#ga10d6ef8fd76e4bda92075e649cc14f81',1,'TypeDef.h']]], + ['err_5fat_5ffailed_50',['ERR_AT_FAILED',['../group__status__codes.html#gad0226134c1246d627d2a532a89b03050',1,'TypeDef.h']]], + ['err_5fchip_5fnot_5ffound_51',['ERR_CHIP_NOT_FOUND',['../group__status__codes.html#ga66ac4a39ab53bd83f36ba49ea2a88e2c',1,'TypeDef.h']]], + ['err_5fcmd_5fmode_5ffailed_52',['ERR_CMD_MODE_FAILED',['../group__status__codes.html#ga8c65c39a6addd77e64c36ae1aff64c95',1,'TypeDef.h']]], + ['err_5fcrc_5fmismatch_53',['ERR_CRC_MISMATCH',['../group__status__codes.html#ga81f8c801d5a34b8000dd127002092299',1,'TypeDef.h']]], + ['err_5fframe_5fincorrect_5fchecksum_54',['ERR_FRAME_INCORRECT_CHECKSUM',['../group__status__codes.html#gac1fec2f7cf44d57a670a90d49de224dd',1,'TypeDef.h']]], + ['err_5fframe_5fmalformed_55',['ERR_FRAME_MALFORMED',['../group__status__codes.html#gaf56437c272ebe407f2e323eacc4d30b4',1,'TypeDef.h']]], + ['err_5fframe_5fno_5fresponse_56',['ERR_FRAME_NO_RESPONSE',['../group__status__codes.html#gaa9983b460eb8c29f7903b22dc907fb65',1,'TypeDef.h']]], + ['err_5fframe_5funexpected_5fid_57',['ERR_FRAME_UNEXPECTED_ID',['../group__status__codes.html#ga41235956d8113d0b175008257daa01da',1,'TypeDef.h']]], + ['err_5finvalid_5faddress_5fwidth_58',['ERR_INVALID_ADDRESS_WIDTH',['../group__status__codes.html#ga03955017183ea3e54cd37d02a053bf17',1,'TypeDef.h']]], + ['err_5finvalid_5fbandwidth_59',['ERR_INVALID_BANDWIDTH',['../group__status__codes.html#gaf1f9fb751ed4f4094c02a406e049f645',1,'TypeDef.h']]], + ['err_5finvalid_5fbit_5frange_60',['ERR_INVALID_BIT_RANGE',['../group__status__codes.html#gab18e3c068ca8d9e7c07e6b9473c5e0df',1,'TypeDef.h']]], + ['err_5finvalid_5fbit_5frate_61',['ERR_INVALID_BIT_RATE',['../group__status__codes.html#gaaa1f1221c85e65caecb13f9f23cf02a2',1,'TypeDef.h']]], + ['err_5finvalid_5fbit_5frate_5fbw_5fratio_62',['ERR_INVALID_BIT_RATE_BW_RATIO',['../group__status__codes.html#ga922d0c9f0434ca59f8e82fce26d0e4c7',1,'TypeDef.h']]], + ['err_5finvalid_5fcallsign_63',['ERR_INVALID_CALLSIGN',['../group__status__codes.html#ga3dcd9b09caecdbc3d267bc9dc4c3d0a3',1,'TypeDef.h']]], + ['err_5finvalid_5fcoding_5frate_64',['ERR_INVALID_CODING_RATE',['../group__status__codes.html#ga39b71357447cf06f433d589133d61af2',1,'TypeDef.h']]], + ['err_5finvalid_5fcrc_5fconfiguration_65',['ERR_INVALID_CRC_CONFIGURATION',['../group__status__codes.html#ga2e2ba33c5844ca459a97820fee4375c6',1,'TypeDef.h']]], + ['err_5finvalid_5fcurrent_5flimit_66',['ERR_INVALID_CURRENT_LIMIT',['../group__status__codes.html#ga47d567bd065787445759a1eb0f6eca5c',1,'TypeDef.h']]], + ['err_5finvalid_5fdata_5frate_67',['ERR_INVALID_DATA_RATE',['../group__status__codes.html#gaf6ce56c0b0d24e28f68fc28159a9f9e2',1,'TypeDef.h']]], + ['err_5finvalid_5fdata_5fshaping_68',['ERR_INVALID_DATA_SHAPING',['../group__status__codes.html#ga9ca18294bf38d20331b42b9d3197bb61',1,'TypeDef.h']]], + ['err_5finvalid_5fencoding_69',['ERR_INVALID_ENCODING',['../group__status__codes.html#ga38bd76783868e5a9e4a0ad6894160670',1,'TypeDef.h']]], + ['err_5finvalid_5ffrequency_70',['ERR_INVALID_FREQUENCY',['../group__status__codes.html#gae340a46264dfa98e51c5d2eefeae08e7',1,'TypeDef.h']]], + ['err_5finvalid_5ffrequency_5fdeviation_71',['ERR_INVALID_FREQUENCY_DEVIATION',['../group__status__codes.html#ga212fdb49959455bf6980055aa4abc28c',1,'TypeDef.h']]], + ['err_5finvalid_5fgain_72',['ERR_INVALID_GAIN',['../group__status__codes.html#ga8a1f83c8c9abed26b497c9eb69f1a521',1,'TypeDef.h']]], + ['err_5finvalid_5fmodulation_73',['ERR_INVALID_MODULATION',['../group__status__codes.html#ga8a4168b6953ca4e289d2bda1d4c422e7',1,'TypeDef.h']]], + ['err_5finvalid_5fmodulation_5fparameters_74',['ERR_INVALID_MODULATION_PARAMETERS',['../group__status__codes.html#ga3fed4b30666e7ecc9dba67739a6bc52b',1,'TypeDef.h']]], + ['err_5finvalid_5fnum_5fbroad_5faddrs_75',['ERR_INVALID_NUM_BROAD_ADDRS',['../group__status__codes.html#ga975011f5b371bfc864c36e65f2b26a24',1,'TypeDef.h']]], + ['err_5finvalid_5fnum_5frepeaters_76',['ERR_INVALID_NUM_REPEATERS',['../group__status__codes.html#ga67d0525915e7e4dc6f5d13199d5e37ae',1,'TypeDef.h']]], + ['err_5finvalid_5fnum_5fsamples_77',['ERR_INVALID_NUM_SAMPLES',['../group__status__codes.html#gabb4c168ec8dd99c2b853d589af455884',1,'TypeDef.h']]], + ['err_5finvalid_5fook_5frssi_5fpeak_5ftype_78',['ERR_INVALID_OOK_RSSI_PEAK_TYPE',['../group__status__codes.html#gacd4ead53ff1363d12e2f2c3ebdf2caae',1,'TypeDef.h']]], + ['err_5finvalid_5foutput_5fpower_79',['ERR_INVALID_OUTPUT_POWER',['../group__status__codes.html#ga5f16976086bbc9bf66c77719ccf0f277',1,'TypeDef.h']]], + ['err_5finvalid_5fpipe_5fnumber_80',['ERR_INVALID_PIPE_NUMBER',['../group__status__codes.html#ga819f4587f681d62d96babf3f51a0268e',1,'TypeDef.h']]], + ['err_5finvalid_5fpreamble_5flength_81',['ERR_INVALID_PREAMBLE_LENGTH',['../group__status__codes.html#ga267654efbc717258ff5ac95c10e180f1',1,'TypeDef.h']]], + ['err_5finvalid_5frepeater_5fcallsign_82',['ERR_INVALID_REPEATER_CALLSIGN',['../group__status__codes.html#gae98a89e9fb2c2d8c85203870c939e43a',1,'TypeDef.h']]], + ['err_5finvalid_5frssi_5foffset_83',['ERR_INVALID_RSSI_OFFSET',['../group__status__codes.html#gaf85ebeb45d6d949753a9a3e58fa40c46',1,'TypeDef.h']]], + ['err_5finvalid_5frtty_5fshift_84',['ERR_INVALID_RTTY_SHIFT',['../group__status__codes.html#gac9ca6ac94f8a11579c418e63943c056d',1,'TypeDef.h']]], + ['err_5finvalid_5frx_5fbandwidth_85',['ERR_INVALID_RX_BANDWIDTH',['../group__status__codes.html#ga228942d2635d5bdea96cf0804f5cace2',1,'TypeDef.h']]], + ['err_5finvalid_5frx_5fperiod_86',['ERR_INVALID_RX_PERIOD',['../group__status__codes.html#ga2e1460e2969e76242bf17963448d62c6',1,'TypeDef.h']]], + ['err_5finvalid_5fsleep_5fperiod_87',['ERR_INVALID_SLEEP_PERIOD',['../group__status__codes.html#gac852eedc5c168b511bbc83abce3123e7',1,'TypeDef.h']]], + ['err_5finvalid_5fspreading_5ffactor_88',['ERR_INVALID_SPREADING_FACTOR',['../group__status__codes.html#ga8d2622e3d347809a5b8b13b90e789121',1,'TypeDef.h']]], + ['err_5finvalid_5fsync_5fword_89',['ERR_INVALID_SYNC_WORD',['../group__status__codes.html#gaa70935907871709286cfef58d1074a51',1,'TypeDef.h']]], + ['err_5finvalid_5ftcxo_5fvoltage_90',['ERR_INVALID_TCXO_VOLTAGE',['../group__status__codes.html#gad46a0a43a686f8057b2516dcee2ac935',1,'TypeDef.h']]], + ['err_5flora_5fheader_5fdamaged_91',['ERR_LORA_HEADER_DAMAGED',['../group__status__codes.html#gae4108bebce0009bdbca68c645b3207ff',1,'TypeDef.h']]], + ['err_5fmemory_5fallocation_5ffailed_92',['ERR_MEMORY_ALLOCATION_FAILED',['../group__status__codes.html#ga10c401bcff17771aaa3814569598e5a2',1,'TypeDef.h']]], + ['err_5fmqtt_5fconn_5fbad_5fusername_5fpassword_93',['ERR_MQTT_CONN_BAD_USERNAME_PASSWORD',['../group__status__codes.html#gabd7da172470aea37cd7b5d0300b89ad8',1,'TypeDef.h']]], + ['err_5fmqtt_5fconn_5fid_5frejected_94',['ERR_MQTT_CONN_ID_REJECTED',['../group__status__codes.html#ga3c1be62b28b6ec25da16643bfe2e6fba',1,'TypeDef.h']]], + ['err_5fmqtt_5fconn_5fnot_5fauthorized_95',['ERR_MQTT_CONN_NOT_AUTHORIZED',['../group__status__codes.html#ga03cb5a5924e72d8ee5c5e9fbd33f2549',1,'TypeDef.h']]], + ['err_5fmqtt_5fconn_5fserver_5funavailable_96',['ERR_MQTT_CONN_SERVER_UNAVAILABLE',['../group__status__codes.html#gaccd2c15a0a2372183a64c7796fa3207f',1,'TypeDef.h']]], + ['err_5fmqtt_5fconn_5fversion_5frejected_97',['ERR_MQTT_CONN_VERSION_REJECTED',['../group__status__codes.html#ga47124a33fbae3e47fd21eedbb8d5334c',1,'TypeDef.h']]], + ['err_5fmqtt_5fno_5fnew_5fpacket_5favailable_98',['ERR_MQTT_NO_NEW_PACKET_AVAILABLE',['../group__status__codes.html#gae68036ef658da67f79e0506034e72221',1,'TypeDef.h']]], + ['err_5fmqtt_5fsubs_5ffailed_99',['ERR_MQTT_SUBS_FAILED',['../group__status__codes.html#ga06f7816dddbe094c2158a40a517f950e',1,'TypeDef.h']]], + ['err_5fmqtt_5funexpected_5fpacket_5fid_100',['ERR_MQTT_UNEXPECTED_PACKET_ID',['../group__status__codes.html#ga5a373a7e054a6c8e7a5198e23439157d',1,'TypeDef.h']]], + ['err_5fnone_101',['ERR_NONE',['../group__status__codes.html#gaff0d3fb76f11f6e8ea4002d826bbd23c',1,'TypeDef.h']]], + ['err_5fpacket_5ftoo_5flong_102',['ERR_PACKET_TOO_LONG',['../group__status__codes.html#gadd7021d50cf3fd55417a3d476bb4308d',1,'TypeDef.h']]], + ['err_5franging_5ftimeout_103',['ERR_RANGING_TIMEOUT',['../group__status__codes.html#gafef1096303c151991e6d933bd5f870ff',1,'TypeDef.h']]], + ['err_5fresponse_5fmalformed_104',['ERR_RESPONSE_MALFORMED',['../group__status__codes.html#ga1595a1ed0d191defe3b78a1ae1deedf7',1,'TypeDef.h']]], + ['err_5fresponse_5fmalformed_5fat_105',['ERR_RESPONSE_MALFORMED_AT',['../group__status__codes.html#gab0af68b1c852a4c124550baabf71a0f0',1,'TypeDef.h']]], + ['err_5frx_5ftimeout_106',['ERR_RX_TIMEOUT',['../group__status__codes.html#gaec29abeb9f0b3f44f7dbed1a17bc675a',1,'TypeDef.h']]], + ['err_5fspi_5fcmd_5ffailed_107',['ERR_SPI_CMD_FAILED',['../group__status__codes.html#gabbd93b7bffc697e5eb394ba7e601b648',1,'TypeDef.h']]], + ['err_5fspi_5fcmd_5finvalid_108',['ERR_SPI_CMD_INVALID',['../group__status__codes.html#gaa698c4e61a86e0b43e1e58c36f89d1d7',1,'TypeDef.h']]], + ['err_5fspi_5fcmd_5ftimeout_109',['ERR_SPI_CMD_TIMEOUT',['../group__status__codes.html#ga171202c690c6df1b6c1fd914c37e7d37',1,'TypeDef.h']]], + ['err_5fspi_5fwrite_5ffailed_110',['ERR_SPI_WRITE_FAILED',['../group__status__codes.html#ga4e05af49324b9f065ae93f9664d51c2f',1,'TypeDef.h']]], + ['err_5ftx_5ftimeout_111',['ERR_TX_TIMEOUT',['../group__status__codes.html#ga198c0b71c71734ab53023e3fe23a1248',1,'TypeDef.h']]], + ['err_5funknown_112',['ERR_UNKNOWN',['../group__status__codes.html#ga60d04c865fd58d86758894edca38bf30',1,'TypeDef.h']]], + ['err_5funsupported_5fencoding_113',['ERR_UNSUPPORTED_ENCODING',['../group__status__codes.html#ga764f561222124ffd6620356e21cf7afd',1,'TypeDef.h']]], + ['err_5furl_5fmalformed_114',['ERR_URL_MALFORMED',['../group__status__codes.html#gac4980128c06104656146109af0a944e4',1,'TypeDef.h']]], + ['err_5fwrong_5fmodem_115',['ERR_WRONG_MODEM',['../group__status__codes.html#ga8ec3e01efb503b4e32c59ea0a6566714',1,'TypeDef.h']]], + ['esp8266_116',['ESP8266',['../class_e_s_p8266.html',1,'ESP8266'],['../class_e_s_p8266.html#ac0adb20130a378b8b99fcb9101823636',1,'ESP8266::ESP8266()']]], + ['explicitheader_117',['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()']]] ]; diff --git a/search/all_5.js b/search/all_5.js index ff1ac0b2..95478897 100644 --- a/search/all_5.js +++ b/search/all_5.js @@ -1,9 +1,9 @@ var searchData= [ - ['fixedpacketlengthmode_114',['fixedPacketLengthMode',['../class_c_c1101.html#a9335f1d5ccab7aab2357449002203810',1,'CC1101::fixedPacketLengthMode()'],['../class_r_f69.html#a4c9dcbd7e44bc5e46d9f10ae276a0c5f',1,'RF69::fixedPacketLengthMode()'],['../class_s_x126x.html#aa768ce757a0f7ee66cdd72cab7a855fa',1,'SX126x::fixedPacketLengthMode()'],['../class_s_x127x.html#aaf8ce9f09d0f46a76a5e251786b6de7f',1,'SX127x::fixedPacketLengthMode()']]], - ['flipbits_115',['flipBits',['../class_module.html#a7f5fd7409f21d33a16ea1de589962ae6',1,'Module']]], - ['flipbits16_116',['flipBits16',['../class_module.html#a160006371be8e121a8a54cc4462b3a72',1,'Module']]], - ['forceldro_117',['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()']]], - ['freq_118',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]], - ['fsk4client_119',['FSK4Client',['../class_f_s_k4_client.html',1,'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)']]] + ['fixedpacketlengthmode_118',['fixedPacketLengthMode',['../class_c_c1101.html#a9335f1d5ccab7aab2357449002203810',1,'CC1101::fixedPacketLengthMode()'],['../class_r_f69.html#a4c9dcbd7e44bc5e46d9f10ae276a0c5f',1,'RF69::fixedPacketLengthMode()'],['../class_s_x126x.html#aa768ce757a0f7ee66cdd72cab7a855fa',1,'SX126x::fixedPacketLengthMode()'],['../class_s_x127x.html#aaf8ce9f09d0f46a76a5e251786b6de7f',1,'SX127x::fixedPacketLengthMode()']]], + ['flipbits_119',['flipBits',['../class_module.html#a7f5fd7409f21d33a16ea1de589962ae6',1,'Module']]], + ['flipbits16_120',['flipBits16',['../class_module.html#a160006371be8e121a8a54cc4462b3a72',1,'Module']]], + ['forceldro_121',['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()']]], + ['freq_122',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]], + ['fsk4client_123',['FSK4Client',['../class_f_s_k4_client.html',1,'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/all_6.js b/search/all_6.js index f7585b7d..c150b9b2 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -1,36 +1,36 @@ var searchData= [ - ['get_120',['get',['../class_h_t_t_p_client.html#abc505d06d29fdc774d27c163e0be7ff8',1,'HTTPClient::get(String &url, String &response)'],['../class_h_t_t_p_client.html#a7ae493bf7db12ca2201cd6cead54c64f',1,'HTTPClient::get(const char *url, String &response)']]], - ['getafcerror_121',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], - ['getchannelscanresult_122',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]], - ['getchipversion_123',['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_124',['getCs',['../class_module.html#ae53e355a77f2b7ce6473c62ac5f37334',1,'Module']]], - ['getcurrentlimit_125',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], - ['getdatarate_126',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()']]], - ['getfreqstep_127',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], - ['getfrequencyerror_128',['getFrequencyError',['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x']]], - ['getgpio_129',['getGpio',['../class_module.html#aeb4c7447372d56a7cae6db91994aacfc',1,'Module']]], - ['getirq_130',['getIrq',['../class_module.html#a8c7f17a63b67117d953f1ba990b17f80',1,'Module']]], - ['getirqflags_131',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], - ['getlqi_132',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], - ['getmodemstatus_133',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], - ['getnumbytes_134',['getNumBytes',['../class_e_s_p8266.html#ac463b6a80cdc52e7db50b1f6760cec3f',1,'ESP8266::getNumBytes()'],['../class_transport_layer.html#a730e6671632844b1effc114e5c7d95c8',1,'TransportLayer::getNumBytes()']]], - ['getpacketdata_135',['getPacketData',['../class_x_bee.html#ab911ae5476a3a7c89dbac46adc1c843b',1,'XBee']]], - ['getpacketlength_136',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7',1,'PhysicalLayer::getPacketLength()']]], - ['getpacketsource_137',['getPacketSource',['../class_x_bee.html#abcffe611d9a823d66a8a2c12720ff70b',1,'XBee']]], - ['getpictureheight_138',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], - ['getpromiscuousmode_139',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], - ['getrangingresult_140',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_141',['getRSSI',['../class_c_c1101.html#a48fd0452d6f7d7d51ea7d23b2dbe1551',1,'CC1101::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()']]], - ['getrssiinst_142',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]], - ['getrst_143',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]], - ['getrx_144',['getRx',['../class_module.html#a5d66f76c11ac91a35a3a1d9647aa6f6d',1,'Module']]], - ['getsnr_145',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()']]], - ['getspi_146',['getSpi',['../class_module.html#ae867ebfef795d63d1df234394510b96e',1,'Module']]], - ['getspisettings_147',['getSpiSettings',['../class_module.html#a7b6da4ca8fe5178617a1cc28854929a0',1,'Module']]], - ['getstatus_148',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], - ['gettemperature_149',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], - ['gettempraw_150',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], - ['gettimeonair_151',['getTimeOnAir',['../class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10',1,'SX126x::getTimeOnAir()'],['../class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232',1,'SX128x::getTimeOnAir()']]], - ['gettx_152',['getTx',['../class_module.html#a680dd2e80255cab30cbe9773bf20b390',1,'Module']]] + ['get_124',['get',['../class_h_t_t_p_client.html#abc505d06d29fdc774d27c163e0be7ff8',1,'HTTPClient::get(String &url, String &response)'],['../class_h_t_t_p_client.html#a7ae493bf7db12ca2201cd6cead54c64f',1,'HTTPClient::get(const char *url, String &response)']]], + ['getafcerror_125',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], + ['getchannelscanresult_126',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]], + ['getchipversion_127',['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_128',['getCs',['../class_module.html#ae53e355a77f2b7ce6473c62ac5f37334',1,'Module']]], + ['getcurrentlimit_129',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], + ['getdatarate_130',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()']]], + ['getfreqstep_131',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], + ['getfrequencyerror_132',['getFrequencyError',['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x']]], + ['getgpio_133',['getGpio',['../class_module.html#aeb4c7447372d56a7cae6db91994aacfc',1,'Module']]], + ['getirq_134',['getIrq',['../class_module.html#a8c7f17a63b67117d953f1ba990b17f80',1,'Module']]], + ['getirqflags_135',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], + ['getlqi_136',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], + ['getmodemstatus_137',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], + ['getnumbytes_138',['getNumBytes',['../class_e_s_p8266.html#ac463b6a80cdc52e7db50b1f6760cec3f',1,'ESP8266::getNumBytes()'],['../class_transport_layer.html#a730e6671632844b1effc114e5c7d95c8',1,'TransportLayer::getNumBytes()']]], + ['getpacketdata_139',['getPacketData',['../class_x_bee.html#ab911ae5476a3a7c89dbac46adc1c843b',1,'XBee']]], + ['getpacketlength_140',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7',1,'PhysicalLayer::getPacketLength()']]], + ['getpacketsource_141',['getPacketSource',['../class_x_bee.html#abcffe611d9a823d66a8a2c12720ff70b',1,'XBee']]], + ['getpictureheight_142',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], + ['getpromiscuousmode_143',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], + ['getrangingresult_144',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], + ['getrssi_145',['getRSSI',['../class_c_c1101.html#a48fd0452d6f7d7d51ea7d23b2dbe1551',1,'CC1101::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()']]], + ['getrssiinst_146',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]], + ['getrst_147',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]], + ['getrx_148',['getRx',['../class_module.html#a5d66f76c11ac91a35a3a1d9647aa6f6d',1,'Module']]], + ['getsnr_149',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()']]], + ['getspi_150',['getSpi',['../class_module.html#ae867ebfef795d63d1df234394510b96e',1,'Module']]], + ['getspisettings_151',['getSpiSettings',['../class_module.html#a7b6da4ca8fe5178617a1cc28854929a0',1,'Module']]], + ['getstatus_152',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], + ['gettemperature_153',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], + ['gettempraw_154',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], + ['gettimeonair_155',['getTimeOnAir',['../class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10',1,'SX126x::getTimeOnAir()'],['../class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232',1,'SX128x::getTimeOnAir()']]], + ['gettx_156',['getTx',['../class_module.html#a680dd2e80255cab30cbe9773bf20b390',1,'Module']]] ]; diff --git a/search/all_7.js b/search/all_7.js index 67315ee8..41fa3dea 100644 --- a/search/all_7.js +++ b/search/all_7.js @@ -1,7 +1,7 @@ var searchData= [ - ['hc05_153',['HC05',['../class_h_c05.html',1,'HC05'],['../class_h_c05.html#a5cc3184c58de65cbff18447c6d03de18',1,'HC05::HC05()']]], - ['height_154',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]], - ['hellclient_155',['HellClient',['../class_hell_client.html',1,'HellClient'],['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]], - ['httpclient_156',['HTTPClient',['../class_h_t_t_p_client.html',1,'HTTPClient'],['../class_h_t_t_p_client.html#a7c6fdd5681e55437ebddaac785f35557',1,'HTTPClient::HTTPClient()']]] + ['hc05_157',['HC05',['../class_h_c05.html',1,'HC05'],['../class_h_c05.html#a5cc3184c58de65cbff18447c6d03de18',1,'HC05::HC05()']]], + ['height_158',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]], + ['hellclient_159',['HellClient',['../class_hell_client.html',1,'HellClient'],['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]], + ['httpclient_160',['HTTPClient',['../class_h_t_t_p_client.html',1,'HTTPClient'],['../class_h_t_t_p_client.html#a7c6fdd5681e55437ebddaac785f35557',1,'HTTPClient::HTTPClient()']]] ]; diff --git a/search/all_8.js b/search/all_8.js index 56573c0d..8f07a963 100644 --- a/search/all_8.js +++ b/search/all_8.js @@ -1,12 +1,12 @@ var searchData= [ - ['idle_157',['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()']]], - ['implicitheader_158',['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()']]], - ['info_159',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], - ['infolen_160',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]], - ['init_161',['init',['../class_module.html#adb22d89bc5f532f1d056d9a9f3a6589c',1,'Module']]], - ['invertiq_162',['invertIQ',['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x']]], - ['iscarrierdetected_163',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], - ['iserial_164',['ISerial',['../class_i_serial.html',1,'']]], - ['ita2string_165',['ITA2String',['../class_i_t_a2_string.html',1,'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)']]] + ['idle_161',['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()']]], + ['implicitheader_162',['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()']]], + ['info_163',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], + ['infolen_164',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]], + ['init_165',['init',['../class_module.html#adb22d89bc5f532f1d056d9a9f3a6589c',1,'Module']]], + ['invertiq_166',['invertIQ',['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x']]], + ['iscarrierdetected_167',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], + ['iserial_168',['ISerial',['../class_i_serial.html',1,'']]], + ['ita2string_169',['ITA2String',['../class_i_t_a2_string.html',1,'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)']]] ]; diff --git a/search/all_9.js b/search/all_9.js index 7f8d9b69..3168979c 100644 --- a/search/all_9.js +++ b/search/all_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['jdy08_166',['JDY08',['../class_j_d_y08.html',1,'JDY08'],['../class_j_d_y08.html#a9e2895c29cbbb30bc49aa2b3b9d2c4d6',1,'JDY08::JDY08()']]], - ['join_167',['join',['../class_e_s_p8266.html#abb39d205464bc4789c87120564258432',1,'ESP8266']]] + ['jdy08_170',['JDY08',['../class_j_d_y08.html',1,'JDY08'],['../class_j_d_y08.html#a9e2895c29cbbb30bc49aa2b3b9d2c4d6',1,'JDY08::JDY08()']]], + ['join_171',['join',['../class_e_s_p8266.html#abb39d205464bc4789c87120564258432',1,'ESP8266']]] ]; diff --git a/search/all_a.js b/search/all_a.js index a4c418b3..a74594ad 100644 --- a/search/all_a.js +++ b/search/all_a.js @@ -1,7 +1,7 @@ var searchData= [ - ['len_168',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]], - ['length_169',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], - ['llcc68_170',['LLCC68',['../class_l_l_c_c68.html',1,'LLCC68'],['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68::LLCC68()']]], - ['lora_5fdetected_171',['LORA_DETECTED',['../group__status__codes.html#gacfda389267c561c2ab2ac5c368954d0c',1,'TypeDef.h']]] + ['len_172',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]], + ['length_173',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], + ['llcc68_174',['LLCC68',['../class_l_l_c_c68.html',1,'LLCC68'],['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68::LLCC68()']]], + ['lora_5fdetected_175',['LORA_DETECTED',['../group__status__codes.html#gacfda389267c561c2ab2ac5c368954d0c',1,'TypeDef.h']]] ]; diff --git a/search/all_b.js b/search/all_b.js index a2e19071..81edd22d 100644 --- a/search/all_b.js +++ b/search/all_b.js @@ -1,12 +1,12 @@ var searchData= [ - ['micros_172',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]], - ['millis_173',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]], - ['module_174',['Module',['../class_module.html',1,'Module'],['../class_module.html#a06b2e1f1eb9e07a280e55f517f2fab38',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst)'],['../class_module.html#ae8709b81f592a23ebd72ba3fd8066b0f',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio)'],['../class_module.html#ac65f3d9e022b3284134ced1c20bcff09',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, SPIClass &spi, SPISettings spiSettings)'],['../class_module.html#a53d99944916b750dc1c69890f370680e',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio, SPIClass &spi, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0))'],['../class_module.html#a56456ade4eeffa2c566a6fc3fd098276',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE rx, RADIOLIB_PIN_TYPE tx, SPIClass &spi=RADIOLIB_DEFAULT_SPI, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0), HardwareSerial *serial=nullptr)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], - ['moduleserial_175',['ModuleSerial',['../class_module.html#a99556decb983f682b98220ae5434b004',1,'Module']]], - ['morseclient_176',['MorseClient',['../class_morse_client.html',1,'MorseClient'],['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]], - ['mqtt_5fsubs_5fsuccess_5fqos_5f0_177',['MQTT_SUBS_SUCCESS_QOS_0',['../group__status__codes.html#ga5bbfeb0ed4631a9a1f37b62d13818340',1,'TypeDef.h']]], - ['mqtt_5fsubs_5fsuccess_5fqos_5f1_178',['MQTT_SUBS_SUCCESS_QOS_1',['../group__status__codes.html#ga0bd24d55b395964ae24a5fb3172fdf0c',1,'TypeDef.h']]], - ['mqtt_5fsubs_5fsuccess_5fqos_5f2_179',['MQTT_SUBS_SUCCESS_QOS_2',['../group__status__codes.html#ga4e88f8dfe1877017cb03e2fa1e6193f6',1,'TypeDef.h']]], - ['mqttclient_180',['MQTTClient',['../class_m_q_t_t_client.html',1,'MQTTClient'],['../class_m_q_t_t_client.html#a6ecdbc80b76ae32b926e84af620dacb6',1,'MQTTClient::MQTTClient()']]] + ['micros_176',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]], + ['millis_177',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]], + ['module_178',['Module',['../class_module.html',1,'Module'],['../class_module.html#a06b2e1f1eb9e07a280e55f517f2fab38',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst)'],['../class_module.html#ae8709b81f592a23ebd72ba3fd8066b0f',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio)'],['../class_module.html#ac65f3d9e022b3284134ced1c20bcff09',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, SPIClass &spi, SPISettings spiSettings)'],['../class_module.html#a53d99944916b750dc1c69890f370680e',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio, SPIClass &spi, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0))'],['../class_module.html#a56456ade4eeffa2c566a6fc3fd098276',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE rx, RADIOLIB_PIN_TYPE tx, SPIClass &spi=RADIOLIB_DEFAULT_SPI, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0), HardwareSerial *serial=nullptr)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], + ['moduleserial_179',['ModuleSerial',['../class_module.html#a99556decb983f682b98220ae5434b004',1,'Module']]], + ['morseclient_180',['MorseClient',['../class_morse_client.html',1,'MorseClient'],['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]], + ['mqtt_5fsubs_5fsuccess_5fqos_5f0_181',['MQTT_SUBS_SUCCESS_QOS_0',['../group__status__codes.html#ga5bbfeb0ed4631a9a1f37b62d13818340',1,'TypeDef.h']]], + ['mqtt_5fsubs_5fsuccess_5fqos_5f1_182',['MQTT_SUBS_SUCCESS_QOS_1',['../group__status__codes.html#ga0bd24d55b395964ae24a5fb3172fdf0c',1,'TypeDef.h']]], + ['mqtt_5fsubs_5fsuccess_5fqos_5f2_183',['MQTT_SUBS_SUCCESS_QOS_2',['../group__status__codes.html#ga4e88f8dfe1877017cb03e2fa1e6193f6',1,'TypeDef.h']]], + ['mqttclient_184',['MQTTClient',['../class_m_q_t_t_client.html',1,'MQTTClient'],['../class_m_q_t_t_client.html#a6ecdbc80b76ae32b926e84af620dacb6',1,'MQTTClient::MQTTClient()']]] ]; diff --git a/search/all_c.js b/search/all_c.js index 4b600cb0..eaefd582 100644 --- a/search/all_c.js +++ b/search/all_c.js @@ -1,7 +1,7 @@ var searchData= [ - ['notone_181',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#ade91356bb158bbc820d28855dd5818d1',1,'AFSKClient::noTone()']]], - ['nrf24_182',['nRF24',['../classn_r_f24.html',1,'nRF24'],['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24::nRF24()']]], - ['numrepeaters_183',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], - ['numtones_184',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]] + ['notone_185',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#ade91356bb158bbc820d28855dd5818d1',1,'AFSKClient::noTone()']]], + ['nrf24_186',['nRF24',['../classn_r_f24.html',1,'nRF24'],['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24::nRF24()']]], + ['numrepeaters_187',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], + ['numtones_188',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]] ]; diff --git a/search/all_d.js b/search/all_d.js index f127f4c3..5e6be945 100644 --- a/search/all_d.js +++ b/search/all_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['opentransportconnection_185',['openTransportConnection',['../class_e_s_p8266.html#a535f4b7a8ef104b208753f9361568d20',1,'ESP8266::openTransportConnection()'],['../class_transport_layer.html#a36b1ceebca3643fb475607d3d92f5d63',1,'TransportLayer::openTransportConnection()']]], - ['operator_3d_186',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]] + ['opentransportconnection_189',['openTransportConnection',['../class_e_s_p8266.html#a535f4b7a8ef104b208753f9361568d20',1,'ESP8266::openTransportConnection()'],['../class_transport_layer.html#a36b1ceebca3643fb475607d3d92f5d63',1,'TransportLayer::openTransportConnection()']]], + ['operator_3d_190',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]] ]; diff --git a/search/all_e.js b/search/all_e.js index 535ddadd..ee57850d 100644 --- a/search/all_e.js +++ b/search/all_e.js @@ -1,12 +1,12 @@ var searchData= [ - ['packetmode_187',['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()']]], - ['physicallayer_188',['PhysicalLayer',['../class_physical_layer.html',1,'PhysicalLayer'],['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer::PhysicalLayer()']]], - ['ping_189',['ping',['../class_m_q_t_t_client.html#aea3fb930ed43a0b3122ccc90efebb99d',1,'MQTTClient']]], - ['pinmode_190',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]], - ['post_191',['post',['../class_h_t_t_p_client.html#ac1119b889b6fed7bd4d119d3e4842acb',1,'HTTPClient']]], - ['preamble_5fdetected_192',['PREAMBLE_DETECTED',['../group__status__codes.html#gae20ae543b703697fa7bebfcec73617ee',1,'TypeDef.h']]], - ['printglyph_193',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]], - ['protocolid_194',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]], - ['publish_195',['publish',['../class_m_q_t_t_client.html#ace3ee45313dea2f853207accf20b7c87',1,'MQTTClient::publish(String &topic, String &message)'],['../class_m_q_t_t_client.html#ab59a1174098dfdf514d8ec6d0bd9d015',1,'MQTTClient::publish(const char *topic, const char *message)']]] + ['packetmode_191',['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()']]], + ['physicallayer_192',['PhysicalLayer',['../class_physical_layer.html',1,'PhysicalLayer'],['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer::PhysicalLayer()']]], + ['ping_193',['ping',['../class_m_q_t_t_client.html#aea3fb930ed43a0b3122ccc90efebb99d',1,'MQTTClient']]], + ['pinmode_194',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]], + ['post_195',['post',['../class_h_t_t_p_client.html#ac1119b889b6fed7bd4d119d3e4842acb',1,'HTTPClient']]], + ['preamble_5fdetected_196',['PREAMBLE_DETECTED',['../group__status__codes.html#gae20ae543b703697fa7bebfcec73617ee',1,'TypeDef.h']]], + ['printglyph_197',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]], + ['protocolid_198',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]], + ['publish_199',['publish',['../class_m_q_t_t_client.html#ace3ee45313dea2f853207accf20b7c87',1,'MQTTClient::publish(String &topic, String &message)'],['../class_m_q_t_t_client.html#ab59a1174098dfdf514d8ec6d0bd9d015',1,'MQTTClient::publish(const char *topic, const char *message)']]] ]; diff --git a/search/all_f.js b/search/all_f.js index b17ff973..f9b68882 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -1,44 +1,44 @@ var searchData= [ - ['radiolib_20documentation_196',['RadioLib Documentation',['../index.html',1,'']]], - ['radiolib_5fencoding_5fmanchester_197',['RADIOLIB_ENCODING_MANCHESTER',['../group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8',1,'TypeDef.h']]], - ['radiolib_5fencoding_5fnrz_198',['RADIOLIB_ENCODING_NRZ',['../group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb',1,'TypeDef.h']]], - ['radiolib_5fencoding_5fwhitening_199',['RADIOLIB_ENCODING_WHITENING',['../group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f0_5f3_200',['RADIOLIB_SHAPING_0_3',['../group__config__shaping.html#ga6a562fca42573d39e4a214c293756f64',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f0_5f5_201',['RADIOLIB_SHAPING_0_5',['../group__config__shaping.html#gaa778d14c29d21fe329137a28a3f54a5d',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f0_5f7_202',['RADIOLIB_SHAPING_0_7',['../group__config__shaping.html#ga677dde0ea956d5e99af30cf501a727ad',1,'TypeDef.h']]], - ['radiolib_5fshaping_5f1_5f0_203',['RADIOLIB_SHAPING_1_0',['../group__config__shaping.html#ga80e2185af1123c7632aa40cad1691e6d',1,'TypeDef.h']]], - ['radiolib_5fshaping_5fnone_204',['RADIOLIB_SHAPING_NONE',['../group__config__shaping.html#gaa9495bc5eb54df04f2ed7b1ccbb4f277',1,'TypeDef.h']]], - ['radiolib_5fuart_5fflow_5fboth_205',['RADIOLIB_UART_FLOW_BOTH',['../group__uart__config.html#ga939e120f07199ce8e21ed2e22d200dab',1,'TypeDef.h']]], - ['radiolib_5fuart_5fflow_5fcts_206',['RADIOLIB_UART_FLOW_CTS',['../group__uart__config.html#gab526b0043d5cec8d83ee4ea164698548',1,'TypeDef.h']]], - ['radiolib_5fuart_5fflow_5fnone_207',['RADIOLIB_UART_FLOW_NONE',['../group__uart__config.html#ga8b65a960ee0f2aa0192ade54b78057d9',1,'TypeDef.h']]], - ['radiolib_5fuart_5fflow_5frts_208',['RADIOLIB_UART_FLOW_RTS',['../group__uart__config.html#gae077d53c5c120a989b1f285f183f1b78',1,'TypeDef.h']]], - ['radiolib_5fuart_5fparity_5feven_209',['RADIOLIB_UART_PARITY_EVEN',['../group__uart__config.html#ga4af49de10b0a0f569be3de38cab8b4bb',1,'TypeDef.h']]], - ['radiolib_5fuart_5fparity_5fnone_210',['RADIOLIB_UART_PARITY_NONE',['../group__uart__config.html#ga3b50652499c533c7b58b917e3f2cf528',1,'TypeDef.h']]], - ['radiolib_5fuart_5fparity_5fodd_211',['RADIOLIB_UART_PARITY_ODD',['../group__uart__config.html#gaab1a378c99156fb89223c0b389bbe1db',1,'TypeDef.h']]], - ['radiolib_5fuart_5fstopbit_5f1_212',['RADIOLIB_UART_STOPBIT_1',['../group__uart__config.html#ga2b4fdd9968a0a46909c7c018b0faa927',1,'TypeDef.h']]], - ['radiolib_5fuart_5fstopbit_5f1_5f5_213',['RADIOLIB_UART_STOPBIT_1_5',['../group__uart__config.html#gad418f0922126e27279d1a374fc63e036',1,'TypeDef.h']]], - ['radiolib_5fuart_5fstopbit_5f2_214',['RADIOLIB_UART_STOPBIT_2',['../group__uart__config.html#ga65930f2e5d365bb0e778b62b2840715f',1,'TypeDef.h']]], - ['radiolib_5fuse_5fspi_215',['RADIOLIB_USE_SPI',['../group__shield__config.html#ga19ca32b49e830d8a5b37e670ae56c78f',1,'TypeDef.h']]], - ['radiolib_5fuse_5fuart_216',['RADIOLIB_USE_UART',['../group__shield__config.html#ga9d666489c03cb4d7fda0d47ad6c8ea3e',1,'TypeDef.h']]], - ['random_217',['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_218',['randomByte',['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a34543b885aa57ade08a4c659991e523e',1,'PhysicalLayer::randomByte()']]], - ['range_219',['range',['../class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c',1,'SX1280']]], - ['rcvseqnumber_220',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], - ['read_221',['read',['../class_physical_layer.html#a929662904e9af2611e098dc13b91c977',1,'PhysicalLayer']]], - ['readbit_222',['readBit',['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()'],['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_physical_layer.html#a9b720e7776ad7ea805932578907b0058',1,'PhysicalLayer::readBit()']]], - ['readdata_223',['readData',['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::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()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632',1,'PhysicalLayer::readData(uint8_t *data, size_t len)=0']]], - ['receive_224',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_e_s_p8266.html#aa79f841de9ae9c5d6057e89a9f1721ea',1,'ESP8266::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'PhysicalLayer::receive(uint8_t *data, size_t len)=0'],['../class_transport_layer.html#a846492348f71d7328834076c9046dc3f',1,'TransportLayer::receive()']]], - ['receivedirect_225',['receiveDirect',['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#a46b22145b33e97cf6065ed826799b6b4',1,'PhysicalLayer::receiveDirect()']]], - ['repeatercallsigns_226',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], - ['repeaterssids_227',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], - ['reset_228',['reset',['../class_e_s_p8266.html#aee0279b476a83a55f54ab22e6d8f3904',1,'ESP8266::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()'],['../class_x_bee_serial.html#a1870183689e2a2a17aa36e0d6d30ea3f',1,'XBeeSerial::reset()'],['../class_x_bee.html#a10a4b3df9d5980e89a126848ec31613c',1,'XBee::reset()']]], - ['rf69_229',['RF69',['../class_r_f69.html',1,'RF69'],['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()']]], - ['rfm22_230',['RFM22',['../class_r_f_m22.html',1,'']]], - ['rfm23_231',['RFM23',['../class_r_f_m23.html',1,'']]], - ['rfm95_232',['RFM95',['../class_r_f_m95.html',1,'RFM95'],['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95::RFM95()']]], - ['rfm96_233',['RFM96',['../class_r_f_m96.html',1,'RFM96'],['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96::RFM96()']]], - ['rfm97_234',['RFM97',['../class_r_f_m97.html',1,'RFM97'],['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97::RFM97()']]], - ['rfm98_235',['RFM98',['../class_r_f_m98.html',1,'']]], - ['rttyclient_236',['RTTYClient',['../class_r_t_t_y_client.html',1,'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)']]] + ['radiolib_20documentation_200',['RadioLib Documentation',['../index.html',1,'']]], + ['radiolib_5fencoding_5fmanchester_201',['RADIOLIB_ENCODING_MANCHESTER',['../group__config__encoding.html#gaffff394bbc47c05ed1bfde2e16a596e8',1,'TypeDef.h']]], + ['radiolib_5fencoding_5fnrz_202',['RADIOLIB_ENCODING_NRZ',['../group__config__encoding.html#ga0253ae0c289d950e36106102a983f9cb',1,'TypeDef.h']]], + ['radiolib_5fencoding_5fwhitening_203',['RADIOLIB_ENCODING_WHITENING',['../group__config__encoding.html#ga0bfc51be5abf0b434a49540bddb65328',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f0_5f3_204',['RADIOLIB_SHAPING_0_3',['../group__config__shaping.html#ga6a562fca42573d39e4a214c293756f64',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f0_5f5_205',['RADIOLIB_SHAPING_0_5',['../group__config__shaping.html#gaa778d14c29d21fe329137a28a3f54a5d',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f0_5f7_206',['RADIOLIB_SHAPING_0_7',['../group__config__shaping.html#ga677dde0ea956d5e99af30cf501a727ad',1,'TypeDef.h']]], + ['radiolib_5fshaping_5f1_5f0_207',['RADIOLIB_SHAPING_1_0',['../group__config__shaping.html#ga80e2185af1123c7632aa40cad1691e6d',1,'TypeDef.h']]], + ['radiolib_5fshaping_5fnone_208',['RADIOLIB_SHAPING_NONE',['../group__config__shaping.html#gaa9495bc5eb54df04f2ed7b1ccbb4f277',1,'TypeDef.h']]], + ['radiolib_5fuart_5fflow_5fboth_209',['RADIOLIB_UART_FLOW_BOTH',['../group__uart__config.html#ga939e120f07199ce8e21ed2e22d200dab',1,'TypeDef.h']]], + ['radiolib_5fuart_5fflow_5fcts_210',['RADIOLIB_UART_FLOW_CTS',['../group__uart__config.html#gab526b0043d5cec8d83ee4ea164698548',1,'TypeDef.h']]], + ['radiolib_5fuart_5fflow_5fnone_211',['RADIOLIB_UART_FLOW_NONE',['../group__uart__config.html#ga8b65a960ee0f2aa0192ade54b78057d9',1,'TypeDef.h']]], + ['radiolib_5fuart_5fflow_5frts_212',['RADIOLIB_UART_FLOW_RTS',['../group__uart__config.html#gae077d53c5c120a989b1f285f183f1b78',1,'TypeDef.h']]], + ['radiolib_5fuart_5fparity_5feven_213',['RADIOLIB_UART_PARITY_EVEN',['../group__uart__config.html#ga4af49de10b0a0f569be3de38cab8b4bb',1,'TypeDef.h']]], + ['radiolib_5fuart_5fparity_5fnone_214',['RADIOLIB_UART_PARITY_NONE',['../group__uart__config.html#ga3b50652499c533c7b58b917e3f2cf528',1,'TypeDef.h']]], + ['radiolib_5fuart_5fparity_5fodd_215',['RADIOLIB_UART_PARITY_ODD',['../group__uart__config.html#gaab1a378c99156fb89223c0b389bbe1db',1,'TypeDef.h']]], + ['radiolib_5fuart_5fstopbit_5f1_216',['RADIOLIB_UART_STOPBIT_1',['../group__uart__config.html#ga2b4fdd9968a0a46909c7c018b0faa927',1,'TypeDef.h']]], + ['radiolib_5fuart_5fstopbit_5f1_5f5_217',['RADIOLIB_UART_STOPBIT_1_5',['../group__uart__config.html#gad418f0922126e27279d1a374fc63e036',1,'TypeDef.h']]], + ['radiolib_5fuart_5fstopbit_5f2_218',['RADIOLIB_UART_STOPBIT_2',['../group__uart__config.html#ga65930f2e5d365bb0e778b62b2840715f',1,'TypeDef.h']]], + ['radiolib_5fuse_5fspi_219',['RADIOLIB_USE_SPI',['../group__shield__config.html#ga19ca32b49e830d8a5b37e670ae56c78f',1,'TypeDef.h']]], + ['radiolib_5fuse_5fuart_220',['RADIOLIB_USE_UART',['../group__shield__config.html#ga9d666489c03cb4d7fda0d47ad6c8ea3e',1,'TypeDef.h']]], + ['random_221',['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_222',['randomByte',['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a34543b885aa57ade08a4c659991e523e',1,'PhysicalLayer::randomByte()']]], + ['range_223',['range',['../class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c',1,'SX1280']]], + ['rcvseqnumber_224',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], + ['read_225',['read',['../class_physical_layer.html#a929662904e9af2611e098dc13b91c977',1,'PhysicalLayer']]], + ['readbit_226',['readBit',['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()'],['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_physical_layer.html#a9b720e7776ad7ea805932578907b0058',1,'PhysicalLayer::readBit()']]], + ['readdata_227',['readData',['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::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()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632',1,'PhysicalLayer::readData(uint8_t *data, size_t len)=0']]], + ['receive_228',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_e_s_p8266.html#aa79f841de9ae9c5d6057e89a9f1721ea',1,'ESP8266::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'PhysicalLayer::receive(uint8_t *data, size_t len)=0'],['../class_transport_layer.html#a846492348f71d7328834076c9046dc3f',1,'TransportLayer::receive()']]], + ['receivedirect_229',['receiveDirect',['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#a46b22145b33e97cf6065ed826799b6b4',1,'PhysicalLayer::receiveDirect()']]], + ['repeatercallsigns_230',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], + ['repeaterssids_231',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]], + ['reset_232',['reset',['../class_e_s_p8266.html#aee0279b476a83a55f54ab22e6d8f3904',1,'ESP8266::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()'],['../class_x_bee_serial.html#a1870183689e2a2a17aa36e0d6d30ea3f',1,'XBeeSerial::reset()'],['../class_x_bee.html#a10a4b3df9d5980e89a126848ec31613c',1,'XBee::reset()']]], + ['rf69_233',['RF69',['../class_r_f69.html',1,'RF69'],['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69::RF69()']]], + ['rfm22_234',['RFM22',['../class_r_f_m22.html',1,'']]], + ['rfm23_235',['RFM23',['../class_r_f_m23.html',1,'']]], + ['rfm95_236',['RFM95',['../class_r_f_m95.html',1,'RFM95'],['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95::RFM95()']]], + ['rfm96_237',['RFM96',['../class_r_f_m96.html',1,'RFM96'],['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96::RFM96()']]], + ['rfm97_238',['RFM97',['../class_r_f_m97.html',1,'RFM97'],['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97::RFM97()']]], + ['rfm98_239',['RFM98',['../class_r_f_m98.html',1,'']]], + ['rttyclient_240',['RTTYClient',['../class_r_t_t_y_client.html',1,'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/classes_0.js b/search/classes_0.js index 491dc335..e9ea9333 100644 --- a/search/classes_0.js +++ b/search/classes_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['afskclient_368',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]], - ['ax25client_369',['AX25Client',['../class_a_x25_client.html',1,'']]], - ['ax25frame_370',['AX25Frame',['../class_a_x25_frame.html',1,'']]] + ['afskclient_373',['AFSKClient',['../class_a_f_s_k_client.html',1,'']]], + ['ax25client_374',['AX25Client',['../class_a_x25_client.html',1,'']]], + ['ax25frame_375',['AX25Frame',['../class_a_x25_frame.html',1,'']]] ]; diff --git a/search/classes_1.js b/search/classes_1.js index 19acc340..91f5e28b 100644 --- a/search/classes_1.js +++ b/search/classes_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['cc1101_371',['CC1101',['../class_c_c1101.html',1,'']]] + ['cc1101_376',['CC1101',['../class_c_c1101.html',1,'']]] ]; diff --git a/search/classes_2.js b/search/classes_2.js index 14b70f5b..1fe87b7d 100644 --- a/search/classes_2.js +++ b/search/classes_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['esp8266_372',['ESP8266',['../class_e_s_p8266.html',1,'']]] + ['esp8266_377',['ESP8266',['../class_e_s_p8266.html',1,'']]] ]; diff --git a/search/classes_3.js b/search/classes_3.js index cb62cfb7..ae3e8a66 100644 --- a/search/classes_3.js +++ b/search/classes_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['fsk4client_373',['FSK4Client',['../class_f_s_k4_client.html',1,'']]] + ['fsk4client_378',['FSK4Client',['../class_f_s_k4_client.html',1,'']]] ]; diff --git a/search/classes_4.js b/search/classes_4.js index 64f8f750..5e418b04 100644 --- a/search/classes_4.js +++ b/search/classes_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['hc05_374',['HC05',['../class_h_c05.html',1,'']]], - ['hellclient_375',['HellClient',['../class_hell_client.html',1,'']]], - ['httpclient_376',['HTTPClient',['../class_h_t_t_p_client.html',1,'']]] + ['hc05_379',['HC05',['../class_h_c05.html',1,'']]], + ['hellclient_380',['HellClient',['../class_hell_client.html',1,'']]], + ['httpclient_381',['HTTPClient',['../class_h_t_t_p_client.html',1,'']]] ]; diff --git a/search/classes_5.js b/search/classes_5.js index b6fda98f..f6ebeff2 100644 --- a/search/classes_5.js +++ b/search/classes_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['iserial_377',['ISerial',['../class_i_serial.html',1,'']]], - ['ita2string_378',['ITA2String',['../class_i_t_a2_string.html',1,'']]] + ['iserial_382',['ISerial',['../class_i_serial.html',1,'']]], + ['ita2string_383',['ITA2String',['../class_i_t_a2_string.html',1,'']]] ]; diff --git a/search/classes_6.js b/search/classes_6.js index a5a19a10..ced3f401 100644 --- a/search/classes_6.js +++ b/search/classes_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['jdy08_379',['JDY08',['../class_j_d_y08.html',1,'']]] + ['jdy08_384',['JDY08',['../class_j_d_y08.html',1,'']]] ]; diff --git a/search/classes_7.js b/search/classes_7.js index 4035b078..6330df99 100644 --- a/search/classes_7.js +++ b/search/classes_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['llcc68_380',['LLCC68',['../class_l_l_c_c68.html',1,'']]] + ['llcc68_385',['LLCC68',['../class_l_l_c_c68.html',1,'']]] ]; diff --git a/search/classes_8.js b/search/classes_8.js index 78e04a5c..1f2111f3 100644 --- a/search/classes_8.js +++ b/search/classes_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['module_381',['Module',['../class_module.html',1,'']]], - ['morseclient_382',['MorseClient',['../class_morse_client.html',1,'']]], - ['mqttclient_383',['MQTTClient',['../class_m_q_t_t_client.html',1,'']]] + ['module_386',['Module',['../class_module.html',1,'']]], + ['morseclient_387',['MorseClient',['../class_morse_client.html',1,'']]], + ['mqttclient_388',['MQTTClient',['../class_m_q_t_t_client.html',1,'']]] ]; diff --git a/search/classes_9.js b/search/classes_9.js index bf052bfa..f4779a6d 100644 --- a/search/classes_9.js +++ b/search/classes_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['nrf24_384',['nRF24',['../classn_r_f24.html',1,'']]] + ['nrf24_389',['nRF24',['../classn_r_f24.html',1,'']]] ]; diff --git a/search/classes_a.js b/search/classes_a.js index fe4e2112..92cf1738 100644 --- a/search/classes_a.js +++ b/search/classes_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['physicallayer_385',['PhysicalLayer',['../class_physical_layer.html',1,'']]] + ['physicallayer_390',['PhysicalLayer',['../class_physical_layer.html',1,'']]] ]; diff --git a/search/classes_b.js b/search/classes_b.js index 3f5291af..49683db3 100644 --- a/search/classes_b.js +++ b/search/classes_b.js @@ -1,11 +1,11 @@ var searchData= [ - ['rf69_386',['RF69',['../class_r_f69.html',1,'']]], - ['rfm22_387',['RFM22',['../class_r_f_m22.html',1,'']]], - ['rfm23_388',['RFM23',['../class_r_f_m23.html',1,'']]], - ['rfm95_389',['RFM95',['../class_r_f_m95.html',1,'']]], - ['rfm96_390',['RFM96',['../class_r_f_m96.html',1,'']]], - ['rfm97_391',['RFM97',['../class_r_f_m97.html',1,'']]], - ['rfm98_392',['RFM98',['../class_r_f_m98.html',1,'']]], - ['rttyclient_393',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]] + ['rf69_391',['RF69',['../class_r_f69.html',1,'']]], + ['rfm22_392',['RFM22',['../class_r_f_m22.html',1,'']]], + ['rfm23_393',['RFM23',['../class_r_f_m23.html',1,'']]], + ['rfm95_394',['RFM95',['../class_r_f_m95.html',1,'']]], + ['rfm96_395',['RFM96',['../class_r_f_m96.html',1,'']]], + ['rfm97_396',['RFM97',['../class_r_f_m97.html',1,'']]], + ['rfm98_397',['RFM98',['../class_r_f_m98.html',1,'']]], + ['rttyclient_398',['RTTYClient',['../class_r_t_t_y_client.html',1,'']]] ]; diff --git a/search/classes_c.js b/search/classes_c.js index e5539696..93d4a8f2 100644 --- a/search/classes_c.js +++ b/search/classes_c.js @@ -1,26 +1,26 @@ var searchData= [ - ['serialmodule_394',['SerialModule',['../class_serial_module.html',1,'']]], - ['si4430_395',['Si4430',['../class_si4430.html',1,'']]], - ['si4431_396',['Si4431',['../class_si4431.html',1,'']]], - ['si4432_397',['Si4432',['../class_si4432.html',1,'']]], - ['si443x_398',['Si443x',['../class_si443x.html',1,'']]], - ['sstvclient_399',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]], - ['sstvmode_5ft_400',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], - ['sx1231_401',['SX1231',['../class_s_x1231.html',1,'']]], - ['sx1261_402',['SX1261',['../class_s_x1261.html',1,'']]], - ['sx1262_403',['SX1262',['../class_s_x1262.html',1,'']]], - ['sx1268_404',['SX1268',['../class_s_x1268.html',1,'']]], - ['sx126x_405',['SX126x',['../class_s_x126x.html',1,'']]], - ['sx1272_406',['SX1272',['../class_s_x1272.html',1,'']]], - ['sx1273_407',['SX1273',['../class_s_x1273.html',1,'']]], - ['sx1276_408',['SX1276',['../class_s_x1276.html',1,'']]], - ['sx1277_409',['SX1277',['../class_s_x1277.html',1,'']]], - ['sx1278_410',['SX1278',['../class_s_x1278.html',1,'']]], - ['sx1279_411',['SX1279',['../class_s_x1279.html',1,'']]], - ['sx127x_412',['SX127x',['../class_s_x127x.html',1,'']]], - ['sx1280_413',['SX1280',['../class_s_x1280.html',1,'']]], - ['sx1281_414',['SX1281',['../class_s_x1281.html',1,'']]], - ['sx1282_415',['SX1282',['../class_s_x1282.html',1,'']]], - ['sx128x_416',['SX128x',['../class_s_x128x.html',1,'']]] + ['serialmodule_399',['SerialModule',['../class_serial_module.html',1,'']]], + ['si4430_400',['Si4430',['../class_si4430.html',1,'']]], + ['si4431_401',['Si4431',['../class_si4431.html',1,'']]], + ['si4432_402',['Si4432',['../class_si4432.html',1,'']]], + ['si443x_403',['Si443x',['../class_si443x.html',1,'']]], + ['sstvclient_404',['SSTVClient',['../class_s_s_t_v_client.html',1,'']]], + ['sstvmode_5ft_405',['SSTVMode_t',['../struct_s_s_t_v_mode__t.html',1,'']]], + ['sx1231_406',['SX1231',['../class_s_x1231.html',1,'']]], + ['sx1261_407',['SX1261',['../class_s_x1261.html',1,'']]], + ['sx1262_408',['SX1262',['../class_s_x1262.html',1,'']]], + ['sx1268_409',['SX1268',['../class_s_x1268.html',1,'']]], + ['sx126x_410',['SX126x',['../class_s_x126x.html',1,'']]], + ['sx1272_411',['SX1272',['../class_s_x1272.html',1,'']]], + ['sx1273_412',['SX1273',['../class_s_x1273.html',1,'']]], + ['sx1276_413',['SX1276',['../class_s_x1276.html',1,'']]], + ['sx1277_414',['SX1277',['../class_s_x1277.html',1,'']]], + ['sx1278_415',['SX1278',['../class_s_x1278.html',1,'']]], + ['sx1279_416',['SX1279',['../class_s_x1279.html',1,'']]], + ['sx127x_417',['SX127x',['../class_s_x127x.html',1,'']]], + ['sx1280_418',['SX1280',['../class_s_x1280.html',1,'']]], + ['sx1281_419',['SX1281',['../class_s_x1281.html',1,'']]], + ['sx1282_420',['SX1282',['../class_s_x1282.html',1,'']]], + ['sx128x_421',['SX128x',['../class_s_x128x.html',1,'']]] ]; diff --git a/search/classes_d.js b/search/classes_d.js index a365d4da..e20119e7 100644 --- a/search/classes_d.js +++ b/search/classes_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['tone_5ft_417',['tone_t',['../structtone__t.html',1,'']]], - ['transportlayer_418',['TransportLayer',['../class_transport_layer.html',1,'']]] + ['tone_5ft_422',['tone_t',['../structtone__t.html',1,'']]], + ['transportlayer_423',['TransportLayer',['../class_transport_layer.html',1,'']]] ]; diff --git a/search/classes_e.js b/search/classes_e.js index 7b5276f6..fa2d0c47 100644 --- a/search/classes_e.js +++ b/search/classes_e.js @@ -1,5 +1,5 @@ var searchData= [ - ['xbee_419',['XBee',['../class_x_bee.html',1,'']]], - ['xbeeserial_420',['XBeeSerial',['../class_x_bee_serial.html',1,'']]] + ['xbee_424',['XBee',['../class_x_bee.html',1,'']]], + ['xbeeserial_425',['XBeeSerial',['../class_x_bee_serial.html',1,'']]] ]; diff --git a/search/functions_0.js b/search/functions_0.js index 3be01df5..3f27dc99 100644 --- a/search/functions_0.js +++ b/search/functions_0.js @@ -1,13 +1,13 @@ var searchData= [ - ['afskclient_421',['AFSKClient',['../class_a_f_s_k_client.html#acfe53917bcba7f79611e01865c42fefd',1,'AFSKClient']]], - ['atemptybuffer_422',['ATemptyBuffer',['../class_module.html#ad5767216ba9340ae6d86915b12e89bd6',1,'Module']]], - ['atgetresponse_423',['ATgetResponse',['../class_module.html#ad1aadc2b52eea2bf9d26591091eec3f1',1,'Module']]], - ['atsendcommand_424',['ATsendCommand',['../class_module.html#a5c09c878b55f56990dd0c2972a3440c4',1,'Module']]], - ['atsenddata_425',['ATsendData',['../class_module.html#a623aee6405b330b7c935013ff3d01100',1,'Module']]], - ['attachinterrupt_426',['attachInterrupt',['../class_module.html#a91aaa34aecdfeaf24948551b037033be',1,'Module']]], - ['autoldro_427',['autoLDRO',['../class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c',1,'SX126x::autoLDRO()'],['../class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63',1,'SX1272::autoLDRO()'],['../class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e',1,'SX1278::autoLDRO()']]], - ['available_428',['available',['../class_x_bee.html#a5ecae4c93f7aaaf85146f75eebd38891',1,'XBee::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]], - ['ax25client_429',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a6e81e629817cdf1b377e4b4f7e4d6520',1,'AX25Client::AX25Client(AFSKClient *audio)']]], - ['ax25frame_430',['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)']]] + ['afskclient_426',['AFSKClient',['../class_a_f_s_k_client.html#acfe53917bcba7f79611e01865c42fefd',1,'AFSKClient']]], + ['atemptybuffer_427',['ATemptyBuffer',['../class_module.html#ad5767216ba9340ae6d86915b12e89bd6',1,'Module']]], + ['atgetresponse_428',['ATgetResponse',['../class_module.html#ad1aadc2b52eea2bf9d26591091eec3f1',1,'Module']]], + ['atsendcommand_429',['ATsendCommand',['../class_module.html#a5c09c878b55f56990dd0c2972a3440c4',1,'Module']]], + ['atsenddata_430',['ATsendData',['../class_module.html#a623aee6405b330b7c935013ff3d01100',1,'Module']]], + ['attachinterrupt_431',['attachInterrupt',['../class_module.html#a91aaa34aecdfeaf24948551b037033be',1,'Module']]], + ['autoldro_432',['autoLDRO',['../class_s_x126x.html#ab9ce38cfeaa36ddcc2d82b2974d7088c',1,'SX126x::autoLDRO()'],['../class_s_x1272.html#abb4bbfe8acc6026c833d267d78417b63',1,'SX1272::autoLDRO()'],['../class_s_x1278.html#ae02adcde8c2978c0d1b157729dd5df1e',1,'SX1278::autoLDRO()']]], + ['available_433',['available',['../class_x_bee.html#a5ecae4c93f7aaaf85146f75eebd38891',1,'XBee::available()'],['../class_physical_layer.html#ab57182d32646861ef0d865e2740d6b26',1,'PhysicalLayer::available()']]], + ['ax25client_434',['AX25Client',['../class_a_x25_client.html#ab074563d4d22a42d5ea9ad1693d6f373',1,'AX25Client::AX25Client(PhysicalLayer *phy)'],['../class_a_x25_client.html#a6e81e629817cdf1b377e4b4f7e4d6520',1,'AX25Client::AX25Client(AFSKClient *audio)']]], + ['ax25frame_435',['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 83bec248..4f418910 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -1,9 +1,9 @@ var searchData= [ - ['begin_431',['begin',['../class_c_c1101.html#adcf6b5c4e1a066d6b9be326a9ee04284',1,'CC1101::begin()'],['../class_e_s_p8266.html#ae25a6901976a548443e2b7d49ca94d9b',1,'ESP8266::begin()'],['../class_h_c05.html#a83cf61ee5a79c06f43861a6e5a8a15b6',1,'HC05::begin()'],['../class_j_d_y08.html#a6fca03bb9f163c16d193904beac6b0b1',1,'JDY08::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a4d0dea965aba1017a660c9478ec57560',1,'RF69::begin()'],['../class_r_f_m95.html#a9fd59fdec8591334cfa02514ca7aabf6',1,'RFM95::begin()'],['../class_r_f_m96.html#a959e10f61fd3fdfc013733bd6c081335',1,'RFM96::begin()'],['../class_si4430.html#a8e17e67d0d3dd9b478be964be8647ca7',1,'Si4430::begin()'],['../class_si4431.html#ab9d7e3e4d0191dff2a1483bcfa555ac4',1,'Si4431::begin()'],['../class_si4432.html#a0791a0d720bbe38030ba6ed95a383b71',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a20d6eb4b8f18fb7f8d02967937ec6f8e',1,'SX1231::begin()'],['../class_s_x1262.html#abb79631385e5bc3ed5b39fe33b80cc2b',1,'SX1262::begin()'],['../class_s_x1268.html#a19554c257984c0806ae95ee209dfa296',1,'SX1268::begin()'],['../class_s_x126x.html#a1b97488c6887df2e0291bba1b852605e',1,'SX126x::begin()'],['../class_s_x1272.html#aaa5a787164fb216c12b8dea4d810f7f3',1,'SX1272::begin()'],['../class_s_x1273.html#adf46338bf36c2d43e591426ae7b6082a',1,'SX1273::begin()'],['../class_s_x1276.html#af8c818f27a8b9f964cee23cc1f397f94',1,'SX1276::begin()'],['../class_s_x1277.html#aa2b5816c06cd644fd33171ee61cf325b',1,'SX1277::begin()'],['../class_s_x1278.html#af7d9dc775820f7b260b578908cea3dbe',1,'SX1278::begin()'],['../class_s_x1279.html#a86e675a0c6f5970370ae6a9b1be27167',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#a7927beac8c610dffd06cf95242706f39',1,'SX128x::begin()'],['../class_x_bee_serial.html#ac184a4dec32eaeafdb8e68079c3fd932',1,'XBeeSerial::begin()'],['../class_x_bee.html#a84b4593723cab4d5ce14e2bf4ee6dbe4',1,'XBee::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_r_t_t_y_client.html#ad8856bc336b9a70f8239084740c22c10',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c',1,'SSTVClient::begin(float base, const SSTVMode_t &mode, float correction=1.0)'],['../class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e',1,'SSTVClient::begin(const SSTVMode_t &mode, float correction=1.0)']]], - ['beginble_432',['beginBLE',['../class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c',1,'SX128x']]], - ['beginflrc_433',['beginFLRC',['../class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660',1,'SX128x']]], - ['beginfsk_434',['beginFSK',['../class_s_x1262.html#ac1da6cc500564bc257031527cc54c80b',1,'SX1262::beginFSK()'],['../class_s_x1268.html#a6523b6928ee5ed26e205b07ee4f07b60',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a2ee9fb48eeaf41876de00d3774be78cf',1,'SX1272::beginFSK()'],['../class_s_x1276.html#a4154b0ed21583ab37eaf52225d156ad8',1,'SX1276::beginFSK()'],['../class_s_x1277.html#a1205719d59b2935ae9b1c953fa23509a',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a33dc718c83c233a1f93d6bdf2ec31783',1,'SX1278::beginFSK()'],['../class_s_x1279.html#a94a6c5f49eb8f26b7eeb1d5ee258f089',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]], - ['begingfsk_435',['beginGFSK',['../class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93',1,'SX128x']]], - ['bytearr_436',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]] + ['begin_436',['begin',['../class_c_c1101.html#adcf6b5c4e1a066d6b9be326a9ee04284',1,'CC1101::begin()'],['../class_e_s_p8266.html#ae25a6901976a548443e2b7d49ca94d9b',1,'ESP8266::begin()'],['../class_h_c05.html#a83cf61ee5a79c06f43861a6e5a8a15b6',1,'HC05::begin()'],['../class_j_d_y08.html#a6fca03bb9f163c16d193904beac6b0b1',1,'JDY08::begin()'],['../classn_r_f24.html#a60eb59262c5004b587b1d8177706ff28',1,'nRF24::begin()'],['../class_r_f69.html#a4d0dea965aba1017a660c9478ec57560',1,'RF69::begin()'],['../class_r_f_m95.html#a9fd59fdec8591334cfa02514ca7aabf6',1,'RFM95::begin()'],['../class_r_f_m96.html#a959e10f61fd3fdfc013733bd6c081335',1,'RFM96::begin()'],['../class_si4430.html#a8e17e67d0d3dd9b478be964be8647ca7',1,'Si4430::begin()'],['../class_si4431.html#ab9d7e3e4d0191dff2a1483bcfa555ac4',1,'Si4431::begin()'],['../class_si4432.html#a0791a0d720bbe38030ba6ed95a383b71',1,'Si4432::begin()'],['../class_si443x.html#a453eda5436dc4dfe0dad676dc3977752',1,'Si443x::begin()'],['../class_s_x1231.html#a20d6eb4b8f18fb7f8d02967937ec6f8e',1,'SX1231::begin()'],['../class_s_x1262.html#abb79631385e5bc3ed5b39fe33b80cc2b',1,'SX1262::begin()'],['../class_s_x1268.html#a19554c257984c0806ae95ee209dfa296',1,'SX1268::begin()'],['../class_s_x126x.html#a1b97488c6887df2e0291bba1b852605e',1,'SX126x::begin()'],['../class_s_x1272.html#aaa5a787164fb216c12b8dea4d810f7f3',1,'SX1272::begin()'],['../class_s_x1273.html#adf46338bf36c2d43e591426ae7b6082a',1,'SX1273::begin()'],['../class_s_x1276.html#af8c818f27a8b9f964cee23cc1f397f94',1,'SX1276::begin()'],['../class_s_x1277.html#aa2b5816c06cd644fd33171ee61cf325b',1,'SX1277::begin()'],['../class_s_x1278.html#af7d9dc775820f7b260b578908cea3dbe',1,'SX1278::begin()'],['../class_s_x1279.html#a86e675a0c6f5970370ae6a9b1be27167',1,'SX1279::begin()'],['../class_s_x127x.html#a5da8218f69e3bf52df389a0480f8b430',1,'SX127x::begin()'],['../class_s_x128x.html#a7927beac8c610dffd06cf95242706f39',1,'SX128x::begin()'],['../class_x_bee_serial.html#ac184a4dec32eaeafdb8e68079c3fd932',1,'XBeeSerial::begin()'],['../class_x_bee.html#a84b4593723cab4d5ce14e2bf4ee6dbe4',1,'XBee::begin()'],['../class_a_f_s_k_client.html#a30b86bb7cd087b3bc3c45a011ba266c3',1,'AFSKClient::begin()'],['../class_a_x25_client.html#a38be2b9385e4804339b3e4b57b90c2ca',1,'AX25Client::begin()'],['../class_f_s_k4_client.html#a2b366b8f3c08f81431d8cc5f907652e9',1,'FSK4Client::begin()'],['../class_hell_client.html#a225775fe87f9ed3c3a04142697641242',1,'HellClient::begin()'],['../class_morse_client.html#a516f19bb51b87ead7f7ed149f2ca92cf',1,'MorseClient::begin()'],['../class_r_t_t_y_client.html#ad8856bc336b9a70f8239084740c22c10',1,'RTTYClient::begin()'],['../class_s_s_t_v_client.html#a3d85be3941250366eec2cd9a147a4f5c',1,'SSTVClient::begin(float base, const SSTVMode_t &mode, float correction=1.0)'],['../class_s_s_t_v_client.html#a8606cf73f86f6f1b29cea9ae9b46c81e',1,'SSTVClient::begin(const SSTVMode_t &mode, float correction=1.0)']]], + ['beginble_437',['beginBLE',['../class_s_x128x.html#a316340d7ba2a6e7cb5742e3ff21e728c',1,'SX128x']]], + ['beginflrc_438',['beginFLRC',['../class_s_x128x.html#ac7df67afbb0b1a88daf5ec50f3d65660',1,'SX128x']]], + ['beginfsk_439',['beginFSK',['../class_s_x1262.html#ac1da6cc500564bc257031527cc54c80b',1,'SX1262::beginFSK()'],['../class_s_x1268.html#a6523b6928ee5ed26e205b07ee4f07b60',1,'SX1268::beginFSK()'],['../class_s_x126x.html#a2e500e5b6044ccab8f6b19af4ffa917c',1,'SX126x::beginFSK()'],['../class_s_x1272.html#a2ee9fb48eeaf41876de00d3774be78cf',1,'SX1272::beginFSK()'],['../class_s_x1276.html#a4154b0ed21583ab37eaf52225d156ad8',1,'SX1276::beginFSK()'],['../class_s_x1277.html#a1205719d59b2935ae9b1c953fa23509a',1,'SX1277::beginFSK()'],['../class_s_x1278.html#a33dc718c83c233a1f93d6bdf2ec31783',1,'SX1278::beginFSK()'],['../class_s_x1279.html#a94a6c5f49eb8f26b7eeb1d5ee258f089',1,'SX1279::beginFSK()'],['../class_s_x127x.html#add78edb65673d9e88931a55b0672a9f3',1,'SX127x::beginFSK()']]], + ['begingfsk_440',['beginGFSK',['../class_s_x128x.html#a8dd8ce38bc9d0d8dbd711b373e864e93',1,'SX128x']]], + ['bytearr_441',['byteArr',['../class_i_t_a2_string.html#a3f42f7ad98473dbe36515e676622ed3d',1,'ITA2String']]] ]; diff --git a/search/functions_10.js b/search/functions_10.js index 572f2bbb..df2feebe 100644 --- a/search/functions_10.js +++ b/search/functions_10.js @@ -1,106 +1,107 @@ var searchData= [ - ['scanchannel_541',['scanChannel',['../class_s_x126x.html#ae9f24414bd684434c310df54b3558f21',1,'SX126x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]], - ['send_542',['send',['../class_e_s_p8266.html#a1caaa537edd52d1c2b7a0a25ef69c1c9',1,'ESP8266::send(const char *data) override'],['../class_e_s_p8266.html#a2f34474953b7dbe4d057c8e3f65e0dc4',1,'ESP8266::send(uint8_t *data, size_t len) override'],['../class_transport_layer.html#a1d9cb76640868aa0338b52808e4f022d',1,'TransportLayer::send(const char *data)=0'],['../class_transport_layer.html#afb001c6348bc19694090532cc5f00e52',1,'TransportLayer::send(uint8_t *data, size_t len)=0']]], - ['sendframe_543',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client']]], - ['sendheader_544',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], - ['sendline_545',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]], - ['serialmodule_546',['SerialModule',['../class_serial_module.html#a753631600e2070c57ed74e9eb296ce19',1,'SerialModule']]], - ['setaccessaddress_547',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], - ['setaddresswidth_548',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], - ['setaeskey_549',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], - ['setafc_550',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], - ['setafcagctrigger_551',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], - ['setafcbandwidth_552',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], - ['setambienttemperature_553',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], - ['setautoack_554',['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_555',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()']]], - ['setbitrate_556',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x128x.html#a3bee00ec197ef9855c0079cb0a3009a6',1,'SX128x::setBitRate()']]], - ['setbroadcastaddress_557',['setBroadcastAddress',['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()']]], - ['setcodingrate_558',['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_559',['setCorrection',['../class_a_x25_client.html#aa6a10784d59428a4d5c13067ba6af69c',1,'AX25Client']]], - ['setcrc_560',['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_561',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()']]], - ['setcurrentlimit_562',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], - ['setdatarate_563',['setDataRate',['../classn_r_f24.html#a1f3ec2196733a2e2476f50690967f285',1,'nRF24']]], - ['setdatashaping_564',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::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_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd',1,'PhysicalLayer::setDataShaping()']]], - ['setdatashapingook_565',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], - ['setdestinationaddress_566',['setDestinationAddress',['../class_x_bee_serial.html#ae485a8ebeaf574ffe0c2c56a61583f13',1,'XBeeSerial']]], - ['setdio0action_567',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ada53419d65f207f352124da7747c5960',1,'SX127x::setDio0Action()']]], - ['setdio1action_568',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], - ['setdio2asrfswitch_569',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdirectaction_570',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086',1,'PhysicalLayer::setDirectAction()']]], - ['setdirectsyncword_571',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], - ['setencoding_572',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::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_physical_layer.html#a7d3419227d201d6912b77784636d437d',1,'PhysicalLayer::setEncoding()']]], - ['setfrequency_573',['setFrequency',['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../classn_r_f24.html#abec5f9dba44a019e23c8bf516f104fad',1,'nRF24::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_s_x1262.html#a7e72da22fa1fc2d87186107a3285e846',1,'SX1262::setFrequency()'],['../class_s_x1268.html#a6ad998275281de5c6f24f8a64db88052',1,'SX1268::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()']]], - ['setfrequencydeviation_574',['setFrequencyDeviation',['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b',1,'PhysicalLayer::setFrequencyDeviation()']]], - ['setgain_575',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], - ['setgdo0action_576',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]], - ['setgdo2action_577',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]], - ['setirqaction_578',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], - ['setlnatestboost_579',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], - ['setnodeaddress_580',['setNodeAddress',['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752',1,'SX126x::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()']]], - ['setook_581',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()']]], - ['setookfixedorfloorthreshold_582',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], - ['setookpeakthresholddecrement_583',['setOokPeakThresholdDecrement',['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x']]], - ['setookthresholdtype_584',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], - ['setoutputpower_585',['setOutputPower',['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()']]], - ['setpanid_586',['setPanId',['../class_x_bee_serial.html#ad429a47dc445765d2dec7ff64b922306',1,'XBeeSerial::setPanId()'],['../class_x_bee.html#a88745c61a1dc2d1139c34d6cc385d35b',1,'XBee::setPanId()']]], - ['setpreamblelength_587',['setPreambleLength',['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',1,'CC1101::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()']]], - ['setpromiscuousmode_588',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]], - ['setreceivepipe_589',['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_590',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], - ['setregulatordcdc_591',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]], - ['setregulatorldo_592',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]], - ['setrepeaters_593',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], - ['setrfswitchpins_594',['setRfSwitchPins',['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()']]], - ['setrfswitchstate_595',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]], - ['setrssiconfig_596',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], - ['setrxbandwidth_597',['setRxBandwidth',['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()']]], - ['setsendsequence_598',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], - ['setspreadingfactor_599',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::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_600',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]], - ['setsyncword_601',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]], - ['settcxo_602',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]], - ['settransmitpipe_603',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], - ['setwhitening_604',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], - ['si4430_605',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]], - ['si4431_606',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]], - ['si4432_607',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]], - ['si443x_608',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]], - ['sleep_609',['sleep',['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb',1,'RF69::sleep()'],['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep()'],['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()']]], - ['spigetregvalue_610',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]], - ['spireadregister_611',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]], - ['spireadregisterburst_612',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]], - ['spisetregvalue_613',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]], - ['spitransfer_614',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]], - ['spiwriteregister_615',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]], - ['spiwriteregisterburst_616',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]], - ['sstvclient_617',['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_618',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9',1,'PhysicalLayer::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()']]], - ['startchannelscan_619',['startChannelScan',['../class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]], - ['startdirect_620',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], - ['startranging_621',['startRanging',['../class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795',1,'SX1280']]], - ['startreceive_622',['startReceive',['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_s_x126x.html#a5052dc09f4b10ee22e169129f368685f',1,'SX126x::startReceive()'],['../class_s_x127x.html#afe8456d0f9abbce4d743f256f3e1e6c6',1,'SX127x::startReceive()'],['../class_s_x128x.html#a8171d2f3de53156526580ca4fe4d647d',1,'SX128x::startReceive()']]], - ['startreceivedutycycle_623',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]], - ['startreceivedutycycleauto_624',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]], - ['startsignal_625',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], - ['starttransmit_626',['startTransmit',['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], - ['subscribe_627',['subscribe',['../class_m_q_t_t_client.html#a9488df90534953c33d76e9183965a300',1,'MQTTClient']]], - ['sx1231_628',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]], - ['sx1261_629',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]], - ['sx1262_630',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]], - ['sx1268_631',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]], - ['sx126x_632',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]], - ['sx1272_633',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]], - ['sx1273_634',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]], - ['sx1276_635',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]], - ['sx1277_636',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]], - ['sx1278_637',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]], - ['sx1279_638',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]], - ['sx127x_639',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]], - ['sx1280_640',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]], - ['sx1281_641',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]], - ['sx1282_642',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]], - ['sx128x_643',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]] + ['scanchannel_550',['scanChannel',['../class_s_x126x.html#ae9f24414bd684434c310df54b3558f21',1,'SX126x::scanChannel()'],['../class_s_x127x.html#ada007b90821258fe8c6ca7f8ae3efed5',1,'SX127x::scanChannel()'],['../class_s_x128x.html#a89cc916f5cd5cdfbd331bb15f8a3d5cb',1,'SX128x::scanChannel()']]], + ['send_551',['send',['../class_e_s_p8266.html#a1caaa537edd52d1c2b7a0a25ef69c1c9',1,'ESP8266::send(const char *data) override'],['../class_e_s_p8266.html#a2f34474953b7dbe4d057c8e3f65e0dc4',1,'ESP8266::send(uint8_t *data, size_t len) override'],['../class_transport_layer.html#a1d9cb76640868aa0338b52808e4f022d',1,'TransportLayer::send(const char *data)=0'],['../class_transport_layer.html#afb001c6348bc19694090532cc5f00e52',1,'TransportLayer::send(uint8_t *data, size_t len)=0']]], + ['sendframe_552',['sendFrame',['../class_a_x25_client.html#a341db993853c6817a8f6c7087ead0ba6',1,'AX25Client']]], + ['sendheader_553',['sendHeader',['../class_s_s_t_v_client.html#a30741de183c81492402187b9d6d8c11e',1,'SSTVClient']]], + ['sendline_554',['sendLine',['../class_s_s_t_v_client.html#a772bfc68ac0a5f723c1031138dc27bd0',1,'SSTVClient']]], + ['serialmodule_555',['SerialModule',['../class_serial_module.html#a753631600e2070c57ed74e9eb296ce19',1,'SerialModule']]], + ['setaccessaddress_556',['setAccessAddress',['../class_s_x128x.html#a9346490a6c56edcff2e12ae0369a8df5',1,'SX128x']]], + ['setaddresswidth_557',['setAddressWidth',['../classn_r_f24.html#a5b01677f5ce6bee54da8fc7098c339f4',1,'nRF24']]], + ['setaeskey_558',['setAESKey',['../class_r_f69.html#abe5b378d7cc274fd8b75881e7d604bf3',1,'RF69']]], + ['setafc_559',['setAFC',['../class_s_x127x.html#a41f8cfcc2cdeb25a8e5a03f1ba4edd1e',1,'SX127x']]], + ['setafcagctrigger_560',['setAFCAGCTrigger',['../class_s_x127x.html#ab0f67330124cefc07a462e77922453d0',1,'SX127x']]], + ['setafcbandwidth_561',['setAFCBandwidth',['../class_s_x127x.html#a63e00b1ecf1b0dcb6d8a91fc9b8ea5ef',1,'SX127x']]], + ['setambienttemperature_562',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], + ['setautoack_563',['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_564',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()']]], + ['setbitrate_565',['setBitRate',['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_s_x127x.html#a606d839b3a992c681ac9ad7ca6020022',1,'SX127x::setBitRate()'],['../class_s_x128x.html#a3bee00ec197ef9855c0079cb0a3009a6',1,'SX128x::setBitRate()']]], + ['setbroadcastaddress_566',['setBroadcastAddress',['../class_r_f69.html#a1b7598b87ffaabdbe733c47317fa91d8',1,'RF69::setBroadcastAddress()'],['../class_s_x126x.html#abd8eea7e468db3d6064c19d4934d5034',1,'SX126x::setBroadcastAddress()'],['../class_s_x127x.html#abc51ce6718153e4963128f25bb5aab40',1,'SX127x::setBroadcastAddress()']]], + ['setcodingrate_567',['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_568',['setCorrection',['../class_a_x25_client.html#aa6a10784d59428a4d5c13067ba6af69c',1,'AX25Client']]], + ['setcrc_569',['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_570',['setCrcFiltering',['../class_c_c1101.html#aafac40359c4a1bb01aae12da6b03be26',1,'CC1101::setCrcFiltering()'],['../classn_r_f24.html#a3eb45884a5730ac1c339c7ba4f7b5282',1,'nRF24::setCrcFiltering()'],['../class_r_f69.html#ac205bc487833dc4eae4bb0069c0c4d1e',1,'RF69::setCrcFiltering()']]], + ['setcurrentlimit_571',['setCurrentLimit',['../class_s_x126x.html#a8f971dca834be7e0470a9a9f0c01854e',1,'SX126x::setCurrentLimit()'],['../class_s_x127x.html#a400575e3d83977bd250c5cb382fc7002',1,'SX127x::setCurrentLimit()']]], + ['setdatarate_572',['setDataRate',['../classn_r_f24.html#a1f3ec2196733a2e2476f50690967f285',1,'nRF24']]], + ['setdatashaping_573',['setDataShaping',['../class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6',1,'CC1101::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_physical_layer.html#ab643a814dce48f71a13bf6ea23f44cbd',1,'PhysicalLayer::setDataShaping()']]], + ['setdatashapingook_574',['setDataShapingOOK',['../class_s_x1272.html#a3a377445cb4b8fd41781a3210a819a47',1,'SX1272::setDataShapingOOK()'],['../class_s_x1278.html#a1ccc4d5062f739d534ab22562c7efca4',1,'SX1278::setDataShapingOOK()']]], + ['setdestinationaddress_575',['setDestinationAddress',['../class_x_bee_serial.html#ae485a8ebeaf574ffe0c2c56a61583f13',1,'XBeeSerial']]], + ['setdio0action_576',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ada53419d65f207f352124da7747c5960',1,'SX127x::setDio0Action()']]], + ['setdio1action_577',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#afc844f7f3530f4076c8ea5f684c1b123',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], + ['setdio2asrfswitch_578',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], + ['setdirectaction_579',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::setDirectAction()'],['../classn_r_f24.html#a3da63a447659f92153654d31a5d2854c',1,'nRF24::setDirectAction()'],['../class_r_f69.html#a7fd34332bec08828080b1b4a0f8c6e28',1,'RF69::setDirectAction()'],['../class_si443x.html#a55fae20e81755c8b014d080741d61913',1,'Si443x::setDirectAction()'],['../class_s_x126x.html#abbf8b4623da8c2caa83a8c3d35a44d0a',1,'SX126x::setDirectAction()'],['../class_s_x127x.html#aa3f409359eafa5988e8e4c2948735238',1,'SX127x::setDirectAction()'],['../class_s_x128x.html#aff1b549077b9d752f53bf9dfc6840236',1,'SX128x::setDirectAction()'],['../class_physical_layer.html#ab76fe7d3e0f453a807b205161c980086',1,'PhysicalLayer::setDirectAction()']]], + ['setdirectsyncword_580',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], + ['setencoding_581',['setEncoding',['../class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea',1,'CC1101::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_physical_layer.html#a7d3419227d201d6912b77784636d437d',1,'PhysicalLayer::setEncoding()']]], + ['setfrequency_582',['setFrequency',['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../classn_r_f24.html#abec5f9dba44a019e23c8bf516f104fad',1,'nRF24::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../class_r_f_m95.html#a9dbe60f998ddc661282ebf454dba0f87',1,'RFM95::setFrequency()'],['../class_r_f_m96.html#ae2be63ae8365648098b84cc86475fb84',1,'RFM96::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_s_x1262.html#a7e72da22fa1fc2d87186107a3285e846',1,'SX1262::setFrequency()'],['../class_s_x1268.html#a6ad998275281de5c6f24f8a64db88052',1,'SX1268::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()']]], + ['setfrequencydeviation_583',['setFrequencyDeviation',['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_physical_layer.html#ab9060e8ab7a2da192b3bf53b3501553b',1,'PhysicalLayer::setFrequencyDeviation()']]], + ['setgain_584',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], + ['setgdo0action_585',['setGdo0Action',['../class_c_c1101.html#ae60ea5cacfb1543fcecde5bfac16361a',1,'CC1101']]], + ['setgdo2action_586',['setGdo2Action',['../class_c_c1101.html#ac6338c2f5c937a12dac06069944ffb77',1,'CC1101']]], + ['setirqaction_587',['setIrqAction',['../classn_r_f24.html#abf9323748b1a850e6ddc6f6d48f4cfb3',1,'nRF24::setIrqAction()'],['../class_si443x.html#a801b51059e61f93d4e01ae6ba8eb0726',1,'Si443x::setIrqAction()']]], + ['setlnatestboost_588',['setLnaTestBoost',['../class_r_f69.html#aa14dbfd82cd75b9759d4d78bdb05c194',1,'RF69']]], + ['setnodeaddress_589',['setNodeAddress',['../class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8',1,'CC1101::setNodeAddress()'],['../class_r_f69.html#ab9c217d5ece259950780a05c6e41f75c',1,'RF69::setNodeAddress()'],['../class_s_x126x.html#a514cabe74bbe3434d7e4f244c4077752',1,'SX126x::setNodeAddress()'],['../class_s_x127x.html#ab99630d50672b43fc7162ba8f3293f95',1,'SX127x::setNodeAddress()']]], + ['setook_590',['setOOK',['../class_c_c1101.html#afa64d1ad4789d3146b38d14437234756',1,'CC1101::setOOK()'],['../class_r_f69.html#a9c2f94a1c3c8a4f3fd2c5785217bee0a',1,'RF69::setOOK()'],['../class_s_x127x.html#a24ef0af19a6b8954f956a3c3ad4286ee',1,'SX127x::setOOK()']]], + ['setookfixedorfloorthreshold_591',['setOokFixedOrFloorThreshold',['../class_s_x127x.html#a17ff4e4e0afaebed727648e1400be538',1,'SX127x']]], + ['setookfixedthreshold_592',['setOokFixedThreshold',['../class_r_f69.html#a2f5852cf0757e38b56b6208760d9a459',1,'RF69']]], + ['setookpeakthresholddecrement_593',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement()']]], + ['setookthresholdtype_594',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], + ['setoutputpower_595',['setOutputPower',['../class_c_c1101.html#ac3ff8051af5ca50c349e02257f1a3bda',1,'CC1101::setOutputPower()'],['../classn_r_f24.html#a824453d547c0b42ac1988acb42032ca4',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a998ddd21fc152d835c6f1b8d31b02fcc',1,'RF69::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#a6677a04aa0c2f3bbde2509786b6a66de',1,'SX1272::setOutputPower()'],['../class_s_x1278.html#a7fe05d0751714577f70da4290b7ced88',1,'SX1278::setOutputPower()'],['../class_s_x128x.html#ad6e2b46c317a8d8512cf0380025147a9',1,'SX128x::setOutputPower()']]], + ['setpanid_596',['setPanId',['../class_x_bee_serial.html#ad429a47dc445765d2dec7ff64b922306',1,'XBeeSerial::setPanId()'],['../class_x_bee.html#a88745c61a1dc2d1139c34d6cc385d35b',1,'XBee::setPanId()']]], + ['setpreamblelength_597',['setPreambleLength',['../class_c_c1101.html#acbfa80f431f335d5597500319f0affa8',1,'CC1101::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ab00f765bbfbfaa8c693532ea3a90c29b',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#ab608c45e0dcc44280df29580dc0a31ed',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()']]], + ['setpromiscuousmode_598',['setPromiscuousMode',['../class_c_c1101.html#a2911d49d1c293542f7a374c9af60df0e',1,'CC1101::setPromiscuousMode()'],['../class_r_f69.html#a6d90ad1d455de045c53c5758babd876c',1,'RF69::setPromiscuousMode()']]], + ['setreceivepipe_599',['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_600',['setRecvSequence',['../class_a_x25_frame.html#a4696a8eede8bac85f0ee6de6fee79ea8',1,'AX25Frame']]], + ['setregulatordcdc_601',['setRegulatorDCDC',['../class_s_x126x.html#a5ae69309ca0cf5f13c60f2d162916ff8',1,'SX126x']]], + ['setregulatorldo_602',['setRegulatorLDO',['../class_s_x126x.html#a21c263ce1a339faa74c568d9afb81cd2',1,'SX126x']]], + ['setrepeaters_603',['setRepeaters',['../class_a_x25_frame.html#a7f2d9f4f1ba29d0fd9f9f3f2cf03f797',1,'AX25Frame']]], + ['setrfswitchpins_604',['setRfSwitchPins',['../class_module.html#a0ecbb4e1e98094c1296b1e823dc14703',1,'Module::setRfSwitchPins()'],['../class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2',1,'CC1101::setRfSwitchPins()'],['../class_r_f69.html#aada7c48828b950cdfd260594d502b03d',1,'RF69::setRfSwitchPins()'],['../class_si443x.html#ae365087803b88b29932b5c793edff1d4',1,'Si443x::setRfSwitchPins()'],['../class_s_x126x.html#a288257242e483cb3eb6944333179dd26',1,'SX126x::setRfSwitchPins()'],['../class_s_x127x.html#ae9781180418c1ec9c365b74acbc98d8a',1,'SX127x::setRfSwitchPins()'],['../class_s_x128x.html#a5f11803b3430bc059321b443f407e78b',1,'SX128x::setRfSwitchPins()']]], + ['setrfswitchstate_605',['setRfSwitchState',['../class_module.html#a4a87d59ad2bf6bb1bb9de1856a81b824',1,'Module']]], + ['setrssiconfig_606',['setRSSIConfig',['../class_s_x127x.html#ad3955f85f456edae772a51025a19029b',1,'SX127x']]], + ['setrxbandwidth_607',['setRxBandwidth',['../class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6',1,'CC1101::setRxBandwidth()'],['../class_r_f69.html#a735d8f22095a7e69471d73ca021b9d1a',1,'RF69::setRxBandwidth()'],['../class_si443x.html#a51e6b7c677e82042224798114f311175',1,'Si443x::setRxBandwidth()'],['../class_s_x126x.html#a59d443c02d4620cda32c63a00c6bcc22',1,'SX126x::setRxBandwidth()'],['../class_s_x127x.html#a2cc53b9f9d90647c5709cb974779cf53',1,'SX127x::setRxBandwidth()']]], + ['setsendsequence_608',['setSendSequence',['../class_a_x25_frame.html#a026e9b96fa69018590fcf6842df8be70',1,'AX25Frame']]], + ['setspreadingfactor_609',['setSpreadingFactor',['../class_l_l_c_c68.html#ad59d1a1cb32c7c89c13ebf46051d26e4',1,'LLCC68::setSpreadingFactor()'],['../class_r_f_m97.html#ae8d0ead424c0c9950ad9d5b7132bdf67',1,'RFM97::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_610',['setSyncBits',['../class_s_x126x.html#ac594fbb30c5010658c970a64654c7162',1,'SX126x']]], + ['setsyncword_611',['setSyncWord',['../class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6',1,'CC1101::setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001',1,'CC1101::setSyncWord(uint8_t *syncWord, uint8_t len, uint8_t maxErrBits=0, bool requireCarrierSense=false)'],['../class_r_f69.html#a26667d50ec845c28e17236c69c886561',1,'RF69::setSyncWord()'],['../class_si443x.html#a4ed0da298c2418db4a88a19ef8938e0a',1,'Si443x::setSyncWord()'],['../class_s_x126x.html#a9d92dce566f8aefa836fe8f332e9560f',1,'SX126x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)'],['../class_s_x126x.html#a38e6d7831f35893a5b8328c10a2901bf',1,'SX126x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x127x.html#ac5c7f4584352a12390594395d9c29bde',1,'SX127x::setSyncWord(uint8_t syncWord)'],['../class_s_x127x.html#a9b7afe338fd5b81122c369ecaf0c3ebc',1,'SX127x::setSyncWord(uint8_t *syncWord, size_t len)'],['../class_s_x128x.html#a0efa595867624a54153d693d16f9f731',1,'SX128x::setSyncWord(uint8_t *syncWord, uint8_t len)'],['../class_s_x128x.html#a1bef6b6f3058be6b1681c78334342bc1',1,'SX128x::setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)']]], + ['settcxo_612',['setTCXO',['../class_s_x126x.html#a57bee6f4b3a3b7ec646ac8de347ee0d6',1,'SX126x']]], + ['settransmitpipe_613',['setTransmitPipe',['../classn_r_f24.html#aa0e1f2dddf810213410a420205bbd8af',1,'nRF24']]], + ['setwhitening_614',['setWhitening',['../class_s_x126x.html#a67702de41ae866b9f9d73234fc9ae376',1,'SX126x::setWhitening()'],['../class_s_x128x.html#a8b3eea268f21bf911b6eaf37c5eb0b5f',1,'SX128x::setWhitening()']]], + ['si4430_615',['Si4430',['../class_si4430.html#ac5ac1122e863a92b374a71e8880e16d9',1,'Si4430']]], + ['si4431_616',['Si4431',['../class_si4431.html#a332bfd2a32dea9ac0700bf172fe5b2d0',1,'Si4431']]], + ['si4432_617',['Si4432',['../class_si4432.html#afb1f1ae46d04788aa42f6276efd231ac',1,'Si4432']]], + ['si443x_618',['Si443x',['../class_si443x.html#ae7cfff2efebfa01c8a50a5cbbe8775b9',1,'Si443x']]], + ['sleep_619',['sleep',['../classn_r_f24.html#a033287e33c532638c11e2775a073f297',1,'nRF24::sleep()'],['../class_r_f69.html#a472a04041551cb38d2223fb34f71d8eb',1,'RF69::sleep()'],['../class_si443x.html#ada90718aeb67d7f0e9899da534de9695',1,'Si443x::sleep()'],['../class_s_x126x.html#afb5509f0705cdd971065251ed6b2fb4e',1,'SX126x::sleep()'],['../class_s_x127x.html#a44501ec8f8ac6084467b94516b1337df',1,'SX127x::sleep()'],['../class_s_x128x.html#a1d15e13e15b060ddbbe84257d5fcb66f',1,'SX128x::sleep()']]], + ['spigetregvalue_620',['SPIgetRegValue',['../class_module.html#ad7ca9ae5a22cdacdf9437ca9cd37c9b4',1,'Module']]], + ['spireadregister_621',['SPIreadRegister',['../class_module.html#a1d1a279cc7e1ab92e30c29c4dcca26a3',1,'Module']]], + ['spireadregisterburst_622',['SPIreadRegisterBurst',['../class_module.html#a6fa5239d73379e4140f5c4f513b1b8d2',1,'Module']]], + ['spisetregvalue_623',['SPIsetRegValue',['../class_module.html#a1286d7fd9673cbfab945c26b2585a129',1,'Module']]], + ['spitransfer_624',['SPItransfer',['../class_module.html#aefd955f1cd6d588b2cc229db87cb2121',1,'Module']]], + ['spiwriteregister_625',['SPIwriteRegister',['../class_module.html#ab814614ddd34b57f5a612a20f5fe4c57',1,'Module']]], + ['spiwriteregisterburst_626',['SPIwriteRegisterBurst',['../class_module.html#a9d77a08070cbd48fd4ece62a739333e9',1,'Module']]], + ['sstvclient_627',['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_628',['standby',['../class_c_c1101.html#a7612bf81e48086004c62548de2682266',1,'CC1101::standby()'],['../classn_r_f24.html#a5957f06a891d3d9c07e87b59c239ce56',1,'nRF24::standby()'],['../class_r_f69.html#a20242499eb926ff7b7da6e3f74a9ece1',1,'RF69::standby()'],['../class_si443x.html#ac45d2776df3ff338db154ead143fb7b8',1,'Si443x::standby()'],['../class_s_x126x.html#a7a1579e2557c36a4a34b09039c0d0c71',1,'SX126x::standby() override'],['../class_s_x126x.html#ad7569396f09f3867dc1bd4d4a0613acd',1,'SX126x::standby(uint8_t mode)'],['../class_s_x127x.html#a760b8c5103128f122fbe489c6529ce41',1,'SX127x::standby()'],['../class_s_x128x.html#a2be8cc6c3b61b59cb6a6ca4f6a030b45',1,'SX128x::standby() override'],['../class_s_x128x.html#aa11ba80f0cebb3e6927c775ad5f96b4e',1,'SX128x::standby(uint8_t mode)'],['../class_physical_layer.html#a0e77da761a2cbb5c9535df0bdea993f9',1,'PhysicalLayer::standby()'],['../class_r_t_t_y_client.html#a928dd206749d68b8ce450e14c24b9f22',1,'RTTYClient::standby()']]], + ['startchannelscan_629',['startChannelScan',['../class_s_x126x.html#a37a716aab163aebbe36599dc7e530c92',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a1d4631691c16d6ecf38815dc4e59a059',1,'SX127x::startChannelScan()']]], + ['startdirect_630',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], + ['startranging_631',['startRanging',['../class_s_x1280.html#af30ff497ca3bcc043dc4dc2e7587a795',1,'SX1280']]], + ['startreceive_632',['startReceive',['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_s_x126x.html#a5052dc09f4b10ee22e169129f368685f',1,'SX126x::startReceive()'],['../class_s_x127x.html#afe8456d0f9abbce4d743f256f3e1e6c6',1,'SX127x::startReceive()'],['../class_s_x128x.html#a8171d2f3de53156526580ca4fe4d647d',1,'SX128x::startReceive()']]], + ['startreceivedutycycle_633',['startReceiveDutyCycle',['../class_s_x126x.html#adc46b6adda2d0e82e25ed1fc78274136',1,'SX126x']]], + ['startreceivedutycycleauto_634',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a6b50cb78f02a3d93939437eb48489d3f',1,'SX126x']]], + ['startsignal_635',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], + ['starttransmit_636',['startTransmit',['../class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea',1,'CC1101::startTransmit()'],['../classn_r_f24.html#a42fdc828b49f2b8e15457189bd57d917',1,'nRF24::startTransmit()'],['../class_r_f69.html#a855dc194947b095b821ec1524ba6814c',1,'RF69::startTransmit()'],['../class_si443x.html#a402b4f5f11ba79e9cd4fb6ac0bfd9314',1,'Si443x::startTransmit()'],['../class_s_x126x.html#ab843614658a79db7aa24e48d5b6e84f1',1,'SX126x::startTransmit()'],['../class_s_x127x.html#adc2f1379573b7a7b5ee8125ea3752083',1,'SX127x::startTransmit()'],['../class_s_x128x.html#aef221e7d463c5228ce00ed6934512848',1,'SX128x::startTransmit()'],['../class_physical_layer.html#af068e6e862c99e39d0261a7971dd56db',1,'PhysicalLayer::startTransmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a923654706eff5118ef6e84214e837f27',1,'PhysicalLayer::startTransmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#a41a1de0ebffe7b65de6fd8cceb9a5123',1,'PhysicalLayer::startTransmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], + ['subscribe_637',['subscribe',['../class_m_q_t_t_client.html#a9488df90534953c33d76e9183965a300',1,'MQTTClient']]], + ['sx1231_638',['SX1231',['../class_s_x1231.html#a9f39cd41fa0c934fe871b6cbfa7ce269',1,'SX1231']]], + ['sx1261_639',['SX1261',['../class_s_x1261.html#a7d74b8684dd49b5b3ba23baf336f1c35',1,'SX1261']]], + ['sx1262_640',['SX1262',['../class_s_x1262.html#a0da317728ec8ef23c5032d550c9acb8d',1,'SX1262']]], + ['sx1268_641',['SX1268',['../class_s_x1268.html#a6bc50597d50fd9a2387628e452eac42f',1,'SX1268']]], + ['sx126x_642',['SX126x',['../class_s_x126x.html#aaca5a8fa8a3e634dd1b5b4c2bb5058d8',1,'SX126x']]], + ['sx1272_643',['SX1272',['../class_s_x1272.html#a9ffe467a6baaeaa079e02c3f1f43f626',1,'SX1272']]], + ['sx1273_644',['SX1273',['../class_s_x1273.html#ad0387b22d6dcc876bc5f85174714149b',1,'SX1273']]], + ['sx1276_645',['SX1276',['../class_s_x1276.html#a91c31d4dbd6d35ef6e42dba6dad8197b',1,'SX1276']]], + ['sx1277_646',['SX1277',['../class_s_x1277.html#a296fb332bf2cdc574dbfe933d9d10eda',1,'SX1277']]], + ['sx1278_647',['SX1278',['../class_s_x1278.html#a00ebd3e60a66056940b241b13da0c68e',1,'SX1278']]], + ['sx1279_648',['SX1279',['../class_s_x1279.html#abc606ad06ee77b6830dab4331793d22a',1,'SX1279']]], + ['sx127x_649',['SX127x',['../class_s_x127x.html#ac74c5914ca429a3892c66b9d98e3ea6c',1,'SX127x']]], + ['sx1280_650',['SX1280',['../class_s_x1280.html#a0356199b89860e15cda4979cd9dc13eb',1,'SX1280']]], + ['sx1281_651',['SX1281',['../class_s_x1281.html#a0dd7678cdf7fad9ecfc9139c5092f998',1,'SX1281']]], + ['sx1282_652',['SX1282',['../class_s_x1282.html#ae90b7dcd7167c4cbe20e33ced04e4232',1,'SX1282']]], + ['sx128x_653',['SX128x',['../class_s_x128x.html#a9ccbf51f8304f1041c8eef182be547a7',1,'SX128x']]] ]; diff --git a/search/functions_11.js b/search/functions_11.js index 80d27ac8..e763869f 100644 --- a/search/functions_11.js +++ b/search/functions_11.js @@ -1,7 +1,7 @@ var searchData= [ - ['term_644',['term',['../class_module.html#af0569f6930da7bee761eeca8158aed3a',1,'Module']]], - ['tone_645',['tone',['../class_module.html#a32ba59613a2f1e77038956e18d9fedd7',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], - ['transmit_646',['transmit',['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit()'],['../class_x_bee.html#ac1573e0aa0421cbcc767a968dda65819',1,'XBee::transmit(uint8_t *dest, const char *payload, uint8_t radius=1)'],['../class_x_bee.html#a697bfb6969560ef25bfb6c7bc64c3f09',1,'XBee::transmit(uint8_t *dest, uint8_t *destNetwork, const char *payload, uint8_t radius=1)'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], - ['transmitdirect_647',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]] + ['term_654',['term',['../class_module.html#af0569f6930da7bee761eeca8158aed3a',1,'Module']]], + ['tone_655',['tone',['../class_module.html#a32ba59613a2f1e77038956e18d9fedd7',1,'Module::tone()'],['../class_a_f_s_k_client.html#a6d2341901c83e45f853c077e60f1fa33',1,'AFSKClient::tone()']]], + ['transmit_656',['transmit',['../class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4',1,'CC1101::transmit()'],['../classn_r_f24.html#a583d505bd3a638ecc5576dd2dd95f044',1,'nRF24::transmit()'],['../class_r_f69.html#a09ba80f60ee7974011a4b4f6c18c6847',1,'RF69::transmit()'],['../class_si443x.html#a782748025e19ec6e597293afb6570bff',1,'Si443x::transmit()'],['../class_s_x126x.html#aab18364237ddac0c56aeaf63f08cf009',1,'SX126x::transmit()'],['../class_s_x127x.html#a9c4ea3285922bf01cebd2c8a706d9a29',1,'SX127x::transmit()'],['../class_s_x128x.html#af253e1e45361de74aefd01a7c73c28f5',1,'SX128x::transmit()'],['../class_x_bee.html#ac1573e0aa0421cbcc767a968dda65819',1,'XBee::transmit(uint8_t *dest, const char *payload, uint8_t radius=1)'],['../class_x_bee.html#a697bfb6969560ef25bfb6c7bc64c3f09',1,'XBee::transmit(uint8_t *dest, uint8_t *destNetwork, const char *payload, uint8_t radius=1)'],['../class_a_x25_client.html#a985790943f3f3e06a2dfdd36977d0b98',1,'AX25Client::transmit()'],['../class_physical_layer.html#ab139a34e03a6fd5a781cd54da21d308f',1,'PhysicalLayer::transmit(__FlashStringHelper *fstr, uint8_t addr=0)'],['../class_physical_layer.html#aeb62c5a521aafc1e0525c58e9364482b',1,'PhysicalLayer::transmit(String &str, uint8_t addr=0)'],['../class_physical_layer.html#a492b2d057dd803c3884fa1adc8e22534',1,'PhysicalLayer::transmit(const char *str, uint8_t addr=0)'],['../class_physical_layer.html#af81565ee82ef9a7de9c5663c745f4ef7',1,'PhysicalLayer::transmit(uint8_t *data, size_t len, uint8_t addr=0)=0']]], + ['transmitdirect_657',['transmitDirect',['../class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46',1,'CC1101::transmitDirect()'],['../classn_r_f24.html#a090bb64f65309efabfa1ffd86daa2303',1,'nRF24::transmitDirect()'],['../class_r_f69.html#a222682569338abb49d6952430b6eebdd',1,'RF69::transmitDirect()'],['../class_si443x.html#a5a86a2032c4b876c1c8e4a7cf4730c99',1,'Si443x::transmitDirect()'],['../class_s_x126x.html#a921aa8afb8d33b2660731c1f8d67664b',1,'SX126x::transmitDirect()'],['../class_s_x127x.html#aefeeb9f7192e11a75b5dfb1ab8488e84',1,'SX127x::transmitDirect()'],['../class_s_x128x.html#a53892566b0259d348158efe3c3c3601a',1,'SX128x::transmitDirect()'],['../class_physical_layer.html#a4b04eb6155b06d8ef400131c647d54e7',1,'PhysicalLayer::transmitDirect()']]] ]; diff --git a/search/functions_12.js b/search/functions_12.js index 796223f7..f69ee494 100644 --- a/search/functions_12.js +++ b/search/functions_12.js @@ -1,4 +1,4 @@ var searchData= [ - ['unsubscribe_648',['unsubscribe',['../class_m_q_t_t_client.html#a782158f20b289746b7b6884fd922a22c',1,'MQTTClient']]] + ['unsubscribe_658',['unsubscribe',['../class_m_q_t_t_client.html#a782158f20b289746b7b6884fd922a22c',1,'MQTTClient']]] ]; diff --git a/search/functions_13.js b/search/functions_13.js index fb06eec9..81f505be 100644 --- a/search/functions_13.js +++ b/search/functions_13.js @@ -1,4 +1,4 @@ var searchData= [ - ['variablepacketlengthmode_649',['variablePacketLengthMode',['../class_c_c1101.html#a881122ec3457c5f95760859f8e0297c7',1,'CC1101::variablePacketLengthMode()'],['../class_r_f69.html#af62ebde1ea34a394b9781a21ae348c39',1,'RF69::variablePacketLengthMode()'],['../class_s_x126x.html#aa11ab2c6f4488daf2ece93288e05c504',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a9f753c0857e7b8b4b9f7f6e91c77f0fd',1,'SX127x::variablePacketLengthMode()']]] + ['variablepacketlengthmode_659',['variablePacketLengthMode',['../class_c_c1101.html#a881122ec3457c5f95760859f8e0297c7',1,'CC1101::variablePacketLengthMode()'],['../class_r_f69.html#af62ebde1ea34a394b9781a21ae348c39',1,'RF69::variablePacketLengthMode()'],['../class_s_x126x.html#aa11ab2c6f4488daf2ece93288e05c504',1,'SX126x::variablePacketLengthMode()'],['../class_s_x127x.html#a9f753c0857e7b8b4b9f7f6e91c77f0fd',1,'SX127x::variablePacketLengthMode()']]] ]; diff --git a/search/functions_14.js b/search/functions_14.js index c8406df6..1647ae7d 100644 --- a/search/functions_14.js +++ b/search/functions_14.js @@ -1,5 +1,5 @@ var searchData= [ - ['xbee_650',['XBee',['../class_x_bee.html#a8a60ce7fd2b58e495b436d046e730e0b',1,'XBee']]], - ['xbeeserial_651',['XBeeSerial',['../class_x_bee_serial.html#a9ee7ddd4b45096a6112798be1be09080',1,'XBeeSerial']]] + ['xbee_660',['XBee',['../class_x_bee.html#a8a60ce7fd2b58e495b436d046e730e0b',1,'XBee']]], + ['xbeeserial_661',['XBeeSerial',['../class_x_bee_serial.html#a9ee7ddd4b45096a6112798be1be09080',1,'XBeeSerial']]] ]; diff --git a/search/functions_15.js b/search/functions_15.js index e03d0f0a..6d657015 100644 --- a/search/functions_15.js +++ b/search/functions_15.js @@ -1,4 +1,4 @@ var searchData= [ - ['yield_652',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]] + ['yield_662',['yield',['../class_module.html#a227d2d38e4747d0f49bb4df1c80b45d7',1,'Module']]] ]; diff --git a/search/functions_16.js b/search/functions_16.js index b6f25cb0..ef8b677a 100644 --- a/search/functions_16.js +++ b/search/functions_16.js @@ -1,5 +1,5 @@ var searchData= [ - ['_7eax25frame_653',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], - ['_7eita2string_654',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]] + ['_7eax25frame_663',['~AX25Frame',['../class_a_x25_frame.html#ab84a13f720ada37aee6201a560d9dc5a',1,'AX25Frame']]], + ['_7eita2string_664',['~ITA2String',['../class_i_t_a2_string.html#afde24c931997581878953660192e09a2',1,'ITA2String']]] ]; diff --git a/search/functions_2.js b/search/functions_2.js index fea37e81..f6502a87 100644 --- a/search/functions_2.js +++ b/search/functions_2.js @@ -1,12 +1,12 @@ var searchData= [ - ['cc1101_437',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]], - ['check_438',['check',['../class_m_q_t_t_client.html#a49cb16ef730ad50ba5dc472ac10d933e',1,'MQTTClient']]], - ['cleardio0action_439',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]], - ['cleardio1action_440',['clearDio1Action',['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()']]], - ['cleargdo0action_441',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], - ['cleargdo2action_442',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], - ['clearirqaction_443',['clearIrqAction',['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x']]], - ['closetransportconnection_444',['closeTransportConnection',['../class_e_s_p8266.html#aa71846340d1a679a12ddb9b9597f8f91',1,'ESP8266::closeTransportConnection()'],['../class_transport_layer.html#a82fc1c71a0f6d0aac1be7f6c184a0021',1,'TransportLayer::closeTransportConnection()']]], - ['connect_445',['connect',['../class_m_q_t_t_client.html#ac15b32e89df903b20b066113bf8c4a88',1,'MQTTClient']]] + ['cc1101_442',['CC1101',['../class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e',1,'CC1101']]], + ['check_443',['check',['../class_m_q_t_t_client.html#a49cb16ef730ad50ba5dc472ac10d933e',1,'MQTTClient']]], + ['cleardio0action_444',['clearDio0Action',['../class_r_f69.html#a9721d2a3ed9fa8dd878575d71d5a4942',1,'RF69::clearDio0Action()'],['../class_s_x127x.html#a729b4f3f36096b5b15bae19c7876e823',1,'SX127x::clearDio0Action()']]], + ['cleardio1action_445',['clearDio1Action',['../class_r_f69.html#ade1f9a7a603d712c480ed5e9a8d1bf51',1,'RF69::clearDio1Action()'],['../class_s_x126x.html#a6848afe4c16a47edb3e0b342a86ecdfd',1,'SX126x::clearDio1Action()'],['../class_s_x127x.html#a9b6532a25e1730973ac08146008adca5',1,'SX127x::clearDio1Action()'],['../class_s_x128x.html#ab8a3fe8e2843fa039ef369668f1a423f',1,'SX128x::clearDio1Action()']]], + ['cleargdo0action_446',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], + ['cleargdo2action_447',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], + ['clearirqaction_448',['clearIrqAction',['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x']]], + ['closetransportconnection_449',['closeTransportConnection',['../class_e_s_p8266.html#aa71846340d1a679a12ddb9b9597f8f91',1,'ESP8266::closeTransportConnection()'],['../class_transport_layer.html#a82fc1c71a0f6d0aac1be7f6c184a0021',1,'TransportLayer::closeTransportConnection()']]], + ['connect_450',['connect',['../class_m_q_t_t_client.html#ac15b32e89df903b20b066113bf8c4a88',1,'MQTTClient']]] ]; diff --git a/search/functions_3.js b/search/functions_3.js index e9b548bb..8a00205f 100644 --- a/search/functions_3.js +++ b/search/functions_3.js @@ -1,13 +1,15 @@ var searchData= [ - ['delay_446',['delay',['../class_module.html#af0f870b09b9dd9636f1587d708f07d38',1,'Module']]], - ['delaymicroseconds_447',['delayMicroseconds',['../class_module.html#a14d7cd8220bfa4440bda055ce5be748c',1,'Module']]], - ['detachinterrupt_448',['detachInterrupt',['../class_module.html#a656738f2fe41fb236d27aed02efa8ad4',1,'Module']]], - ['digitalread_449',['digitalRead',['../class_module.html#a7495c81640aac8f4686221dad34a274f',1,'Module']]], - ['digitalwrite_450',['digitalWrite',['../class_module.html#a46ad10b113df7c7e0a932be19eff63cd',1,'Module']]], - ['disableaddressfiltering_451',['disableAddressFiltering',['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()'],['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()']]], - ['disableaes_452',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]], - ['disablepipe_453',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], - ['disablesyncwordfiltering_454',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]], - ['disconnect_455',['disconnect',['../class_m_q_t_t_client.html#af10176e2cf67bd652823d44f3203a96e',1,'MQTTClient']]] + ['delay_451',['delay',['../class_module.html#af0f870b09b9dd9636f1587d708f07d38',1,'Module']]], + ['delaymicroseconds_452',['delayMicroseconds',['../class_module.html#a14d7cd8220bfa4440bda055ce5be748c',1,'Module']]], + ['detachinterrupt_453',['detachInterrupt',['../class_module.html#a656738f2fe41fb236d27aed02efa8ad4',1,'Module']]], + ['digitalread_454',['digitalRead',['../class_module.html#a7495c81640aac8f4686221dad34a274f',1,'Module']]], + ['digitalwrite_455',['digitalWrite',['../class_module.html#a46ad10b113df7c7e0a932be19eff63cd',1,'Module']]], + ['disableaddressfiltering_456',['disableAddressFiltering',['../class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883',1,'CC1101::disableAddressFiltering()'],['../class_r_f69.html#a5996fc1751e7542baafa0d6c0a6c78ee',1,'RF69::disableAddressFiltering()'],['../class_s_x126x.html#afc3a7a42c401b6c44e00cb6c5b9696f2',1,'SX126x::disableAddressFiltering()'],['../class_s_x127x.html#afe6e9bbfd75f9cad26f9f72c34c4ada5',1,'SX127x::disableAddressFiltering()']]], + ['disableaes_457',['disableAES',['../class_r_f69.html#a15fafb6c24a8b5721623be447628bbaa',1,'RF69']]], + ['disablebitsync_458',['disableBitSync',['../class_s_x127x.html#a8025b05b8f4f2f2abb4cd803b06e2ebd',1,'SX127x']]], + ['disablecontinuousmodebitsync_459',['disableContinuousModeBitSync',['../class_r_f69.html#a97d3570f4f898dde47e3daf8043e7bad',1,'RF69']]], + ['disablepipe_460',['disablePipe',['../classn_r_f24.html#a4dd39e5c0efee1f0c2a14f729eb4426a',1,'nRF24']]], + ['disablesyncwordfiltering_461',['disableSyncWordFiltering',['../class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b',1,'CC1101::disableSyncWordFiltering()'],['../class_r_f69.html#a400bb57d2353b57c29cf41a6d9497c80',1,'RF69::disableSyncWordFiltering()']]], + ['disconnect_462',['disconnect',['../class_m_q_t_t_client.html#af10176e2cf67bd652823d44f3203a96e',1,'MQTTClient']]] ]; diff --git a/search/functions_4.js b/search/functions_4.js index ee479ea1..ba82eb89 100644 --- a/search/functions_4.js +++ b/search/functions_4.js @@ -1,7 +1,9 @@ var searchData= [ - ['enableaes_456',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], - ['enablesyncwordfiltering_457',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], - ['esp8266_458',['ESP8266',['../class_e_s_p8266.html#ac0adb20130a378b8b99fcb9101823636',1,'ESP8266']]], - ['explicitheader_459',['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()']]] + ['enableaes_463',['enableAES',['../class_r_f69.html#a1fd4609f419d8b0213ee39b05dd40b69',1,'RF69']]], + ['enablebitsync_464',['enableBitSync',['../class_s_x127x.html#a1921e1d9fc1d888d2e73bb732e7db7aa',1,'SX127x']]], + ['enablecontinuousmodebitsync_465',['enableContinuousModeBitSync',['../class_r_f69.html#a7e2201b5bc389a68765400b70439f3f0',1,'RF69']]], + ['enablesyncwordfiltering_466',['enableSyncWordFiltering',['../class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4',1,'CC1101::enableSyncWordFiltering()'],['../class_r_f69.html#a643a711bcb4b7771a7ab1f457e61a417',1,'RF69::enableSyncWordFiltering()']]], + ['esp8266_467',['ESP8266',['../class_e_s_p8266.html#ac0adb20130a378b8b99fcb9101823636',1,'ESP8266']]], + ['explicitheader_468',['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()']]] ]; diff --git a/search/functions_5.js b/search/functions_5.js index dabc037e..abdca931 100644 --- a/search/functions_5.js +++ b/search/functions_5.js @@ -1,8 +1,8 @@ var searchData= [ - ['fixedpacketlengthmode_460',['fixedPacketLengthMode',['../class_c_c1101.html#a9335f1d5ccab7aab2357449002203810',1,'CC1101::fixedPacketLengthMode()'],['../class_r_f69.html#a4c9dcbd7e44bc5e46d9f10ae276a0c5f',1,'RF69::fixedPacketLengthMode()'],['../class_s_x126x.html#aa768ce757a0f7ee66cdd72cab7a855fa',1,'SX126x::fixedPacketLengthMode()'],['../class_s_x127x.html#aaf8ce9f09d0f46a76a5e251786b6de7f',1,'SX127x::fixedPacketLengthMode()']]], - ['flipbits_461',['flipBits',['../class_module.html#a7f5fd7409f21d33a16ea1de589962ae6',1,'Module']]], - ['flipbits16_462',['flipBits16',['../class_module.html#a160006371be8e121a8a54cc4462b3a72',1,'Module']]], - ['forceldro_463',['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_464',['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)']]] + ['fixedpacketlengthmode_469',['fixedPacketLengthMode',['../class_c_c1101.html#a9335f1d5ccab7aab2357449002203810',1,'CC1101::fixedPacketLengthMode()'],['../class_r_f69.html#a4c9dcbd7e44bc5e46d9f10ae276a0c5f',1,'RF69::fixedPacketLengthMode()'],['../class_s_x126x.html#aa768ce757a0f7ee66cdd72cab7a855fa',1,'SX126x::fixedPacketLengthMode()'],['../class_s_x127x.html#aaf8ce9f09d0f46a76a5e251786b6de7f',1,'SX127x::fixedPacketLengthMode()']]], + ['flipbits_470',['flipBits',['../class_module.html#a7f5fd7409f21d33a16ea1de589962ae6',1,'Module']]], + ['flipbits16_471',['flipBits16',['../class_module.html#a160006371be8e121a8a54cc4462b3a72',1,'Module']]], + ['forceldro_472',['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_473',['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 c45cf03f..e5d3dea9 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -1,36 +1,36 @@ var searchData= [ - ['get_465',['get',['../class_h_t_t_p_client.html#abc505d06d29fdc774d27c163e0be7ff8',1,'HTTPClient::get(String &url, String &response)'],['../class_h_t_t_p_client.html#a7ae493bf7db12ca2201cd6cead54c64f',1,'HTTPClient::get(const char *url, String &response)']]], - ['getafcerror_466',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], - ['getchannelscanresult_467',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]], - ['getchipversion_468',['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_469',['getCs',['../class_module.html#ae53e355a77f2b7ce6473c62ac5f37334',1,'Module']]], - ['getcurrentlimit_470',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], - ['getdatarate_471',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()']]], - ['getfreqstep_472',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], - ['getfrequencyerror_473',['getFrequencyError',['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x']]], - ['getgpio_474',['getGpio',['../class_module.html#aeb4c7447372d56a7cae6db91994aacfc',1,'Module']]], - ['getirq_475',['getIrq',['../class_module.html#a8c7f17a63b67117d953f1ba990b17f80',1,'Module']]], - ['getirqflags_476',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], - ['getlqi_477',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], - ['getmodemstatus_478',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], - ['getnumbytes_479',['getNumBytes',['../class_e_s_p8266.html#ac463b6a80cdc52e7db50b1f6760cec3f',1,'ESP8266::getNumBytes()'],['../class_transport_layer.html#a730e6671632844b1effc114e5c7d95c8',1,'TransportLayer::getNumBytes()']]], - ['getpacketdata_480',['getPacketData',['../class_x_bee.html#ab911ae5476a3a7c89dbac46adc1c843b',1,'XBee']]], - ['getpacketlength_481',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7',1,'PhysicalLayer::getPacketLength()']]], - ['getpacketsource_482',['getPacketSource',['../class_x_bee.html#abcffe611d9a823d66a8a2c12720ff70b',1,'XBee']]], - ['getpictureheight_483',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], - ['getpromiscuousmode_484',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], - ['getrangingresult_485',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_486',['getRSSI',['../class_c_c1101.html#a48fd0452d6f7d7d51ea7d23b2dbe1551',1,'CC1101::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()']]], - ['getrssiinst_487',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]], - ['getrst_488',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]], - ['getrx_489',['getRx',['../class_module.html#a5d66f76c11ac91a35a3a1d9647aa6f6d',1,'Module']]], - ['getsnr_490',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()']]], - ['getspi_491',['getSpi',['../class_module.html#ae867ebfef795d63d1df234394510b96e',1,'Module']]], - ['getspisettings_492',['getSpiSettings',['../class_module.html#a7b6da4ca8fe5178617a1cc28854929a0',1,'Module']]], - ['getstatus_493',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], - ['gettemperature_494',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], - ['gettempraw_495',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], - ['gettimeonair_496',['getTimeOnAir',['../class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10',1,'SX126x::getTimeOnAir()'],['../class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232',1,'SX128x::getTimeOnAir()']]], - ['gettx_497',['getTx',['../class_module.html#a680dd2e80255cab30cbe9773bf20b390',1,'Module']]] + ['get_474',['get',['../class_h_t_t_p_client.html#abc505d06d29fdc774d27c163e0be7ff8',1,'HTTPClient::get(String &url, String &response)'],['../class_h_t_t_p_client.html#a7ae493bf7db12ca2201cd6cead54c64f',1,'HTTPClient::get(const char *url, String &response)']]], + ['getafcerror_475',['getAFCError',['../class_s_x127x.html#a5094ba2d9268340b7aba99afe5da0544',1,'SX127x']]], + ['getchannelscanresult_476',['getChannelScanResult',['../class_s_x126x.html#abf1c3d6fa419a1e3ef11db63d3f46f8f',1,'SX126x']]], + ['getchipversion_477',['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_478',['getCs',['../class_module.html#ae53e355a77f2b7ce6473c62ac5f37334',1,'Module']]], + ['getcurrentlimit_479',['getCurrentLimit',['../class_s_x126x.html#aa668babb0bd129b2facee9fd280525ab',1,'SX126x']]], + ['getdatarate_480',['getDataRate',['../class_s_x126x.html#acbe2d75b1e2df8bcc58c4fd9d8e6e4f9',1,'SX126x::getDataRate()'],['../class_s_x127x.html#adc25b685de0859b799488bf7729350b6',1,'SX127x::getDataRate()']]], + ['getfreqstep_481',['getFreqStep',['../class_physical_layer.html#a977e5236693960bb1c79090a201e9e1c',1,'PhysicalLayer']]], + ['getfrequencyerror_482',['getFrequencyError',['../class_s_x127x.html#af6aa854a2668d70f4d3a374a49440362',1,'SX127x']]], + ['getgpio_483',['getGpio',['../class_module.html#aeb4c7447372d56a7cae6db91994aacfc',1,'Module']]], + ['getirq_484',['getIrq',['../class_module.html#a8c7f17a63b67117d953f1ba990b17f80',1,'Module']]], + ['getirqflags_485',['getIRQFlags',['../class_s_x127x.html#ac5d2ddb517e474a699b4539653b3754d',1,'SX127x']]], + ['getlqi_486',['getLQI',['../class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb',1,'CC1101']]], + ['getmodemstatus_487',['getModemStatus',['../class_s_x127x.html#a2cf6a5bd8f3257f98ee4f250cbdf8bdc',1,'SX127x']]], + ['getnumbytes_488',['getNumBytes',['../class_e_s_p8266.html#ac463b6a80cdc52e7db50b1f6760cec3f',1,'ESP8266::getNumBytes()'],['../class_transport_layer.html#a730e6671632844b1effc114e5c7d95c8',1,'TransportLayer::getNumBytes()']]], + ['getpacketdata_489',['getPacketData',['../class_x_bee.html#ab911ae5476a3a7c89dbac46adc1c843b',1,'XBee']]], + ['getpacketlength_490',['getPacketLength',['../class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0',1,'CC1101::getPacketLength()'],['../classn_r_f24.html#a23ea1749c21863ebc5bd3a2b08d64f3b',1,'nRF24::getPacketLength()'],['../class_r_f69.html#a86a080086c0228d23e2cb77d2b1915c1',1,'RF69::getPacketLength()'],['../class_si443x.html#a2d944669dc69ccd47f9e6c360f2ffd10',1,'Si443x::getPacketLength()'],['../class_s_x126x.html#ac4ef8c8751a3c09d64e431684840c987',1,'SX126x::getPacketLength()'],['../class_s_x127x.html#a462fa74275e67c296328a01f361892d5',1,'SX127x::getPacketLength()'],['../class_s_x128x.html#a390fd0749b316eed67da7b54f4f24735',1,'SX128x::getPacketLength()'],['../class_physical_layer.html#a0bd6046e068ef63e3f2b6bead48e02a7',1,'PhysicalLayer::getPacketLength()']]], + ['getpacketsource_491',['getPacketSource',['../class_x_bee.html#abcffe611d9a823d66a8a2c12720ff70b',1,'XBee']]], + ['getpictureheight_492',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], + ['getpromiscuousmode_493',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], + ['getrangingresult_494',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], + ['getrssi_495',['getRSSI',['../class_c_c1101.html#a48fd0452d6f7d7d51ea7d23b2dbe1551',1,'CC1101::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()']]], + ['getrssiinst_496',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]], + ['getrst_497',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]], + ['getrx_498',['getRx',['../class_module.html#a5d66f76c11ac91a35a3a1d9647aa6f6d',1,'Module']]], + ['getsnr_499',['getSNR',['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()']]], + ['getspi_500',['getSpi',['../class_module.html#ae867ebfef795d63d1df234394510b96e',1,'Module']]], + ['getspisettings_501',['getSpiSettings',['../class_module.html#a7b6da4ca8fe5178617a1cc28854929a0',1,'Module']]], + ['getstatus_502',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], + ['gettemperature_503',['getTemperature',['../class_r_f69.html#a0526ce6ea3722fd258f96d9677a60853',1,'RF69']]], + ['gettempraw_504',['getTempRaw',['../class_s_x127x.html#a95bc32a555675879ad9e2a9e399dc6c1',1,'SX127x']]], + ['gettimeonair_505',['getTimeOnAir',['../class_s_x126x.html#a7e342ddbef84cf845bef8f4448b8da10',1,'SX126x::getTimeOnAir()'],['../class_s_x128x.html#a2361a94f2e12ebc93e750a027d633232',1,'SX128x::getTimeOnAir()']]], + ['gettx_506',['getTx',['../class_module.html#a680dd2e80255cab30cbe9773bf20b390',1,'Module']]] ]; diff --git a/search/functions_7.js b/search/functions_7.js index adbf7a39..567a4e0d 100644 --- a/search/functions_7.js +++ b/search/functions_7.js @@ -1,6 +1,6 @@ var searchData= [ - ['hc05_498',['HC05',['../class_h_c05.html#a5cc3184c58de65cbff18447c6d03de18',1,'HC05']]], - ['hellclient_499',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]], - ['httpclient_500',['HTTPClient',['../class_h_t_t_p_client.html#a7c6fdd5681e55437ebddaac785f35557',1,'HTTPClient']]] + ['hc05_507',['HC05',['../class_h_c05.html#a5cc3184c58de65cbff18447c6d03de18',1,'HC05']]], + ['hellclient_508',['HellClient',['../class_hell_client.html#a6e3ed5db1904f3f9602e20c3c0d0cbd0',1,'HellClient::HellClient(PhysicalLayer *phy)'],['../class_hell_client.html#afeb347f04148700427ad40614fd057c3',1,'HellClient::HellClient(AFSKClient *audio)']]], + ['httpclient_509',['HTTPClient',['../class_h_t_t_p_client.html#a7c6fdd5681e55437ebddaac785f35557',1,'HTTPClient']]] ]; diff --git a/search/functions_8.js b/search/functions_8.js index 32f0e930..f7f3cec7 100644 --- a/search/functions_8.js +++ b/search/functions_8.js @@ -1,9 +1,9 @@ var searchData= [ - ['idle_501',['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()']]], - ['implicitheader_502',['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_503',['init',['../class_module.html#adb22d89bc5f532f1d056d9a9f3a6589c',1,'Module']]], - ['invertiq_504',['invertIQ',['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x']]], - ['iscarrierdetected_505',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], - ['ita2string_506',['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)']]] + ['idle_510',['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()']]], + ['implicitheader_511',['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_512',['init',['../class_module.html#adb22d89bc5f532f1d056d9a9f3a6589c',1,'Module']]], + ['invertiq_513',['invertIQ',['../class_s_x127x.html#a1f6c61b16a39a2bbb5b94b3685caae04',1,'SX127x']]], + ['iscarrierdetected_514',['isCarrierDetected',['../classn_r_f24.html#ad9204ee787b425e2c9e8422bb7939a37',1,'nRF24']]], + ['ita2string_515',['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)']]] ]; diff --git a/search/functions_9.js b/search/functions_9.js index 5f7b5829..d5e030c7 100644 --- a/search/functions_9.js +++ b/search/functions_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['jdy08_507',['JDY08',['../class_j_d_y08.html#a9e2895c29cbbb30bc49aa2b3b9d2c4d6',1,'JDY08']]], - ['join_508',['join',['../class_e_s_p8266.html#abb39d205464bc4789c87120564258432',1,'ESP8266']]] + ['jdy08_516',['JDY08',['../class_j_d_y08.html#a9e2895c29cbbb30bc49aa2b3b9d2c4d6',1,'JDY08']]], + ['join_517',['join',['../class_e_s_p8266.html#abb39d205464bc4789c87120564258432',1,'ESP8266']]] ]; diff --git a/search/functions_a.js b/search/functions_a.js index d7c40b0d..a8207f8f 100644 --- a/search/functions_a.js +++ b/search/functions_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['length_509',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], - ['llcc68_510',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]] + ['length_518',['length',['../class_i_t_a2_string.html#a79b48f6e1eab664b841f3fd20c333e8e',1,'ITA2String']]], + ['llcc68_519',['LLCC68',['../class_l_l_c_c68.html#abf66e5649ac09e5997e29cf637803261',1,'LLCC68']]] ]; diff --git a/search/functions_b.js b/search/functions_b.js index a43cf4be..fdb69f85 100644 --- a/search/functions_b.js +++ b/search/functions_b.js @@ -1,8 +1,8 @@ var searchData= [ - ['micros_511',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]], - ['millis_512',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]], - ['module_513',['Module',['../class_module.html#a06b2e1f1eb9e07a280e55f517f2fab38',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst)'],['../class_module.html#ae8709b81f592a23ebd72ba3fd8066b0f',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio)'],['../class_module.html#ac65f3d9e022b3284134ced1c20bcff09',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, SPIClass &spi, SPISettings spiSettings)'],['../class_module.html#a53d99944916b750dc1c69890f370680e',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio, SPIClass &spi, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0))'],['../class_module.html#a56456ade4eeffa2c566a6fc3fd098276',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE rx, RADIOLIB_PIN_TYPE tx, SPIClass &spi=RADIOLIB_DEFAULT_SPI, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0), HardwareSerial *serial=nullptr)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], - ['morseclient_514',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]], - ['mqttclient_515',['MQTTClient',['../class_m_q_t_t_client.html#a6ecdbc80b76ae32b926e84af620dacb6',1,'MQTTClient']]] + ['micros_520',['micros',['../class_module.html#af3f51e517a825949891ad29e30fd3f59',1,'Module']]], + ['millis_521',['millis',['../class_module.html#a216dd0c6ce140857f2b003ab8d89fbac',1,'Module']]], + ['module_522',['Module',['../class_module.html#a06b2e1f1eb9e07a280e55f517f2fab38',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst)'],['../class_module.html#ae8709b81f592a23ebd72ba3fd8066b0f',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio)'],['../class_module.html#ac65f3d9e022b3284134ced1c20bcff09',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, SPIClass &spi, SPISettings spiSettings)'],['../class_module.html#a53d99944916b750dc1c69890f370680e',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE gpio, SPIClass &spi, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0))'],['../class_module.html#a56456ade4eeffa2c566a6fc3fd098276',1,'Module::Module(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE rx, RADIOLIB_PIN_TYPE tx, SPIClass &spi=RADIOLIB_DEFAULT_SPI, SPISettings spiSettings=SPISettings(2000000, MSBFIRST, SPI_MODE0), HardwareSerial *serial=nullptr)'],['../class_module.html#a919baf2e46c357ebfcdbc1025b6c551e',1,'Module::Module(const Module &mod)']]], + ['morseclient_523',['MorseClient',['../class_morse_client.html#aeade3a433da40e6a9f28688f2e6e3b5a',1,'MorseClient::MorseClient(PhysicalLayer *phy)'],['../class_morse_client.html#aa5c8ec6823388877b7acfa0deab689a2',1,'MorseClient::MorseClient(AFSKClient *audio)']]], + ['mqttclient_524',['MQTTClient',['../class_m_q_t_t_client.html#a6ecdbc80b76ae32b926e84af620dacb6',1,'MQTTClient']]] ]; diff --git a/search/functions_c.js b/search/functions_c.js index 220d5b25..5f3e2ea6 100644 --- a/search/functions_c.js +++ b/search/functions_c.js @@ -1,5 +1,5 @@ var searchData= [ - ['notone_516',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#ade91356bb158bbc820d28855dd5818d1',1,'AFSKClient::noTone()']]], - ['nrf24_517',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]] + ['notone_525',['noTone',['../class_module.html#af998b86ce1243f616f6fcb6df5336207',1,'Module::noTone()'],['../class_a_f_s_k_client.html#ade91356bb158bbc820d28855dd5818d1',1,'AFSKClient::noTone()']]], + ['nrf24_526',['nRF24',['../classn_r_f24.html#ab12de8d953c2384c5fff09b4abf65d1e',1,'nRF24']]] ]; diff --git a/search/functions_d.js b/search/functions_d.js index 8b7116c9..b82dcbb9 100644 --- a/search/functions_d.js +++ b/search/functions_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['opentransportconnection_518',['openTransportConnection',['../class_e_s_p8266.html#a535f4b7a8ef104b208753f9361568d20',1,'ESP8266::openTransportConnection()'],['../class_transport_layer.html#a36b1ceebca3643fb475607d3d92f5d63',1,'TransportLayer::openTransportConnection()']]], - ['operator_3d_519',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]] + ['opentransportconnection_527',['openTransportConnection',['../class_e_s_p8266.html#a535f4b7a8ef104b208753f9361568d20',1,'ESP8266::openTransportConnection()'],['../class_transport_layer.html#a36b1ceebca3643fb475607d3d92f5d63',1,'TransportLayer::openTransportConnection()']]], + ['operator_3d_528',['operator=',['../class_module.html#a4ea888758b4a7784082d513a1e7849a4',1,'Module::operator=()'],['../class_a_x25_frame.html#a52e7e5f6f48c3e62544721d2a5e00640',1,'AX25Frame::operator=()']]] ]; diff --git a/search/functions_e.js b/search/functions_e.js index 0d8469d7..240b6bd6 100644 --- a/search/functions_e.js +++ b/search/functions_e.js @@ -1,10 +1,10 @@ var searchData= [ - ['packetmode_520',['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()']]], - ['physicallayer_521',['PhysicalLayer',['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer']]], - ['ping_522',['ping',['../class_m_q_t_t_client.html#aea3fb930ed43a0b3122ccc90efebb99d',1,'MQTTClient']]], - ['pinmode_523',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]], - ['post_524',['post',['../class_h_t_t_p_client.html#ac1119b889b6fed7bd4d119d3e4842acb',1,'HTTPClient']]], - ['printglyph_525',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]], - ['publish_526',['publish',['../class_m_q_t_t_client.html#ace3ee45313dea2f853207accf20b7c87',1,'MQTTClient::publish(String &topic, String &message)'],['../class_m_q_t_t_client.html#ab59a1174098dfdf514d8ec6d0bd9d015',1,'MQTTClient::publish(const char *topic, const char *message)']]] + ['packetmode_529',['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()']]], + ['physicallayer_530',['PhysicalLayer',['../class_physical_layer.html#a5e02457f1d519cf81b1590a182321c62',1,'PhysicalLayer']]], + ['ping_531',['ping',['../class_m_q_t_t_client.html#aea3fb930ed43a0b3122ccc90efebb99d',1,'MQTTClient']]], + ['pinmode_532',['pinMode',['../class_module.html#af7e4872dad3d19b6f75f532c88683168',1,'Module']]], + ['post_533',['post',['../class_h_t_t_p_client.html#ac1119b889b6fed7bd4d119d3e4842acb',1,'HTTPClient']]], + ['printglyph_534',['printGlyph',['../class_hell_client.html#ac527806ef871dc12555afe7c43a72ed9',1,'HellClient']]], + ['publish_535',['publish',['../class_m_q_t_t_client.html#ace3ee45313dea2f853207accf20b7c87',1,'MQTTClient::publish(String &topic, String &message)'],['../class_m_q_t_t_client.html#ab59a1174098dfdf514d8ec6d0bd9d015',1,'MQTTClient::publish(const char *topic, const char *message)']]] ]; diff --git a/search/functions_f.js b/search/functions_f.js index ca078118..475b49bb 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -1,17 +1,17 @@ var searchData= [ - ['random_527',['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_528',['randomByte',['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a34543b885aa57ade08a4c659991e523e',1,'PhysicalLayer::randomByte()']]], - ['range_529',['range',['../class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c',1,'SX1280']]], - ['read_530',['read',['../class_physical_layer.html#a929662904e9af2611e098dc13b91c977',1,'PhysicalLayer']]], - ['readbit_531',['readBit',['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()'],['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_physical_layer.html#a9b720e7776ad7ea805932578907b0058',1,'PhysicalLayer::readBit()']]], - ['readdata_532',['readData',['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::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()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632',1,'PhysicalLayer::readData(uint8_t *data, size_t len)=0']]], - ['receive_533',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_e_s_p8266.html#aa79f841de9ae9c5d6057e89a9f1721ea',1,'ESP8266::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'PhysicalLayer::receive(uint8_t *data, size_t len)=0'],['../class_transport_layer.html#a846492348f71d7328834076c9046dc3f',1,'TransportLayer::receive()']]], - ['receivedirect_534',['receiveDirect',['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#a46b22145b33e97cf6065ed826799b6b4',1,'PhysicalLayer::receiveDirect()']]], - ['reset_535',['reset',['../class_e_s_p8266.html#aee0279b476a83a55f54ab22e6d8f3904',1,'ESP8266::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()'],['../class_x_bee_serial.html#a1870183689e2a2a17aa36e0d6d30ea3f',1,'XBeeSerial::reset()'],['../class_x_bee.html#a10a4b3df9d5980e89a126848ec31613c',1,'XBee::reset()']]], - ['rf69_536',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]], - ['rfm95_537',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95']]], - ['rfm96_538',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96']]], - ['rfm97_539',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97']]], - ['rttyclient_540',['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)']]] + ['random_536',['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_537',['randomByte',['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()'],['../classn_r_f24.html#a5cc7cd54db2a6af1c9183a2d0653fe2e',1,'nRF24::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_physical_layer.html#a34543b885aa57ade08a4c659991e523e',1,'PhysicalLayer::randomByte()']]], + ['range_538',['range',['../class_s_x1280.html#a812e289084b2f78977b254c28f0fff7c',1,'SX1280']]], + ['read_539',['read',['../class_physical_layer.html#a929662904e9af2611e098dc13b91c977',1,'PhysicalLayer']]], + ['readbit_540',['readBit',['../class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc',1,'CC1101::readBit()'],['../classn_r_f24.html#a2db0cd487b03f937afc0bc2e3eccb6f6',1,'nRF24::readBit()'],['../class_r_f69.html#a0ca79ae99c3e0c9d7c097a7acefd6faa',1,'RF69::readBit()'],['../class_si443x.html#a45d3ffcb312c34a2f6391be6d609d7b7',1,'Si443x::readBit()'],['../class_s_x126x.html#aff80db65e546934980feac7e6c81dd80',1,'SX126x::readBit()'],['../class_s_x127x.html#a071442611a32154e8b3db7981f242a53',1,'SX127x::readBit()'],['../class_s_x128x.html#a2dd0ecae9f54cf6943cf702ae15f5039',1,'SX128x::readBit()'],['../class_physical_layer.html#a9b720e7776ad7ea805932578907b0058',1,'PhysicalLayer::readBit()']]], + ['readdata_541',['readData',['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::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()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_physical_layer.html#ae8eed0e888a7c8742e89d2b850977de2',1,'PhysicalLayer::readData(String &str, size_t len=0)'],['../class_physical_layer.html#ae8b6c756eb4b92855433ca389d73c632',1,'PhysicalLayer::readData(uint8_t *data, size_t len)=0']]], + ['receive_542',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_e_s_p8266.html#aa79f841de9ae9c5d6057e89a9f1721ea',1,'ESP8266::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_physical_layer.html#afb1b090348d9091bfa3a0b5ba3d85b36',1,'PhysicalLayer::receive(String &str, size_t len=0)'],['../class_physical_layer.html#a2ad4c6a8ac267f8ac590260414ffcda3',1,'PhysicalLayer::receive(uint8_t *data, size_t len)=0'],['../class_transport_layer.html#a846492348f71d7328834076c9046dc3f',1,'TransportLayer::receive()']]], + ['receivedirect_543',['receiveDirect',['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_physical_layer.html#a46b22145b33e97cf6065ed826799b6b4',1,'PhysicalLayer::receiveDirect()']]], + ['reset_544',['reset',['../class_e_s_p8266.html#aee0279b476a83a55f54ab22e6d8f3904',1,'ESP8266::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()'],['../class_x_bee_serial.html#a1870183689e2a2a17aa36e0d6d30ea3f',1,'XBeeSerial::reset()'],['../class_x_bee.html#a10a4b3df9d5980e89a126848ec31613c',1,'XBee::reset()']]], + ['rf69_545',['RF69',['../class_r_f69.html#afbc84d4f91502bcbe12ddda2fde51448',1,'RF69']]], + ['rfm95_546',['RFM95',['../class_r_f_m95.html#a89dfea02aef1a2b47a3af83801c74326',1,'RFM95']]], + ['rfm96_547',['RFM96',['../class_r_f_m96.html#ad139e35a7465bf7ad83aef85998b4e7a',1,'RFM96']]], + ['rfm97_548',['RFM97',['../class_r_f_m97.html#ab7a6b22776df24d081225dcfe177e1be',1,'RFM97']]], + ['rttyclient_549',['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/groups_0.js b/search/groups_0.js index 1f342ad3..84d71f83 100644 --- a/search/groups_0.js +++ b/search/groups_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['data_20shaping_20filter_20values_20aliases_2e_682',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]] + ['data_20shaping_20filter_20values_20aliases_2e_692',['Data shaping filter values aliases.',['../group__config__shaping.html',1,'']]] ]; diff --git a/search/groups_1.js b/search/groups_1.js index 1ca9d64b..44a8b6f1 100644 --- a/search/groups_1.js +++ b/search/groups_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['encoding_20type_20aliases_2e_683',['Encoding type aliases.',['../group__config__encoding.html',1,'']]] + ['encoding_20type_20aliases_2e_693',['Encoding type aliases.',['../group__config__encoding.html',1,'']]] ]; diff --git a/search/groups_2.js b/search/groups_2.js index 2bb1fb23..c312eae1 100644 --- a/search/groups_2.js +++ b/search/groups_2.js @@ -1,5 +1,5 @@ var searchData= [ - ['shield_20configuration_684',['Shield Configuration',['../group__shield__config.html',1,'']]], - ['status_20codes_685',['Status Codes',['../group__status__codes.html',1,'']]] + ['shield_20configuration_694',['Shield Configuration',['../group__shield__config.html',1,'']]], + ['status_20codes_695',['Status Codes',['../group__status__codes.html',1,'']]] ]; diff --git a/search/groups_3.js b/search/groups_3.js index 9d741844..8d705d36 100644 --- a/search/groups_3.js +++ b/search/groups_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['uart_20configuration_686',['UART Configuration',['../group__uart__config.html',1,'']]] + ['uart_20configuration_696',['UART Configuration',['../group__uart__config.html',1,'']]] ]; diff --git a/search/pages_0.js b/search/pages_0.js index 9601a122..9f2c924b 100644 --- a/search/pages_0.js +++ b/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['radiolib_20documentation_687',['RadioLib Documentation',['../index.html',1,'']]] + ['radiolib_20documentation_697',['RadioLib Documentation',['../index.html',1,'']]] ]; diff --git a/search/pages_1.js b/search/pages_1.js index 44d3824a..a8bdf5e6 100644 --- a/search/pages_1.js +++ b/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['todo_20list_688',['Todo List',['../todo.html',1,'']]] + ['todo_20list_698',['Todo List',['../todo.html',1,'']]] ]; diff --git a/search/variables_0.js b/search/variables_0.js index 6d628236..d5590ca5 100644 --- a/search/variables_0.js +++ b/search/variables_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['atlinefeed_655',['AtLineFeed',['../class_module.html#a9d8ab2ff353bad5d0e7568d300a48ba0',1,'Module']]] + ['atlinefeed_665',['AtLineFeed',['../class_module.html#a9d8ab2ff353bad5d0e7568d300a48ba0',1,'Module']]] ]; diff --git a/search/variables_1.js b/search/variables_1.js index 7aaa0569..b76fe12b 100644 --- a/search/variables_1.js +++ b/search/variables_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['baudrate_656',['baudrate',['../class_module.html#a128ead3f3198e3b06d39a128a5d6c777',1,'Module']]] + ['baudrate_666',['baudrate',['../class_module.html#a128ead3f3198e3b06d39a128a5d6c777',1,'Module']]] ]; diff --git a/search/variables_2.js b/search/variables_2.js index 4862d881..48133f21 100644 --- a/search/variables_2.js +++ b/search/variables_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['control_657',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]] + ['control_667',['control',['../class_a_x25_frame.html#a5b196079b539dc417ca65dd4ad622f8f',1,'AX25Frame']]] ]; diff --git a/search/variables_3.js b/search/variables_3.js index af552682..7bbe8d1f 100644 --- a/search/variables_3.js +++ b/search/variables_3.js @@ -1,5 +1,5 @@ var searchData= [ - ['destcallsign_658',['destCallsign',['../class_a_x25_frame.html#a78e72871e3a9370675318876f4a4b432',1,'AX25Frame']]], - ['destssid_659',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]] + ['destcallsign_668',['destCallsign',['../class_a_x25_frame.html#a78e72871e3a9370675318876f4a4b432',1,'AX25Frame']]], + ['destssid_669',['destSSID',['../class_a_x25_frame.html#af62935e56dc24bca5d2e2aeb932b63f8',1,'AX25Frame']]] ]; diff --git a/search/variables_4.js b/search/variables_4.js index c14b6637..42876bab 100644 --- a/search/variables_4.js +++ b/search/variables_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['freq_660',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]] + ['freq_670',['freq',['../structtone__t.html#a322e5f269a6a7eaae58f3ca0b73da0cf',1,'tone_t']]] ]; diff --git a/search/variables_5.js b/search/variables_5.js index 480799f5..797a18b2 100644 --- a/search/variables_5.js +++ b/search/variables_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['height_661',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]] + ['height_671',['height',['../struct_s_s_t_v_mode__t.html#aae9c12993b804b63c258e82244f20031',1,'SSTVMode_t']]] ]; diff --git a/search/variables_6.js b/search/variables_6.js index 01841ee8..5f4eae8d 100644 --- a/search/variables_6.js +++ b/search/variables_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['info_662',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], - ['infolen_663',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]] + ['info_672',['info',['../class_a_x25_frame.html#aa82f006b84b71b9c5d036a4946a65988',1,'AX25Frame']]], + ['infolen_673',['infoLen',['../class_a_x25_frame.html#a75e8ad33c2540ede5bb130050f6ffc41',1,'AX25Frame']]] ]; diff --git a/search/variables_7.js b/search/variables_7.js index be2bb41f..80b7d758 100644 --- a/search/variables_7.js +++ b/search/variables_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['len_664',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]] + ['len_674',['len',['../structtone__t.html#a3b0421dd255c7c59552741957a6224ed',1,'tone_t']]] ]; diff --git a/search/variables_8.js b/search/variables_8.js index 708dbf63..9fc8d28c 100644 --- a/search/variables_8.js +++ b/search/variables_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['moduleserial_665',['ModuleSerial',['../class_module.html#a99556decb983f682b98220ae5434b004',1,'Module']]] + ['moduleserial_675',['ModuleSerial',['../class_module.html#a99556decb983f682b98220ae5434b004',1,'Module']]] ]; diff --git a/search/variables_9.js b/search/variables_9.js index 11c4aa0e..320b12d7 100644 --- a/search/variables_9.js +++ b/search/variables_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['numrepeaters_666',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], - ['numtones_667',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]] + ['numrepeaters_676',['numRepeaters',['../class_a_x25_frame.html#ad27453a838ba90f917a1a9853358bb9a',1,'AX25Frame']]], + ['numtones_677',['numTones',['../struct_s_s_t_v_mode__t.html#ae3d67bbc9815c38bea17ec070c8c0096',1,'SSTVMode_t']]] ]; diff --git a/search/variables_a.js b/search/variables_a.js index 46fb9951..86743b13 100644 --- a/search/variables_a.js +++ b/search/variables_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['protocolid_668',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]] + ['protocolid_678',['protocolID',['../class_a_x25_frame.html#aa8895fea37220c82f68bd320331595c8',1,'AX25Frame']]] ]; diff --git a/search/variables_b.js b/search/variables_b.js index 4d5e26a3..f94d34a1 100644 --- a/search/variables_b.js +++ b/search/variables_b.js @@ -1,6 +1,6 @@ var searchData= [ - ['rcvseqnumber_669',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], - ['repeatercallsigns_670',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], - ['repeaterssids_671',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]] + ['rcvseqnumber_679',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], + ['repeatercallsigns_680',['repeaterCallsigns',['../class_a_x25_frame.html#a29eb08c9e72bbaced8d37dcb2343ee94',1,'AX25Frame']]], + ['repeaterssids_681',['repeaterSSIDs',['../class_a_x25_frame.html#a5b63c6b6f69e0ac47ba9230ad39c6830',1,'AX25Frame']]] ]; diff --git a/search/variables_c.js b/search/variables_c.js index 89c01908..29c98232 100644 --- a/search/variables_c.js +++ b/search/variables_c.js @@ -1,9 +1,9 @@ var searchData= [ - ['scanpixellen_672',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], - ['sendseqnumber_673',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], - ['spireadcommand_674',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]], - ['spiwritecommand_675',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]], - ['srccallsign_676',['srcCallsign',['../class_a_x25_frame.html#ab76eaa8445e7953059a46bb78082dd5a',1,'AX25Frame']]], - ['srcssid_677',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]] + ['scanpixellen_682',['scanPixelLen',['../struct_s_s_t_v_mode__t.html#a991e84b2b6f696ec2390f2c3f8cb9694',1,'SSTVMode_t']]], + ['sendseqnumber_683',['sendSeqNumber',['../class_a_x25_frame.html#a4c0fdf148d3b779d48441d45af87add2',1,'AX25Frame']]], + ['spireadcommand_684',['SPIreadCommand',['../class_module.html#a849ad85fc1bc3a7130e660c13973ab26',1,'Module']]], + ['spiwritecommand_685',['SPIwriteCommand',['../class_module.html#ae89764d15e8df5694a6aec0e18f72d3f',1,'Module']]], + ['srccallsign_686',['srcCallsign',['../class_a_x25_frame.html#ab76eaa8445e7953059a46bb78082dd5a',1,'AX25Frame']]], + ['srcssid_687',['srcSSID',['../class_a_x25_frame.html#a50c63276facf8126f0f8555b1fc6b2c9',1,'AX25Frame']]] ]; diff --git a/search/variables_d.js b/search/variables_d.js index 31933935..b299837d 100644 --- a/search/variables_d.js +++ b/search/variables_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['tones_678',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]], - ['type_679',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]] + ['tones_688',['tones',['../struct_s_s_t_v_mode__t.html#a27c6a271c1aa8e499a31a784ab9254ad',1,'SSTVMode_t']]], + ['type_689',['type',['../structtone__t.html#ac8717b06ffa53eebe2aaf16f19747d40',1,'tone_t']]] ]; diff --git a/search/variables_e.js b/search/variables_e.js index 5aa0e71e..9500c309 100644 --- a/search/variables_e.js +++ b/search/variables_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['viscode_680',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] + ['viscode_690',['visCode',['../struct_s_s_t_v_mode__t.html#a4033deed34e2703ab7f9a95cc32e5820',1,'SSTVMode_t']]] ]; diff --git a/search/variables_f.js b/search/variables_f.js index 1aec98d6..3c751f2e 100644 --- a/search/variables_f.js +++ b/search/variables_f.js @@ -1,4 +1,4 @@ var searchData= [ - ['width_681',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]] + ['width_691',['width',['../struct_s_s_t_v_mode__t.html#ad8d4e7efb12eb0e0cfa850aeb7353e40',1,'SSTVMode_t']]] ];