From 5f12c227158df662944d47de4eac27736592f07e Mon Sep 17 00:00:00 2001 From: jgromes Date: Wed, 1 May 2024 17:05:53 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=2092cb0?= =?UTF-8?q?9a9326be193a18ae25aa1a317c0d53d11b3=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _c_c1101_8h_source.html | 381 +++++++++++++++++++------------------ class_c_c1101-members.html | 28 +-- class_c_c1101.html | 160 ++++++++-------- class_c_c1101.js | 28 +-- class_physical_layer.html | 24 +-- functions_c.html | 4 +- functions_func_c.html | 4 +- functions_func_g.html | 2 +- functions_func_r.html | 4 +- functions_func_s.html | 16 +- functions_g.html | 2 +- functions_r.html | 4 +- functions_s.html | 16 +- navtreeindex0.js | 28 +-- navtreeindex5.js | 2 +- search/all_10.js | 16 +- search/all_2.js | 4 +- search/all_6.js | 2 +- search/all_f.js | 4 +- search/functions_2.js | 4 +- search/functions_6.js | 2 +- search/functions_e.js | 4 +- search/functions_f.js | 16 +- 23 files changed, 378 insertions(+), 377 deletions(-) diff --git a/_c_c1101_8h_source.html b/_c_c1101_8h_source.html index 4b32018d..6949a578 100644 --- a/_c_c1101_8h_source.html +++ b/_c_c1101_8h_source.html @@ -619,239 +619,240 @@ $(document).ready(function(){initNavTree('_c_c1101_8h_source.html',''); initResi
535  using PhysicalLayer::startTransmit;
536  using PhysicalLayer::readData;
537 
-
542  CC1101(Module* module);
-
543 
-
544  // basic methods
-
545 
-
556  int16_t begin(
-
557  float freq = RADIOLIB_CC1101_DEFAULT_FREQ,
-
558  float br = RADIOLIB_CC1101_DEFAULT_BR,
-
559  float freqDev = RADIOLIB_CC1101_DEFAULT_FREQDEV,
-
560  float rxBw = RADIOLIB_CC1101_DEFAULT_RXBW,
-
561  int8_t pwr = RADIOLIB_CC1101_DEFAULT_POWER,
-
562  uint8_t preambleLength = RADIOLIB_CC1101_DEFAULT_PREAMBLELEN);
-
563 
-
567  void reset();
-
568 
-
577  int16_t transmit(uint8_t* data, size_t len, uint8_t addr = 0) override;
-
578 
-
586  int16_t receive(uint8_t* data, size_t len) override;
-
587 
-
592  int16_t standby() override;
-
593 
-
599  int16_t standby(uint8_t mode) override;
-
600 
-
606  int16_t transmitDirect(uint32_t frf = 0) override;
-
607 
-
612  int16_t receiveDirect() override;
-
613 
-
619  int16_t transmitDirectAsync(uint32_t frf = 0);
-
620 
-
625  int16_t receiveDirectAsync();
-
626 
-
631  int16_t packetMode();
-
632 
-
633  // interrupt methods
-
634 
-
640  void setGdo0Action(void (*func)(void), uint32_t dir);
-
641 
-
645  void clearGdo0Action();
-
646 
-
652  void setGdo2Action(void (*func)(void), uint32_t dir);
-
653 
-
657  void clearGdo2Action();
-
658 
-
663  void setPacketReceivedAction(void (*func)(void));
-
664 
-
668  void clearPacketReceivedAction();
-
669 
-
674  void setPacketSentAction(void (*func)(void));
-
675 
-
679  void clearPacketSentAction();
-
680 
-
689  int16_t startTransmit(uint8_t* data, size_t len, uint8_t addr = 0) override;
-
690 
-
695  int16_t finishTransmit() override;
-
696 
-
701  int16_t startReceive();
-
702 
-
711  int16_t startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len);
-
712 
-
721  int16_t readData(uint8_t* data, size_t len) override;
-
722 
-
723  // configuration methods
-
724 
-
731  int16_t setFrequency(float freq);
-
732 
-
738  int16_t setBitRate(float br);
-
739 
-
746  int16_t setRxBandwidth(float rxBw);
-
747 
-
754  int16_t autoSetRxBandwidth();
-
755 
-
761  int16_t setFrequencyDeviation(float freqDev) override;
-
762 
-
768  int16_t getFrequencyDeviation(float *freqDev);
-
769 
-
775  int16_t setOutputPower(int8_t pwr);
-
776 
-
784  int16_t checkOutputPower(int8_t power, int8_t* clipped) override;
-
785 
-
793  int16_t checkOutputPower(int8_t power, int8_t* clipped, uint8_t* raw);
-
794 
-
803  int16_t setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits = 0, bool requireCarrierSense = false);
-
804 
-
813  int16_t setSyncWord(uint8_t* syncWord, uint8_t len, uint8_t maxErrBits = 0, bool requireCarrierSense = false);
-
814 
-
821  int16_t setPreambleLength(uint8_t preambleLength, uint8_t qualityThreshold);
-
822 
-
830  int16_t setNodeAddress(uint8_t nodeAddr, uint8_t numBroadcastAddrs = 0);
-
831 
-
836  int16_t disableAddressFiltering();
-
837 
-
843  int16_t setOOK(bool enableOOK);
-
844 
-
850  float getRSSI();
-
851 
-
856  uint8_t getLQI() const;
-
857 
-
863  size_t getPacketLength(bool update = true) override;
-
864 
-
870  int16_t fixedPacketLengthMode(uint8_t len = RADIOLIB_CC1101_MAX_PACKET_LENGTH);
-
871 
-
877  int16_t variablePacketLengthMode(uint8_t maxLen = RADIOLIB_CC1101_MAX_PACKET_LENGTH);
-
878 
-
885  int16_t enableSyncWordFiltering(uint8_t maxErrBits = 0, bool requireCarrierSense = false);
-
886 
-
892  int16_t disableSyncWordFiltering(bool requireCarrierSense = false);
-
893 
-
899  int16_t setCrcFiltering(bool enable = true);
-
900 
-
907  int16_t setPromiscuousMode(bool enable = true, bool requireCarrierSense = false);
-
908 
-
914  bool getPromiscuousMode();
-
915 
-
922  int16_t setDataShaping(uint8_t sh) override;
-
923 
-
930  int16_t setEncoding(uint8_t encoding) override;
-
931 
-
933  void setRfSwitchPins(uint32_t rxEn, uint32_t txEn);
-
934 
-
936  void setRfSwitchTable(const uint32_t (&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[]);
-
937 
-
942  uint8_t randomByte();
-
943 
-
949  int16_t getChipVersion();
-
950 
-
951  #if !RADIOLIB_EXCLUDE_DIRECT_RECEIVE
-
956  void setDirectAction(void (*func)(void));
-
957 
-
962  void readBit(uint32_t pin);
-
963  #endif
-
964 
-
971  int16_t setDIOMapping(uint32_t pin, uint32_t value);
-
972 
-
973  #if !RADIOLIB_GODMODE && !RADIOLIB_LOW_LEVEL
-
974  protected:
-
975  #endif
-
976  Module* getMod();
-
977 
-
978  // SPI read overrides to set bit for burst write and status registers access
-
979  int16_t SPIgetRegValue(uint8_t reg, uint8_t msb = 7, uint8_t lsb = 0);
-
980  int16_t SPIsetRegValue(uint8_t reg, uint8_t value, uint8_t msb = 7, uint8_t lsb = 0, uint8_t checkInterval = 2);
-
981  void SPIreadRegisterBurst(uint8_t reg, uint8_t numBytes, uint8_t* inBytes);
-
982  uint8_t SPIreadRegister(uint8_t reg);
-
983  void SPIwriteRegisterBurst(uint8_t reg, uint8_t* data, size_t len);
-
984  void SPIwriteRegister(uint8_t reg, uint8_t data);
-
985 
-
986  void SPIsendCommand(uint8_t cmd);
-
987 
-
988  #if !RADIOLIB_GODMODE
-
989  private:
-
990  #endif
-
991  Module* mod;
-
992 
-
993  float frequency = RADIOLIB_CC1101_DEFAULT_FREQ;
-
994  float bitRate = RADIOLIB_CC1101_DEFAULT_BR;
-
995  uint8_t rawRSSI = 0;
-
996  uint8_t rawLQI = 0;
-
997  uint8_t modulation = RADIOLIB_CC1101_MOD_FORMAT_2_FSK;
-
998 
-
999  size_t packetLength = 0;
-
1000  bool packetLengthQueried = false;
-
1001  uint8_t packetLengthConfig = RADIOLIB_CC1101_LENGTH_CONFIG_VARIABLE;
-
1002 
-
1003  bool promiscuous = false;
-
1004  bool crcOn = true;
-
1005  bool directModeEnabled = true;
-
1006 
-
1007  int8_t power = RADIOLIB_CC1101_DEFAULT_POWER;
-
1008 
-
1009  int16_t config();
-
1010  int16_t transmitDirect(bool sync, uint32_t frf);
-
1011  int16_t receiveDirect(bool sync);
-
1012  int16_t directMode(bool sync);
-
1013  static void getExpMant(float target, uint16_t mantOffset, uint8_t divExp, uint8_t expMax, uint8_t& exp, uint8_t& mant);
-
1014  int16_t setPacketMode(uint8_t mode, uint16_t len);
-
1015 };
-
1016 
-
1017 #endif
+
542  // cppcheck-suppress noExplicitConstructor
+
543  CC1101(Module* module);
+
544 
+
545  // basic methods
+
546 
+
557  int16_t begin(
+
558  float freq = RADIOLIB_CC1101_DEFAULT_FREQ,
+
559  float br = RADIOLIB_CC1101_DEFAULT_BR,
+
560  float freqDev = RADIOLIB_CC1101_DEFAULT_FREQDEV,
+
561  float rxBw = RADIOLIB_CC1101_DEFAULT_RXBW,
+
562  int8_t pwr = RADIOLIB_CC1101_DEFAULT_POWER,
+
563  uint8_t preambleLength = RADIOLIB_CC1101_DEFAULT_PREAMBLELEN);
+
564 
+
568  void reset();
+
569 
+
578  int16_t transmit(uint8_t* data, size_t len, uint8_t addr = 0) override;
+
579 
+
587  int16_t receive(uint8_t* data, size_t len) override;
+
588 
+
593  int16_t standby() override;
+
594 
+
600  int16_t standby(uint8_t mode) override;
+
601 
+
607  int16_t transmitDirect(uint32_t frf = 0) override;
+
608 
+
613  int16_t receiveDirect() override;
+
614 
+
620  int16_t transmitDirectAsync(uint32_t frf = 0);
+
621 
+
626  int16_t receiveDirectAsync();
+
627 
+
632  int16_t packetMode();
+
633 
+
634  // interrupt methods
+
635 
+
641  void setGdo0Action(void (*func)(void), uint32_t dir);
+
642 
+
646  void clearGdo0Action();
+
647 
+
653  void setGdo2Action(void (*func)(void), uint32_t dir);
+
654 
+
658  void clearGdo2Action();
+
659 
+
664  void setPacketReceivedAction(void (*func)(void)) override;
+
665 
+
669  void clearPacketReceivedAction() override;
+
670 
+
675  void setPacketSentAction(void (*func)(void)) override;
+
676 
+
680  void clearPacketSentAction() override;
+
681 
+
690  int16_t startTransmit(uint8_t* data, size_t len, uint8_t addr = 0) override;
+
691 
+
696  int16_t finishTransmit() override;
+
697 
+
702  int16_t startReceive() override;
+
703 
+
712  int16_t startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len) override;
+
713 
+
722  int16_t readData(uint8_t* data, size_t len) override;
+
723 
+
724  // configuration methods
+
725 
+
732  int16_t setFrequency(float freq) override;
+
733 
+
739  int16_t setBitRate(float br) override;
+
740 
+
747  int16_t setRxBandwidth(float rxBw);
+
748 
+
755  int16_t autoSetRxBandwidth();
+
756 
+
762  int16_t setFrequencyDeviation(float freqDev) override;
+
763 
+
769  int16_t getFrequencyDeviation(float *freqDev);
+
770 
+
776  int16_t setOutputPower(int8_t pwr) override;
+
777 
+
785  int16_t checkOutputPower(int8_t power, int8_t* clipped) override;
+
786 
+
794  int16_t checkOutputPower(int8_t power, int8_t* clipped, uint8_t* raw);
+
795 
+
804  int16_t setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits = 0, bool requireCarrierSense = false);
+
805 
+
814  int16_t setSyncWord(uint8_t* syncWord, uint8_t len, uint8_t maxErrBits = 0, bool requireCarrierSense = false);
+
815 
+
822  int16_t setPreambleLength(uint8_t preambleLength, uint8_t qualityThreshold);
+
823 
+
831  int16_t setNodeAddress(uint8_t nodeAddr, uint8_t numBroadcastAddrs = 0);
+
832 
+
837  int16_t disableAddressFiltering();
+
838 
+
844  int16_t setOOK(bool enableOOK);
+
845 
+
851  float getRSSI() override;
+
852 
+
857  uint8_t getLQI() const;
+
858 
+
864  size_t getPacketLength(bool update = true) override;
+
865 
+
871  int16_t fixedPacketLengthMode(uint8_t len = RADIOLIB_CC1101_MAX_PACKET_LENGTH);
+
872 
+
878  int16_t variablePacketLengthMode(uint8_t maxLen = RADIOLIB_CC1101_MAX_PACKET_LENGTH);
+
879 
+
886  int16_t enableSyncWordFiltering(uint8_t maxErrBits = 0, bool requireCarrierSense = false);
+
887 
+
893  int16_t disableSyncWordFiltering(bool requireCarrierSense = false);
+
894 
+
900  int16_t setCrcFiltering(bool enable = true);
+
901 
+
908  int16_t setPromiscuousMode(bool enable = true, bool requireCarrierSense = false);
+
909 
+
915  bool getPromiscuousMode();
+
916 
+
923  int16_t setDataShaping(uint8_t sh) override;
+
924 
+
931  int16_t setEncoding(uint8_t encoding) override;
+
932 
+
934  void setRfSwitchPins(uint32_t rxEn, uint32_t txEn);
+
935 
+
937  void setRfSwitchTable(const uint32_t (&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[]);
+
938 
+
943  uint8_t randomByte() override;
+
944 
+
950  int16_t getChipVersion();
+
951 
+
952  #if !RADIOLIB_EXCLUDE_DIRECT_RECEIVE
+
957  void setDirectAction(void (*func)(void)) override;
+
958 
+
963  void readBit(uint32_t pin) override;
+
964  #endif
+
965 
+
972  int16_t setDIOMapping(uint32_t pin, uint32_t value) override;
+
973 
+
974  #if !RADIOLIB_GODMODE && !RADIOLIB_LOW_LEVEL
+
975  protected:
+
976  #endif
+
977  Module* getMod() override;
+
978 
+
979  // SPI read overrides to set bit for burst write and status registers access
+
980  int16_t SPIgetRegValue(uint8_t reg, uint8_t msb = 7, uint8_t lsb = 0);
+
981  int16_t SPIsetRegValue(uint8_t reg, uint8_t value, uint8_t msb = 7, uint8_t lsb = 0, uint8_t checkInterval = 2);
+
982  void SPIreadRegisterBurst(uint8_t reg, uint8_t numBytes, uint8_t* inBytes);
+
983  uint8_t SPIreadRegister(uint8_t reg);
+
984  void SPIwriteRegisterBurst(uint8_t reg, uint8_t* data, size_t len);
+
985  void SPIwriteRegister(uint8_t reg, uint8_t data);
+
986 
+
987  void SPIsendCommand(uint8_t cmd);
+
988 
+
989  #if !RADIOLIB_GODMODE
+
990  private:
+
991  #endif
+
992  Module* mod;
+
993 
+
994  float frequency = RADIOLIB_CC1101_DEFAULT_FREQ;
+
995  float bitRate = RADIOLIB_CC1101_DEFAULT_BR;
+
996  uint8_t rawRSSI = 0;
+
997  uint8_t rawLQI = 0;
+
998  uint8_t modulation = RADIOLIB_CC1101_MOD_FORMAT_2_FSK;
+
999 
+
1000  size_t packetLength = 0;
+
1001  bool packetLengthQueried = false;
+
1002  uint8_t packetLengthConfig = RADIOLIB_CC1101_LENGTH_CONFIG_VARIABLE;
+
1003 
+
1004  bool promiscuous = false;
+
1005  bool crcOn = true;
+
1006  bool directModeEnabled = true;
+
1007 
+
1008  int8_t power = RADIOLIB_CC1101_DEFAULT_POWER;
+
1009 
+
1010  int16_t config();
+
1011  int16_t transmitDirect(bool sync, uint32_t frf);
+
1012  int16_t receiveDirect(bool sync);
+
1013  int16_t directMode(bool sync);
+
1014  static void getExpMant(float target, uint16_t mantOffset, uint8_t divExp, uint8_t expMax, uint8_t& exp, uint8_t& mant);
+
1015  int16_t setPacketMode(uint8_t mode, uint16_t len);
+
1016 };
+
1017 
+
1018 #endif
Control class for CC1101 module.
Definition: CC1101.h:530
-
int16_t setDIOMapping(uint32_t pin, uint32_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: CC1101.cpp:1007
+
void clearPacketReceivedAction() override
Clears interrupt service routine to call when a packet is received.
Definition: CC1101.cpp:265
int16_t setFrequencyDeviation(float freqDev) override
Sets frequency deviation. Allowed values range from 1.587 to 380.8 kHz.
Definition: CC1101.cpp:510
+
void readBit(uint32_t pin) override
Function to read and process data bit in direct reception mode.
Definition: CC1101.cpp:1002
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: CC1101.cpp:820
+
uint8_t randomByte() override
Get one truly random byte from RSSI noise.
Definition: CC1101.cpp:974
void reset()
Reset method - resets the chip using manual reset sequence (without RESET pin).
Definition: CC1101.cpp:90
-
void readBit(uint32_t pin)
Function to read and process data bit in direct reception mode.
Definition: CC1101.cpp:1002
int16_t transmitDirect(uint32_t frf=0) override
Starts synchronous direct mode transmission.
Definition: CC1101.cpp:194
+
void setDirectAction(void(*func)(void)) override
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: CC1101.cpp:998
+
void clearPacketSentAction() override
Clears interrupt service routine to call when a packet is sent.
Definition: CC1101.cpp:273
+
void setPacketReceivedAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is received.
Definition: CC1101.cpp:261
int16_t getChipVersion()
Read version SPI register. Should return CC1101_VERSION_LEGACY (0x04) or CC1101_VERSION_CURRENT (0x14...
Definition: CC1101.cpp:993
+
void setPacketSentAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is sent.
Definition: CC1101.cpp:269
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t setRxBandwidth(float rxBw)
Sets receiver bandwidth. Allowed values are 58, 68, 81, 102, 116, 135, 162, 203, 232,...
Definition: CC1101.cpp:471
int16_t packetMode()
Stops direct mode. It is required to call this method to switch from direct transmissions to packet-b...
Definition: CC1101.cpp:246
int16_t setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)
Sets 16-bit sync word as a two byte value.
Definition: CC1101.cpp:699
int16_t autoSetRxBandwidth()
calculates and sets Rx bandwidth based on the freq, baud and freq uncertainty. Reimplement of atlas0f...
Definition: CC1101.cpp:492
-
float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. In asynchronous direct mo...
Definition: CC1101.cpp:796
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
int16_t disableSyncWordFiltering(bool requireCarrierSense=false)
Disable preamble and sync word filtering and generation.
Definition: CC1101.cpp:867
-
void setPacketReceivedAction(void(*func)(void))
Sets interrupt service routine to call when a packet is received.
Definition: CC1101.cpp:261
-
int16_t setOutputPower(int8_t pwr)
Sets output power. Allowed values are -30, -20, -15, -10, 0, 5, 7 or 10 dBm.
Definition: CC1101.cpp:562
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_CC1101_MAX_PACKET_LENGTH)
Set modem in variable packet length mode.
Definition: CC1101.cpp:844
-
void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: CC1101.cpp:998
+
int16_t setDIOMapping(uint32_t pin, uint32_t value) override
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: CC1101.cpp:1007
uint8_t getLQI() const
Gets LQI (Link Quality Indicator) of the last received packet.
Definition: CC1101.cpp:816
+
int16_t setOutputPower(int8_t pwr) override
Sets output power. Allowed values are -30, -20, -15, -10, 0, 5, 7 or 10 dBm.
Definition: CC1101.cpp:562
void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: CC1101.cpp:966
int16_t setCrcFiltering(bool enable=true)
Enable CRC filtering and generation.
Definition: CC1101.cpp:872
CC1101(Module *module)
Default constructor.
Definition: CC1101.cpp:5
int16_t setNodeAddress(uint8_t nodeAddr, uint8_t numBroadcastAddrs=0)
Sets node and broadcast addresses. Calling this method will also enable address filtering.
Definition: CC1101.cpp:746
+
int16_t setBitRate(float br) override
Sets bit rate. Allowed values range from 0.025 to 600.0 kbps.
Definition: CC1101.cpp:451
int16_t enableSyncWordFiltering(uint8_t maxErrBits=0, bool requireCarrierSense=false)
Enable sync word filtering and generation.
Definition: CC1101.cpp:848
-
void clearPacketSentAction()
Clears interrupt service routine to call when a packet is sent.
Definition: CC1101.cpp:273
-
void clearPacketReceivedAction()
Clears interrupt service routine to call when a packet is received.
Definition: CC1101.cpp:265
int16_t standby() override
Sets the module to standby mode.
Definition: CC1101.cpp:170
void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: CC1101.cpp:970
-
uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: CC1101.cpp:974
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
-
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values are in bands 300.0 to 348.0 MHz, 387.0 to 464....
Definition: CC1101.cpp:425
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: CC1101.cpp:757
void setGdo0Action(void(*func)(void), uint32_t dir)
Sets interrupt service routine to call when GDO0 activates.
Definition: CC1101.cpp:253
int16_t receiveDirectAsync()
Starts asynchronous direct mode reception.
Definition: CC1101.cpp:229
-
int16_t setBitRate(float br)
Sets bit rate. Allowed values range from 0.025 to 600.0 kbps.
Definition: CC1101.cpp:451
int16_t receiveDirect() override
Starts synchronous direct mode reception.
Definition: CC1101.cpp:225
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Allowed values are RADIOLIB_ENCODING_NRZ, RADIOLIB_ENCODING_MANCHESTER,...
Definition: CC1101.cpp:942
int16_t checkOutputPower(int8_t power, int8_t *clipped) override
Check if output power is configurable. This method is needed for compatibility with PhysicalLayer::ch...
Definition: CC1101.cpp:587
void clearGdo0Action()
Clears interrupt service routine to call when GDO0 activates.
Definition: CC1101.cpp:257
+
float getRSSI() override
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. In asynchronous direct mo...
Definition: CC1101.cpp:796
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
int16_t getFrequencyDeviation(float *freqDev)
Gets frequency deviation.
Definition: CC1101.cpp:537
int16_t setPromiscuousMode(bool enable=true, bool requireCarrierSense=false)
Set modem in "sniff" mode: no packet filtering (e.g., no preamble, sync word, address,...
Definition: CC1101.cpp:882
void clearGdo2Action()
Clears interrupt service routine to call when GDO0 activates.
Definition: CC1101.cpp:285
int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_CC1101_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode.
Definition: CC1101.cpp:834
+
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values are in bands 300.0 to 348.0 MHz, 387.0 to 464....
Definition: CC1101.cpp:425
void setGdo2Action(void(*func)(void), uint32_t dir)
Sets interrupt service routine to call when GDO2 activates.
Definition: CC1101.cpp:277
int16_t begin(float freq=RADIOLIB_CC1101_DEFAULT_FREQ, float br=RADIOLIB_CC1101_DEFAULT_BR, float freqDev=RADIOLIB_CC1101_DEFAULT_FREQDEV, float rxBw=RADIOLIB_CC1101_DEFAULT_RXBW, int8_t pwr=RADIOLIB_CC1101_DEFAULT_POWER, uint8_t preambleLength=RADIOLIB_CC1101_DEFAULT_PREAMBLELEN)
Initialization method.
Definition: CC1101.cpp:9
int16_t setDataShaping(uint8_t sh) override
Sets Gaussian filter bandwidth-time product that will be used for data shaping. Allowed value is RADI...
Definition: CC1101.cpp:923
+
int16_t startReceive() override
Interrupt-driven receive method. GDO0 will be activated when full packet is received.
Definition: CC1101.cpp:342
int16_t setPreambleLength(uint8_t preambleLength, uint8_t qualityThreshold)
Sets preamble length.
Definition: CC1101.cpp:704
bool getPromiscuousMode()
Get whether the modem is in promiscuous mode: no packet filtering (e.g., no preamble,...
Definition: CC1101.cpp:919
int16_t transmitDirectAsync(uint32_t frf=0)
Starts asynchronous direct mode transmission.
Definition: CC1101.cpp:198
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: CC1101.cpp:331
-
int16_t startReceive()
Interrupt-driven receive method. GDO0 will be activated when full packet is received.
Definition: CC1101.cpp:342
int16_t setOOK(bool enableOOK)
Enables/disables OOK modulation instead of FSK.
Definition: CC1101.cpp:767
-
void setPacketSentAction(void(*func)(void))
Sets interrupt service routine to call when a packet is sent.
Definition: CC1101.cpp:269
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:68
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:77
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:54
diff --git a/class_c_c1101-members.html b/class_c_c1101-members.html index d12e029a..c5e5d1bf 100644 --- a/class_c_c1101-members.html +++ b/class_c_c1101-members.html @@ -100,8 +100,8 @@ $(document).ready(function(){initNavTree('class_c_c1101.html',''); initResizable clearChannelScanAction()PhysicalLayervirtual clearGdo0Action()CC1101 clearGdo2Action()CC1101 - clearPacketReceivedAction()CC1101virtual - clearPacketSentAction()CC1101virtual + clearPacketReceivedAction() overrideCC1101virtual + clearPacketSentAction() overrideCC1101virtual disableAddressFiltering()CC1101 disableSyncWordFiltering(bool requireCarrierSense=false)CC1101 dropSync()PhysicalLayer @@ -115,7 +115,7 @@ $(document).ready(function(){initNavTree('class_c_c1101.html',''); initResizable getLQI() constCC1101 getPacketLength(bool update=true) overrideCC1101virtual getPromiscuousMode()CC1101 - getRSSI()CC1101virtual + getRSSI() overrideCC1101virtual getSNR()PhysicalLayervirtual getTimeOnAir(size_t len)PhysicalLayervirtual invertIQ(bool enable)PhysicalLayervirtual @@ -125,9 +125,9 @@ $(document).ready(function(){initNavTree('class_c_c1101.html',''); initResizable PhysicalLayer(float step, size_t maxLen)PhysicalLayer random(int32_t max)PhysicalLayer random(int32_t min, int32_t max)PhysicalLayer - randomByte()CC1101virtual + randomByte() overrideCC1101virtual read(bool drop=true)PhysicalLayer - readBit(uint32_t pin)CC1101virtual + readBit(uint32_t pin) overrideCC1101virtual readData(uint8_t *data, size_t len) overrideCC1101virtual readData(uint8_t *data, size_t len)CC1101 receive(uint8_t *data, size_t len) overrideCC1101virtual @@ -136,24 +136,24 @@ $(document).ready(function(){initNavTree('class_c_c1101.html',''); initResizable receiveDirectAsync()CC1101 reset()CC1101 scanChannel()PhysicalLayervirtual - setBitRate(float br)CC1101virtual + setBitRate(float br) overrideCC1101virtual setChannelScanAction(void(*func)(void))PhysicalLayervirtual setCrcFiltering(bool enable=true)CC1101 setDataRate(DataRate_t dr)PhysicalLayervirtual setDataShaping(uint8_t sh) overrideCC1101virtual - setDIOMapping(uint32_t pin, uint32_t value)CC1101virtual - setDirectAction(void(*func)(void))CC1101virtual + setDIOMapping(uint32_t pin, uint32_t value) overrideCC1101virtual + setDirectAction(void(*func)(void)) overrideCC1101virtual setDirectSyncWord(uint32_t syncWord, uint8_t len)PhysicalLayer setEncoding(uint8_t encoding) overrideCC1101virtual - setFrequency(float freq)CC1101virtual + setFrequency(float freq) overrideCC1101virtual setFrequencyDeviation(float freqDev) overrideCC1101virtual setGdo0Action(void(*func)(void), uint32_t dir)CC1101 setGdo2Action(void(*func)(void), uint32_t dir)CC1101 setNodeAddress(uint8_t nodeAddr, uint8_t numBroadcastAddrs=0)CC1101 setOOK(bool enableOOK)CC1101 - setOutputPower(int8_t pwr)CC1101virtual - setPacketReceivedAction(void(*func)(void))CC1101virtual - setPacketSentAction(void(*func)(void))CC1101virtual + setOutputPower(int8_t pwr) overrideCC1101virtual + setPacketReceivedAction(void(*func)(void)) overrideCC1101virtual + setPacketSentAction(void(*func)(void)) overrideCC1101virtual setPreambleLength(uint8_t preambleLength, uint8_t qualityThreshold)CC1101 PhysicalLayer::setPreambleLength(size_t len)PhysicalLayervirtual setPromiscuousMode(bool enable=true, bool requireCarrierSense=false)CC1101 @@ -168,8 +168,8 @@ $(document).ready(function(){initNavTree('class_c_c1101.html',''); initResizable standby(uint8_t mode) overrideCC1101virtual startChannelScan()PhysicalLayervirtual startDirect()PhysicalLayer - startReceive()CC1101virtual - startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)CC1101virtual + startReceive() overrideCC1101virtual + startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len) overrideCC1101virtual startTransmit(uint8_t *data, size_t len, uint8_t addr=0) overrideCC1101virtual startTransmit(const char *str, uint8_t addr=0)CC1101 startTransmit(uint8_t *data, size_t len, uint8_t addr=0)CC1101 diff --git a/class_c_c1101.html b/class_c_c1101.html index f513174f..3382fb77 100644 --- a/class_c_c1101.html +++ b/class_c_c1101.html @@ -158,41 +158,41 @@ void clearGdo2Action ()  Clears interrupt service routine to call when GDO0 activates.
  -void setPacketReceivedAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is received. More...
-  - -void clearPacketReceivedAction () - Clears interrupt service routine to call when a packet is received.
-  -void setPacketSentAction (void(*func)(void)) - Sets interrupt service routine to call when a packet is sent. More...
-  - -void clearPacketSentAction () - Clears interrupt service routine to call when a packet is sent.
-  +void setPacketReceivedAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is received. More...
+  + +void clearPacketReceivedAction () override + Clears interrupt service routine to call when a packet is received.
+  +void setPacketSentAction (void(*func)(void)) override + Sets interrupt service routine to call when a packet is sent. More...
+  + +void clearPacketSentAction () override + Clears interrupt service routine to call when a packet is sent.
+  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 PhysicalLayer. More...
  int16_t finishTransmit () override  Clean up after transmission is done. More...
  -int16_t startReceive () - Interrupt-driven receive method. GDO0 will be activated when full packet is received. More...
-  -int16_t startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len) - Interrupt-driven receive method, implemented for compatibility with PhysicalLayer. More...
-  +int16_t startReceive () override + Interrupt-driven receive method. GDO0 will be activated when full packet is received. More...
+  +int16_t startReceive (uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len) override + Interrupt-driven receive method, implemented for compatibility with PhysicalLayer. More...
+  int16_t readData (uint8_t *data, size_t len) override  Reads data received after calling startReceive method. When the packet length is not known in advance, getPacketLength method must be called BEFORE calling readData! More...
  -int16_t setFrequency (float freq) - Sets carrier frequency. Allowed values are in bands 300.0 to 348.0 MHz, 387.0 to 464.0 MHz and 779.0 to 928.0 MHz. More...
-  -int16_t setBitRate (float br) - Sets bit rate. Allowed values range from 0.025 to 600.0 kbps. More...
-  +int16_t setFrequency (float freq) override + Sets carrier frequency. Allowed values are in bands 300.0 to 348.0 MHz, 387.0 to 464.0 MHz and 779.0 to 928.0 MHz. More...
+  +int16_t setBitRate (float br) override + Sets bit rate. Allowed values range from 0.025 to 600.0 kbps. More...
+  int16_t setRxBandwidth (float rxBw)  Sets receiver bandwidth. Allowed values are 58, 68, 81, 102, 116, 135, 162, 203, 232, 270, 325, 406, 464, 541, 650 and 812 kHz. More...
  @@ -205,9 +205,9 @@ void int16_t getFrequencyDeviation (float *freqDev)  Gets frequency deviation. More...
  -int16_t setOutputPower (int8_t pwr) - Sets output power. Allowed values are -30, -20, -15, -10, 0, 5, 7 or 10 dBm. More...
-  +int16_t setOutputPower (int8_t pwr) override + Sets output power. Allowed values are -30, -20, -15, -10, 0, 5, 7 or 10 dBm. More...
+  int16_t checkOutputPower (int8_t power, int8_t *clipped) override  Check if output power is configurable. This method is needed for compatibility with PhysicalLayer::checkOutputPower. More...
  @@ -232,9 +232,9 @@ void int16_t setOOK (bool enableOOK)  Enables/disables OOK modulation instead of FSK. More...
  -float getRSSI () - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. In asynchronous direct mode, returns the current RSSI level. More...
-  +float getRSSI () override + Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. In asynchronous direct mode, returns the current RSSI level. More...
+  uint8_t getLQI () const  Gets LQI (Link Quality Indicator) of the last received packet. More...
  @@ -274,21 +274,21 @@ void void setRfSwitchTable (const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])  Some modules contain external RF switch controlled by pins. This function gives RadioLib control over those pins to automatically switch between various modes. More...
  -uint8_t randomByte () - Get one truly random byte from RSSI noise. More...
-  +uint8_t randomByte () override + Get one truly random byte from RSSI noise. More...
+  int16_t getChipVersion ()  Read version SPI register. Should return CC1101_VERSION_LEGACY (0x04) or CC1101_VERSION_CURRENT (0x14) if CC1101 is connected and working. More...
  -void setDirectAction (void(*func)(void)) - Set interrupt service routine function to call when data bit is receveid in direct mode. More...
-  -void readBit (uint32_t pin) - Function to read and process data bit in direct reception mode. More...
-  -int16_t setDIOMapping (uint32_t pin, uint32_t value) - Configure DIO pin mapping to get a given signal on a DIO pin (if available). More...
-  +void setDirectAction (void(*func)(void)) override + Set interrupt service routine function to call when data bit is receveid in direct mode. More...
+  +void readBit (uint32_t pin) override + Function to read and process data bit in direct reception mode. More...
+  +int16_t setDIOMapping (uint32_t pin, uint32_t value) override + Configure DIO pin mapping to get a given signal on a DIO pin (if available). More...
+  int16_t transmit (const char *str, uint8_t addr=0)  C-string transmit method. More...
  @@ -867,8 +867,8 @@ virtual void  - -

◆ getRSSI()

+ +

◆ getRSSI()

@@ -885,7 +885,7 @@ virtual void  -virtual +overridevirtual
- -

◆ randomByte()

+ +

◆ randomByte()

@@ -915,7 +915,7 @@ virtual void  -virtual +overridevirtual
- -

◆ readBit()

+ +

◆ readBit()

@@ -946,7 +946,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setBitRate()

+ +

◆ setBitRate()

@@ -1176,7 +1176,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setDIOMapping()

+ +

◆ setDIOMapping()

@@ -1287,7 +1287,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setDirectAction()

+ +

◆ setDirectAction()

@@ -1325,7 +1325,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setFrequency()

+ +

◆ setFrequency()

@@ -1398,7 +1398,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setOutputPower()

+ +

◆ setOutputPower()

@@ -1611,7 +1611,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setPacketReceivedAction()

+ +

◆ setPacketReceivedAction()

@@ -1648,7 +1648,7 @@ virtual void  -virtual +overridevirtual
- -

◆ setPacketSentAction()

+ +

◆ setPacketSentAction()

@@ -1684,7 +1684,7 @@ virtual void  -virtual +overridevirtual
- -

◆ startReceive() [1/2]

+ +

◆ startReceive() [1/2]

@@ -2096,7 +2096,7 @@ virtual void  -virtual +overridevirtual
- -

◆ startReceive() [2/2]

+ +

◆ startReceive() [2/2]

@@ -2149,7 +2149,7 @@ virtual void  -virtual +overridevirtual
diff --git a/class_c_c1101.js b/class_c_c1101.js index 2ff5be0e..b05aa887 100644 --- a/class_c_c1101.js +++ b/class_c_c1101.js @@ -7,8 +7,8 @@ var class_c_c1101 = [ "checkOutputPower", "class_c_c1101.html#aa86c74ed4339b70be6950e9f92be1d81", null ], [ "clearGdo0Action", "class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8", null ], [ "clearGdo2Action", "class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4", null ], - [ "clearPacketReceivedAction", "class_c_c1101.html#a70fa0ead602f3128f161fc2018cc3af6", null ], - [ "clearPacketSentAction", "class_c_c1101.html#a70ac3d16c54a7340f83f3c5ac6bb8e40", null ], + [ "clearPacketReceivedAction", "class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61", null ], + [ "clearPacketSentAction", "class_c_c1101.html#a2791ebc7fe71626407278de5852b492f", null ], [ "disableAddressFiltering", "class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883", null ], [ "disableSyncWordFiltering", "class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b", null ], [ "enableSyncWordFiltering", "class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4", null ], @@ -19,10 +19,10 @@ var class_c_c1101 = [ "getLQI", "class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb", null ], [ "getPacketLength", "class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0", null ], [ "getPromiscuousMode", "class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6", null ], - [ "getRSSI", "class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc", null ], + [ "getRSSI", "class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb", null ], [ "packetMode", "class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2", null ], - [ "randomByte", "class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833", null ], - [ "readBit", "class_c_c1101.html#a206e6c6f094aa7e68388fd9412cd969e", null ], + [ "randomByte", "class_c_c1101.html#a13cf332824479442cc20fc1c6972b092", null ], + [ "readBit", "class_c_c1101.html#a11a92d885beefdf2db291301550a980c", null ], [ "readData", "class_c_c1101.html#a3563453988a83d22dd07d4691543a300", null ], [ "readData", "class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22", null ], [ "receive", "class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8", null ], @@ -30,21 +30,21 @@ var class_c_c1101 = [ "receiveDirect", "class_c_c1101.html#ab053c185330519d58f364790108d29ac", null ], [ "receiveDirectAsync", "class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2", null ], [ "reset", "class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21", null ], - [ "setBitRate", "class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37", null ], + [ "setBitRate", "class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9", null ], [ "setCrcFiltering", "class_c_c1101.html#a60695681fc74a37f2a31a9638552e877", null ], [ "setDataShaping", "class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6", null ], - [ "setDIOMapping", "class_c_c1101.html#a009c31564866d8d14759f17f29b08ee6", null ], - [ "setDirectAction", "class_c_c1101.html#a5161fa10b19d857840579601ef565363", null ], + [ "setDIOMapping", "class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862", null ], + [ "setDirectAction", "class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505", null ], [ "setEncoding", "class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea", null ], - [ "setFrequency", "class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e", null ], + [ "setFrequency", "class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee", null ], [ "setFrequencyDeviation", "class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3", null ], [ "setGdo0Action", "class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7", null ], [ "setGdo2Action", "class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9", null ], [ "setNodeAddress", "class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8", null ], [ "setOOK", "class_c_c1101.html#afa64d1ad4789d3146b38d14437234756", null ], - [ "setOutputPower", "class_c_c1101.html#a4f89d13ea170157df109eca36674f0aa", null ], - [ "setPacketReceivedAction", "class_c_c1101.html#a4f47f83e7a1cb6cd014161803db867fb", null ], - [ "setPacketSentAction", "class_c_c1101.html#aff4ddeb8f8680307079a1e84de1cc676", null ], + [ "setOutputPower", "class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf", null ], + [ "setPacketReceivedAction", "class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e", null ], + [ "setPacketSentAction", "class_c_c1101.html#a336999da23e554073a9fa628131883f5", null ], [ "setPreambleLength", "class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570", null ], [ "setPromiscuousMode", "class_c_c1101.html#ac1155543b27e46fa27aa4c9180da18bb", null ], [ "setRfSwitchPins", "class_c_c1101.html#a5ef45183690bb1879f106af079b01140", null ], @@ -54,8 +54,8 @@ var class_c_c1101 = [ "setSyncWord", "class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6", null ], [ "standby", "class_c_c1101.html#a7612bf81e48086004c62548de2682266", null ], [ "standby", "class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a", null ], - [ "startReceive", "class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3", null ], - [ "startReceive", "class_c_c1101.html#a22ebe5b75a09c420cf6e6464dac3fe33", null ], + [ "startReceive", "class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19", null ], + [ "startReceive", "class_c_c1101.html#ad4d274deead2f6ce270810e4cb5b24d2", null ], [ "startTransmit", "class_c_c1101.html#a923654706eff5118ef6e84214e837f27", null ], [ "startTransmit", "class_c_c1101.html#ad59e37ce0606dc8051e40be9d14cfec3", null ], [ "startTransmit", "class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea", null ], diff --git a/class_physical_layer.html b/class_physical_layer.html index 4b182cb9..a930438c 100644 --- a/class_physical_layer.html +++ b/class_physical_layer.html @@ -647,7 +647,7 @@ class LoRaWANNode

Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.

Returns
RSSI of the last received packet in dBm.
-

Reimplemented in SX128x, SX1278, SX1272, RF69, LR11x0, and CC1101.

+

Reimplemented in CC1101, SX128x, SX1278, SX1272, RF69, and LR11x0.

@@ -924,7 +924,7 @@ class LoRaWANNode

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

Returns
TRNG byte.
-

Reimplemented in SX128x, SX127x, SX126x, Si443x, RF69, and CC1101.

+

Reimplemented in CC1101, SX128x, SX127x, SX126x, Si443x, and RF69.

@@ -987,7 +987,7 @@ class LoRaWANNode -

Reimplemented in SX128x, SX127x, SX126x, Si443x, RF69, and CC1101.

+

Reimplemented in CC1101, SX128x, SX127x, SX126x, Si443x, and RF69.

@@ -1180,7 +1180,7 @@ class LoRaWANNode
Returns
Status Codes
-

Reimplemented in SX1278, SX1272, SX128x, SX126x, SX1233, Si443x, RF69, nRF24, LR11x0, and CC1101.

+

Reimplemented in SX1278, SX1272, CC1101, SX128x, SX126x, SX1233, Si443x, RF69, nRF24, and LR11x0.

@@ -1338,7 +1338,7 @@ class LoRaWANNode
Returns
Status Codes
-

Reimplemented in SX127x, RF69, and CC1101.

+

Reimplemented in CC1101, SX127x, and RF69.

@@ -1374,7 +1374,7 @@ class LoRaWANNode -

Reimplemented in SX128x, SX127x, SX126x, Si443x, RF69, and CC1101.

+

Reimplemented in CC1101, SX128x, SX127x, SX126x, Si443x, and RF69.

@@ -1486,7 +1486,7 @@ class LoRaWANNode
Returns
Status Codes
-

Reimplemented in SX128x, SX1279, SX1278, SX1277, SX1276, SX1272, SX1268, SX1262, Si4432, Si4430, RF69, nRF24, LR1120, LR1110, and CC1101.

+

Reimplemented in CC1101, SX128x, SX1279, SX1278, SX1277, SX1276, SX1272, SX1268, SX1262, Si4432, Si4430, RF69, nRF24, LR1120, and LR1110.

@@ -1560,7 +1560,7 @@ class LoRaWANNode
Returns
Status Codes
-

Reimplemented in SX128x, nRF24, CC1101, SX1278, SX1272, STM32WLx, SX1268, SX1262, SX1261, Si4432, Si4431, Si4430, and LR11x0.

+

Reimplemented in CC1101, SX128x, nRF24, SX1278, SX1272, STM32WLx, SX1268, SX1262, SX1261, Si4432, Si4431, Si4430, and LR11x0.

@@ -1596,7 +1596,7 @@ class LoRaWANNode -

Reimplemented in SX128x, SX127x, SX126x, STM32WLx, Si443x, RF69, nRF24, LR11x0, and CC1101.

+

Reimplemented in CC1101, SX128x, SX127x, SX126x, STM32WLx, Si443x, RF69, nRF24, and LR11x0.

@@ -1632,7 +1632,7 @@ class LoRaWANNode -

Reimplemented in SX128x, SX127x, SX126x, STM32WLx, Si443x, RF69, nRF24, LR11x0, and CC1101.

+

Reimplemented in CC1101, SX128x, SX127x, SX126x, STM32WLx, Si443x, RF69, nRF24, and LR11x0.

@@ -1888,7 +1888,7 @@ class LoRaWANNode

Sets module to received mode using its default configuration.

Returns
Status Codes
-

Reimplemented in SX128x, SX127x, SX126x, Si443x, RF69, nRF24, LR11x0, and CC1101.

+

Reimplemented in CC1101, SX128x, SX127x, SX126x, Si443x, RF69, nRF24, and LR11x0.

@@ -1950,7 +1950,7 @@ class LoRaWANNode
Returns
Status Codes
-

Reimplemented in SX126x, SX127x, Si443x, RF69, nRF24, and CC1101.

+

Reimplemented in SX126x, CC1101, SX127x, Si443x, RF69, and nRF24.

diff --git a/functions_c.html b/functions_c.html index 080c290f..0baf3390 100644 --- a/functions_c.html +++ b/functions_c.html @@ -167,7 +167,7 @@ $(document).ready(function(){initNavTree('functions_c.html',''); initResizable() , Si443x
  • clearPacketReceivedAction() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer @@ -179,7 +179,7 @@ $(document).ready(function(){initNavTree('functions_c.html',''); initResizable() , SX128x
  • clearPacketSentAction() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer diff --git a/functions_func_c.html b/functions_func_c.html index 730d121b..10d19456 100644 --- a/functions_func_c.html +++ b/functions_func_c.html @@ -160,7 +160,7 @@ $(document).ready(function(){initNavTree('functions_func_c.html',''); initResiza , Si443x
  • clearPacketReceivedAction() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer @@ -172,7 +172,7 @@ $(document).ready(function(){initNavTree('functions_func_c.html',''); initResiza , SX128x
  • clearPacketSentAction() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer diff --git a/functions_func_g.html b/functions_func_g.html index 2eebd25a..296158b8 100644 --- a/functions_func_g.html +++ b/functions_func_g.html @@ -210,7 +210,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza : SX1280
  • getRSSI() -: CC1101 +: CC1101 , LR11x0 , PhysicalLayer , RF69 diff --git a/functions_func_r.html b/functions_func_r.html index 3c222e8c..b0189a9b 100644 --- a/functions_func_r.html +++ b/functions_func_r.html @@ -101,7 +101,7 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza : PhysicalLayer
  • randomByte() -: CC1101 +: CC1101 , PhysicalLayer , RF69 , Si443x @@ -117,7 +117,7 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza , PhysicalLayer
  • readBit() -: CC1101 +: CC1101 , PhysicalLayer , RF69 , Si443x diff --git a/functions_func_s.html b/functions_func_s.html index f248d262..b91a4bf1 100644 --- a/functions_func_s.html +++ b/functions_func_s.html @@ -156,7 +156,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza , SX128x
  • setBitRate() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer @@ -266,7 +266,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : SX126x
  • setDIOMapping() -: CC1101 +: CC1101 , PhysicalLayer , RF69 , SX127x @@ -275,7 +275,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : SX127x
  • setDirectAction() -: CC1101 +: CC1101 , PhysicalLayer , RF69 , Si443x @@ -316,7 +316,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza , SX127x
  • setFrequency() -: CC1101 +: CC1101 , LR1110 , LR1120 , nRF24 @@ -411,7 +411,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza , SX127x
  • setOutputPower() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer @@ -428,7 +428,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza , SX128x
  • setPacketReceivedAction() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer @@ -440,7 +440,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza , SX128x
  • setPacketSentAction() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer @@ -680,7 +680,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : SX1280
  • startReceive() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PagerClient diff --git a/functions_g.html b/functions_g.html index c757930d..afdc70ed 100644 --- a/functions_g.html +++ b/functions_g.html @@ -210,7 +210,7 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable() : SX1280
  • getRSSI() -: CC1101 +: CC1101 , LR11x0 , PhysicalLayer , RF69 diff --git a/functions_r.html b/functions_r.html index e5b8c34e..291dc834 100644 --- a/functions_r.html +++ b/functions_r.html @@ -101,7 +101,7 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable() : PhysicalLayer
  • randomByte() -: CC1101 +: CC1101 , PhysicalLayer , RF69 , Si443x @@ -120,7 +120,7 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable() , PhysicalLayer
  • readBit() -: CC1101 +: CC1101 , PhysicalLayer , RF69 , Si443x diff --git a/functions_s.html b/functions_s.html index df9bd803..f584ca33 100644 --- a/functions_s.html +++ b/functions_s.html @@ -162,7 +162,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() , SX128x
  • setBitRate() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer @@ -272,7 +272,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : SX126x
  • setDIOMapping() -: CC1101 +: CC1101 , PhysicalLayer , RF69 , SX127x @@ -281,7 +281,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : SX127x
  • setDirectAction() -: CC1101 +: CC1101 , PhysicalLayer , RF69 , Si443x @@ -322,7 +322,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() , SX127x
  • setFrequency() -: CC1101 +: CC1101 , LR1110 , LR1120 , nRF24 @@ -417,7 +417,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() , SX127x
  • setOutputPower() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer @@ -434,7 +434,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() , SX128x
  • setPacketReceivedAction() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer @@ -446,7 +446,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() , SX128x
  • setPacketSentAction() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PhysicalLayer @@ -710,7 +710,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : SX1280
  • startReceive() -: CC1101 +: CC1101 , LR11x0 , nRF24 , PagerClient diff --git a/navtreeindex0.js b/navtreeindex0.js index ab1bf228..aacef065 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -121,71 +121,71 @@ var NAVTREEINDEX0 = "class_bell_client.html#ab9d0d76bb88fc8bdc995ab800063c149":[3,0,4,1], "class_bell_client.html#add9edc89cd6ff5c527ddbdabe79cb60f":[3,0,4,2], "class_c_c1101.html":[3,0,6], -"class_c_c1101.html#a009c31564866d8d14759f17f29b08ee6":[3,0,6,33], +"class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61":[3,0,6,7], "class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3":[3,0,6,37], "class_c_c1101.html#a0df2938e2509a8f2746b20ae0558d4ea":[3,0,6,58], +"class_c_c1101.html#a11a92d885beefdf2db291301550a980c":[3,0,6,22], "class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0":[3,0,6,17], +"class_c_c1101.html#a13cf332824479442cc20fc1c6972b092":[3,0,6,21], "class_c_c1101.html#a1fc87275c6f5d7f6927ca51a175eba21":[3,0,6,29], -"class_c_c1101.html#a206e6c6f094aa7e68388fd9412cd969e":[3,0,6,22], -"class_c_c1101.html#a22ebe5b75a09c420cf6e6464dac3fe33":[3,0,6,55], "class_c_c1101.html#a240eef8fa7d838d76f3c11086dc50e46":[3,0,6,62], +"class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505":[3,0,6,34], +"class_c_c1101.html#a2791ebc7fe71626407278de5852b492f":[3,0,6,8], +"class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e":[3,0,6,43], "class_c_c1101.html#a2a4c6e622dffd2788d8ac52d708b0705":[3,0,6,14], +"class_c_c1101.html#a336999da23e554073a9fa628131883f5":[3,0,6,44], "class_c_c1101.html#a3563453988a83d22dd07d4691543a300":[3,0,6,23], "class_c_c1101.html#a381d0059d7a0ccd8a2f54d7d3376f9b6":[3,0,6,49], "class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2":[3,0,6,20], "class_c_c1101.html#a3dd42f8d5569487ea74f004ca652a709":[3,0,6,60], "class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6":[3,0,6,51], "class_c_c1101.html#a476adec156ae39974e70ef17b9af7db3":[3,0,6,1], -"class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc":[3,0,6,19], "class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,6,59], "class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b":[3,0,6,10], -"class_c_c1101.html#a4f47f83e7a1cb6cd014161803db867fb":[3,0,6,43], -"class_c_c1101.html#a4f89d13ea170157df109eca36674f0aa":[3,0,6,42], "class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f":[3,0,6,64], -"class_c_c1101.html#a5161fa10b19d857840579601ef565363":[3,0,6,34], +"class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862":[3,0,6,33], "class_c_c1101.html#a59ca9e8956e308159949638bf327e5fb":[3,0,6,16], +"class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf":[3,0,6,42], "class_c_c1101.html#a5ef45183690bb1879f106af079b01140":[3,0,6,47], "class_c_c1101.html#a60695681fc74a37f2a31a9638552e877":[3,0,6,31], "class_c_c1101.html#a6807e4254c4b55fa8d393b2bf8f2db3e":[3,0,6,0], "class_c_c1101.html#a6e62914790f132816134fc68c2bb5eb8":[3,0,6,40], +"class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9":[3,0,6,30], "class_c_c1101.html#a6fe55d0217bf5218865198ef8d6fdab4":[3,0,6,11], -"class_c_c1101.html#a70ac3d16c54a7340f83f3c5ac6bb8e40":[3,0,6,8], -"class_c_c1101.html#a70fa0ead602f3128f161fc2018cc3af6":[3,0,6,7], "class_c_c1101.html#a7612bf81e48086004c62548de2682266":[3,0,6,52], "class_c_c1101.html#a7b401995be4bc136063a035ce1820634":[3,0,6,48], "class_c_c1101.html#a7cb99a9200b21829b50e3fc3878573f4":[3,0,6,61], -"class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833":[3,0,6,21], "class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22":[3,0,6,24], "class_c_c1101.html#a923654706eff5118ef6e84214e837f27":[3,0,6,56], -"class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e":[3,0,6,36], "class_c_c1101.html#a9aee5df428d30b9c80b8a8700609a883":[3,0,6,9], "class_c_c1101.html#a9bee13612cf4da067faeb57d18ee2eb7":[3,0,6,38], "class_c_c1101.html#a9ec1ff1312d2caaae7e3e0389268fca2":[3,0,6,28], -"class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37":[3,0,6,30], "class_c_c1101.html#aa86c74ed4339b70be6950e9f92be1d81":[3,0,6,4], "class_c_c1101.html#ab053c185330519d58f364790108d29ac":[3,0,6,27], "class_c_c1101.html#ab4b98eb6af33d006306bb7514ed216ea":[3,0,6,35], "class_c_c1101.html#ab500e75fcf63f123eb3945925f361bd0":[3,0,6,3], "class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8":[3,0,6,5], +"class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb":[3,0,6,19], "class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8":[3,0,6,25], "class_c_c1101.html#ab89b0932dbacadc34d049a2bd2292001":[3,0,6,50], "class_c_c1101.html#abe26fa310e973bf2b14750b9eae02124":[3,0,6,15], "class_c_c1101.html#ac1155543b27e46fa27aa4c9180da18bb":[3,0,6,46], "class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4":[3,0,6,6], "class_c_c1101.html#ad25ad96cddf62273bffd601384d22275":[3,0,6,13], +"class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee":[3,0,6,36], +"class_c_c1101.html#ad4d274deead2f6ce270810e4cb5b24d2":[3,0,6,55], "class_c_c1101.html#ad59e37ce0606dc8051e40be9d14cfec3":[3,0,6,57], "class_c_c1101.html#ad71efbe54590e4431f3286ab99536fe9":[3,0,6,39], "class_c_c1101.html#ad86f23bb3d113d20f6238a671f18b565":[3,0,6,2], "class_c_c1101.html#adf96e77f25b7e256891601bef04f35a6":[3,0,6,32], +"class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19":[3,0,6,54], "class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570":[3,0,6,45], "class_c_c1101.html#aedc1067d0334bb69ed5316146014097d":[3,0,6,26], "class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6":[3,0,6,18], "class_c_c1101.html#aef7c152858537a40e71cf133962cb893":[3,0,6,63], "class_c_c1101.html#af374ad0ecd820a01baef7d177a30132a":[3,0,6,53], "class_c_c1101.html#af70ea860154cd6d2b2e2a6962e161c8f":[3,0,6,12], -"class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3":[3,0,6,54], "class_c_c1101.html#afa64d1ad4789d3146b38d14437234756":[3,0,6,41], -"class_c_c1101.html#aff4ddeb8f8680307079a1e84de1cc676":[3,0,6,44], "class_external_radio.html":[3,0,8], "class_external_radio.html#a02928a19eab0eab615c02180cedda3eb":[3,0,8,4], "class_external_radio.html#a49f10e1b05e7463583ac05b3284b9dda":[3,0,8,0], diff --git a/navtreeindex5.js b/navtreeindex5.js index e8da438a..80709c65 100644 --- a/navtreeindex5.js +++ b/navtreeindex5.js @@ -96,8 +96,8 @@ var NAVTREEINDEX5 = "group__typedefs.html":[2,7], "group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd":[2,7,0], "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,3,0], "pages.html":[], diff --git a/search/all_10.js b/search/all_10.js index f2b20758..3411e4a0 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -22,7 +22,7 @@ var searchData= ['setambienttemperature_394',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], ['setautoack_395',['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_396',['setBandwidth',['../class_s_x126x.html#a2f60df59c80241d98ce078c0417a7f08',1,'SX126x::setBandwidth()'],['../class_s_x128x.html#ae93c99c85deb950fe9bc7101142b5f6a',1,'SX128x::setBandwidth()'],['../class_s_x1278.html#a46c27ed1ebaae4e3ed8afe3ae6941dd6',1,'SX1278::setBandwidth()'],['../class_s_x1272.html#a0cc8eeb00241031796fc73b08711469b',1,'SX1272::setBandwidth()'],['../class_l_r11x0.html#abf961ec7d93feb6472f26b7b976ee0c9',1,'LR11x0::setBandwidth()'],['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()']]], - ['setbitrate_397',['setBitRate',['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()'],['../class_l_r11x0.html#a03ab7a24fec379c6ba2d642e1133c4f2',1,'LR11x0::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x1233.html#af245e451dca502ee8975c7ecd291a859',1,'SX1233::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()']]], + ['setbitrate_397',['setBitRate',['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()'],['../class_l_r11x0.html#a03ab7a24fec379c6ba2d642e1133c4f2',1,'LR11x0::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_s_x1233.html#af245e451dca502ee8975c7ecd291a859',1,'SX1233::setBitRate()'],['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()']]], ['setbroadcastaddress_398',['setBroadcastAddress',['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::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()']]], ['setbuffernonces_399',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], ['setbuffersession_400',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], @@ -41,9 +41,9 @@ var searchData= ['setdio0action_413',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], ['setdio1action_414',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], ['setdio2asrfswitch_415',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdiomapping_416',['setDIOMapping',['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()'],['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada',1,'RF69::setDIOMapping()'],['../class_c_c1101.html#a009c31564866d8d14759f17f29b08ee6',1,'CC1101::setDIOMapping()']]], + ['setdiomapping_416',['setDIOMapping',['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()'],['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada',1,'RF69::setDIOMapping()'],['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()']]], ['setdiopreambledetect_417',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], - ['setdirectaction_418',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::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#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction(void(*func)(void))']]], + ['setdirectaction_418',['setDirectAction',['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::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#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction(void(*func)(void))']]], ['setdirectsyncword_419',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], ['setdutycycle_420',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], ['setdwelltime_421',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], @@ -51,7 +51,7 @@ var searchData= ['setfhsshoppingperiod_423',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], ['setfifoemptyaction_424',['setFifoEmptyAction',['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()'],['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction(void(*func)(void))']]], ['setfifofullaction_425',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], - ['setfrequency_426',['setFrequency',['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency(float freq, bool calibrate)'],['../class_s_x1268.html#abf338b7036d692a4a8ca6bf305c0cb12',1,'SX1268::setFrequency(float freq)'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767',1,'SX1262::setFrequency(float freq)'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a1139585bff92c19ab645f68068930d60',1,'LR1120::setFrequency(float freq)'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1110.html#a58cfda71b08567a7e98e7d6fd03465b4',1,'LR1110::setFrequency(float freq)'],['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::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()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()']]], + ['setfrequency_426',['setFrequency',['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency(float freq, bool calibrate)'],['../class_s_x1268.html#abf338b7036d692a4a8ca6bf305c0cb12',1,'SX1268::setFrequency(float freq)'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767',1,'SX1262::setFrequency(float freq)'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a1139585bff92c19ab645f68068930d60',1,'LR1120::setFrequency(float freq)'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1110.html#a58cfda71b08567a7e98e7d6fd03465b4',1,'LR1110::setFrequency(float freq)'],['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::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()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()']]], ['setfrequencydeviation_427',['setFrequencyDeviation',['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()'],['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()']]], ['setgain_428',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], ['setgaincontrol_429',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], @@ -71,9 +71,9 @@ var searchData= ['setookpeakthresholddecrement_443',['setOokPeakThresholdDecrement',['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()'],['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement(uint8_t value)']]], ['setookpeakthresholdstep_444',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], ['setookthresholdtype_445',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], - ['setoutputpower_446',['setOutputPower',['../class_c_c1101.html#a4f89d13ea170157df109eca36674f0aa',1,'CC1101::setOutputPower()'],['../class_l_r11x0.html#a2522e288732aa77ec4f5a44e724612af',1,'LR11x0::setOutputPower(int8_t power)'],['../class_l_r11x0.html#a549ecc907732bca96dab27c433928740',1,'LR11x0::setOutputPower(int8_t power, bool forceHighPower)'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',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_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0',1,'SX128x::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()']]], - ['setpacketreceivedaction_447',['setPacketReceivedAction',['../class_si443x.html#a2badfa5db1ae5b9ec26ad7a8b3cab167',1,'Si443x::setPacketReceivedAction()'],['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#a697880c42c4b1def04c8fe7f3a023ffb',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ad63322c9c58dd82e4b9982f10e546f33',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#ad2bc2016783a3fcad3ad4e6518ee7fc8',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#a9194a526a32bd4891d59fe2a08641622',1,'STM32WLx::setPacketReceivedAction()'],['../class_r_f69.html#ac8bff26070735a733a24146d414c3c5f',1,'RF69::setPacketReceivedAction()'],['../classn_r_f24.html#a08b90ae895a6a45bceb11f67237245b4',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#a0a4d48bf33fe466ea4c14cd9db228dce',1,'LR11x0::setPacketReceivedAction()'],['../class_c_c1101.html#a4f47f83e7a1cb6cd014161803db867fb',1,'CC1101::setPacketReceivedAction(void(*func)(void))']]], - ['setpacketsentaction_448',['setPacketSentAction',['../class_c_c1101.html#aff4ddeb8f8680307079a1e84de1cc676',1,'CC1101::setPacketSentAction()'],['../class_l_r11x0.html#a88ff8c277e340c3273fb5715cd743cce',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a8e00d6729ee3c869cda8ccb5ae15ba27',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a27fad7a67c4239c19bd94d1ccfb493ca',1,'RF69::setPacketSentAction()'],['../class_si443x.html#aa55274bb345f178328ea2a674621fc84',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a771bb4b32a6d9a2f44326e85678e3270',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#a0417720a61b2d587e5633360cbecb33c',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a91476a51019910b958f464e73ba797c5',1,'SX127x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_s_x128x.html#acaa115bb9eb3d325d6baba1f578d678b',1,'SX128x::setPacketSentAction()']]], + ['setoutputpower_446',['setOutputPower',['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()'],['../class_l_r11x0.html#a2522e288732aa77ec4f5a44e724612af',1,'LR11x0::setOutputPower(int8_t power)'],['../class_l_r11x0.html#a549ecc907732bca96dab27c433928740',1,'LR11x0::setOutputPower(int8_t power, bool forceHighPower)'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',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_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0',1,'SX128x::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()']]], + ['setpacketreceivedaction_447',['setPacketReceivedAction',['../class_si443x.html#a2badfa5db1ae5b9ec26ad7a8b3cab167',1,'Si443x::setPacketReceivedAction()'],['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#a697880c42c4b1def04c8fe7f3a023ffb',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ad63322c9c58dd82e4b9982f10e546f33',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#ad2bc2016783a3fcad3ad4e6518ee7fc8',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#a9194a526a32bd4891d59fe2a08641622',1,'STM32WLx::setPacketReceivedAction()'],['../class_r_f69.html#ac8bff26070735a733a24146d414c3c5f',1,'RF69::setPacketReceivedAction()'],['../classn_r_f24.html#a08b90ae895a6a45bceb11f67237245b4',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#a0a4d48bf33fe466ea4c14cd9db228dce',1,'LR11x0::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction(void(*func)(void)) override']]], + ['setpacketsentaction_448',['setPacketSentAction',['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()'],['../class_l_r11x0.html#a88ff8c277e340c3273fb5715cd743cce',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a8e00d6729ee3c869cda8ccb5ae15ba27',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a27fad7a67c4239c19bd94d1ccfb493ca',1,'RF69::setPacketSentAction()'],['../class_si443x.html#aa55274bb345f178328ea2a674621fc84',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a771bb4b32a6d9a2f44326e85678e3270',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#a0417720a61b2d587e5633360cbecb33c',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a91476a51019910b958f464e73ba797c5',1,'SX127x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_s_x128x.html#acaa115bb9eb3d325d6baba1f578d678b',1,'SX128x::setPacketSentAction()']]], ['setpaconfig_449',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], ['setparamptime_450',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], ['setpreamblelength_451',['setPreambleLength',['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength()'],['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()']]], @@ -139,7 +139,7 @@ var searchData= ['startchannelscan_511',['startChannelScan',['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan()'],['../class_l_r11x0.html#aa09eb53b0c32a5f229e14c46bfe45a4f',1,'LR11x0::startChannelScan(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override'],['../class_s_x126x.html#aff8ec92d828421564322f13fb1c90223',1,'SX126x::startChannelScan()'],['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()']]], ['startdirect_512',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], ['startranging_513',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], - ['startreceive_514',['startReceive',['../class_l_r11x0.html#aabc154b86d9159fb5f769f62418d52b7',1,'LR11x0::startReceive()'],['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../class_c_c1101.html#a22ebe5b75a09c420cf6e6464dac3fe33',1,'CC1101::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x127x.html#aa77da235ab59a5066fc51418d4344a02',1,'SX127x::startReceive()'],['../class_l_r11x0.html#a437eaf0e0541983751abd28db45efea8',1,'LR11x0::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../classn_r_f24.html#ad672f45f73267249265044063e19b4fa',1,'nRF24::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_r_f69.html#ae8b6f87d4b798dc8fcda07bfa5af5a66',1,'RF69::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_si443x.html#a1070a6cde04a01d4a35da670f65ce539',1,'Si443x::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x126x.html#a16e8b271dc5e9af3015dd2901153cbde',1,'SX126x::startReceive()'],['../class_s_x126x.html#a0d5ce0a8d2a5b275676d9d98124312ce',1,'SX126x::startReceive(uint32_t timeout, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)'],['../class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd',1,'SX127x::startReceive()'],['../class_s_x128x.html#afe700968c1e02e335c389b59d950ca39',1,'SX128x::startReceive()'],['../class_s_x128x.html#a776286e4a267d1d71531bc9df7aa4276',1,'SX128x::startReceive(uint16_t timeout, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#a13dbafeeb9dd9ede72cc4d907738ac48',1,'PhysicalLayer::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x127x.html#ae274d8640bba5c22217db120c51c6bb8',1,'SX127x::startReceive()']]], + ['startreceive_514',['startReceive',['../class_l_r11x0.html#aabc154b86d9159fb5f769f62418d52b7',1,'LR11x0::startReceive()'],['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive() override'],['../class_c_c1101.html#ad4d274deead2f6ce270810e4cb5b24d2',1,'CC1101::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len) override'],['../class_s_x127x.html#aa77da235ab59a5066fc51418d4344a02',1,'SX127x::startReceive()'],['../class_l_r11x0.html#a437eaf0e0541983751abd28db45efea8',1,'LR11x0::startReceive()'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../classn_r_f24.html#ad672f45f73267249265044063e19b4fa',1,'nRF24::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../class_r_f69.html#ae8b6f87d4b798dc8fcda07bfa5af5a66',1,'RF69::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_si443x.html#a1070a6cde04a01d4a35da670f65ce539',1,'Si443x::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x126x.html#a16e8b271dc5e9af3015dd2901153cbde',1,'SX126x::startReceive()'],['../class_s_x126x.html#a0d5ce0a8d2a5b275676d9d98124312ce',1,'SX126x::startReceive(uint32_t timeout, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE, size_t len=0)'],['../class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd',1,'SX127x::startReceive()'],['../class_s_x128x.html#afe700968c1e02e335c389b59d950ca39',1,'SX128x::startReceive()'],['../class_s_x128x.html#a776286e4a267d1d71531bc9df7aa4276',1,'SX128x::startReceive(uint16_t timeout, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_physical_layer.html#a13dbafeeb9dd9ede72cc4d907738ac48',1,'PhysicalLayer::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x127x.html#ae274d8640bba5c22217db120c51c6bb8',1,'SX127x::startReceive()']]], ['startreceivedutycycle_515',['startReceiveDutyCycle',['../class_s_x126x.html#a5b4f8a41b593436b8c7a2a2d46ac387e',1,'SX126x']]], ['startreceivedutycycleauto_516',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a077f180905ce4818cbdacad0cd9fe841',1,'SX126x']]], ['startsignal_517',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]], diff --git a/search/all_2.js b/search/all_2.js index 6d0fcd16..797b4af3 100644 --- a/search/all_2.js +++ b/search/all_2.js @@ -17,8 +17,8 @@ var searchData= ['cleargdo0action_38',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], ['cleargdo2action_39',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], ['clearirqaction_40',['clearIrqAction',['../class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98',1,'LR11x0::clearIrqAction()'],['../classn_r_f24.html#aaf5887fe58c4d542cbed80482de1d42d',1,'nRF24::clearIrqAction()'],['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x::clearIrqAction()']]], - ['clearpacketreceivedaction_41',['clearPacketReceivedAction',['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#a20b21a4f804b148fede4b7199c4d1e71',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a098baa351e38f3b4caa19a362bc190d4',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#acd0306b28b4ce36bab5fc0199aef90f2',1,'SX126x::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aa910c9bd9ebca6e5eed4192c3b7a2e04',1,'STM32WLx::clearPacketReceivedAction()'],['../class_r_f69.html#ac302d3524dc802467a7ce91b2223db90',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a4295cfbfe05ec696aae680593f63ff7b',1,'nRF24::clearPacketReceivedAction()'],['../class_l_r11x0.html#a66a2afc6cef1e94e25efec15094816a8',1,'LR11x0::clearPacketReceivedAction()'],['../class_c_c1101.html#a70fa0ead602f3128f161fc2018cc3af6',1,'CC1101::clearPacketReceivedAction()'],['../class_si443x.html#a63a8bb675e7a0b54c493caa30adeb37e',1,'Si443x::clearPacketReceivedAction()']]], - ['clearpacketsentaction_42',['clearPacketSentAction',['../class_s_t_m32_w_lx.html#adb1ebf024255f5e14e6f0477c0113945',1,'STM32WLx::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()'],['../class_s_x128x.html#a86000239b7f9871168fdfa8f8c73b377',1,'SX128x::clearPacketSentAction()'],['../class_s_x127x.html#a56f45da4853eac1e9f6e753129d9e416',1,'SX127x::clearPacketSentAction()'],['../class_s_x126x.html#a0ffc659019932dbf1fda881710054cfb',1,'SX126x::clearPacketSentAction()'],['../class_si443x.html#a1835741ed147e575f9c03cf14c3b765e',1,'Si443x::clearPacketSentAction()'],['../class_r_f69.html#a3a8be5bcc37d3e4f5ac2d0310c8bac12',1,'RF69::clearPacketSentAction()'],['../classn_r_f24.html#a5ae45ceec01854226ecce0320f1051e2',1,'nRF24::clearPacketSentAction()'],['../class_l_r11x0.html#acd69e3b8825309703e13149b94e49d81',1,'LR11x0::clearPacketSentAction()'],['../class_c_c1101.html#a70ac3d16c54a7340f83f3c5ac6bb8e40',1,'CC1101::clearPacketSentAction()']]], + ['clearpacketreceivedaction_41',['clearPacketReceivedAction',['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#a20b21a4f804b148fede4b7199c4d1e71',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a098baa351e38f3b4caa19a362bc190d4',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#acd0306b28b4ce36bab5fc0199aef90f2',1,'SX126x::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aa910c9bd9ebca6e5eed4192c3b7a2e04',1,'STM32WLx::clearPacketReceivedAction()'],['../class_r_f69.html#ac302d3524dc802467a7ce91b2223db90',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a4295cfbfe05ec696aae680593f63ff7b',1,'nRF24::clearPacketReceivedAction()'],['../class_l_r11x0.html#a66a2afc6cef1e94e25efec15094816a8',1,'LR11x0::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction()'],['../class_si443x.html#a63a8bb675e7a0b54c493caa30adeb37e',1,'Si443x::clearPacketReceivedAction()']]], + ['clearpacketsentaction_42',['clearPacketSentAction',['../class_s_t_m32_w_lx.html#adb1ebf024255f5e14e6f0477c0113945',1,'STM32WLx::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()'],['../class_s_x128x.html#a86000239b7f9871168fdfa8f8c73b377',1,'SX128x::clearPacketSentAction()'],['../class_s_x127x.html#a56f45da4853eac1e9f6e753129d9e416',1,'SX127x::clearPacketSentAction()'],['../class_s_x126x.html#a0ffc659019932dbf1fda881710054cfb',1,'SX126x::clearPacketSentAction()'],['../class_si443x.html#a1835741ed147e575f9c03cf14c3b765e',1,'Si443x::clearPacketSentAction()'],['../class_r_f69.html#a3a8be5bcc37d3e4f5ac2d0310c8bac12',1,'RF69::clearPacketSentAction()'],['../classn_r_f24.html#a5ae45ceec01854226ecce0320f1051e2',1,'nRF24::clearPacketSentAction()'],['../class_l_r11x0.html#acd69e3b8825309703e13149b94e49d81',1,'LR11x0::clearPacketSentAction()'],['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()']]], ['cmds_43',['cmds',['../struct_module_1_1_s_p_i_config__t.html#a57ecca17835380862426d3cf38561185',1,'Module::SPIConfig_t']]], ['codingrate_44',['codingRate',['../struct_lo_ra_rate__t.html#ae382629257949329b2fcb01d565183df',1,'LoRaRate_t']]], ['commands_45',['commands',['../struct_lo_ra_w_a_n_mac_command_queue__t.html#a0a17c93236cdeb3703b9f69b4f6d702b',1,'LoRaWANMacCommandQueue_t']]], diff --git a/search/all_6.js b/search/all_6.js index bd88416b..8b6d2106 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -34,7 +34,7 @@ var searchData= ['getpictureheight_137',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], ['getpromiscuousmode_138',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], ['getrangingresult_139',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_140',['getRSSI',['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0b1fe4d0b1acfa454d7bab59cdf319fe',1,'SX1278::getRSSI()'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()'],['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a468ee0182883d8af22a0a4202ef7baa5',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()'],['../class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92',1,'SX1272::getRSSI()']]], + ['getrssi_140',['getRSSI',['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0b1fe4d0b1acfa454d7bab59cdf319fe',1,'SX1278::getRSSI()'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()'],['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a468ee0182883d8af22a0a4202ef7baa5',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()'],['../class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92',1,'SX1272::getRSSI()']]], ['getrst_141',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], ['getsnr_142',['getSNR',['../class_l_r11x0.html#ad4f32509aea96de6a7ec08a8e60a6bea',1,'LR11x0::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()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()']]], ['getstatus_143',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], diff --git a/search/all_f.js b/search/all_f.js index e4c05556..6f13e910 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -111,11 +111,11 @@ var searchData= ['radiolibprint_339',['RadioLibPrint',['../class_radio_lib_print.html',1,'']]], ['radiolibtime_5ft_340',['RadioLibTime_t',['../group__typedefs.html#ga210f31dd2bff7fb80563275648a5bbbd',1,'TypeDef.h']]], ['random_341',['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_342',['randomByte',['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()']]], + ['randombyte_342',['randomByte',['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()']]], ['range_343',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]], ['rcvseqnumber_344',['rcvSeqNumber',['../class_a_x25_frame.html#adce5294af25f09df752997d33ac0e87f',1,'AX25Frame']]], ['read_345',['read',['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]], - ['readbit_346',['readBit',['../class_r_f69.html#ab797840275fbccc40162225c32f5ffc3',1,'RF69::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_s_x126x.html#a8cdc4f25d4193dc75f9442874131eab3',1,'SX126x::readBit()'],['../class_c_c1101.html#a206e6c6f094aa7e68388fd9412cd969e',1,'CC1101::readBit()']]], + ['readbit_346',['readBit',['../class_r_f69.html#ab797840275fbccc40162225c32f5ffc3',1,'RF69::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_s_x126x.html#a8cdc4f25d4193dc75f9442874131eab3',1,'SX126x::readBit()'],['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()']]], ['readdata_347',['readData',['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_physical_layer.html#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_s_x128x.html#a94bca43258b09217fb476a2d8db784bb',1,'SX128x::readData()'],['../class_s_x127x.html#abfc840e8d6fe5e222f0143be17876745',1,'SX127x::readData()'],['../class_s_x126x.html#a3350cbfab628956c1a456383ac7bb2b2',1,'SX126x::readData()'],['../class_si443x.html#ad00ff8b58c68118ad74fee82028aa71e',1,'Si443x::readData()'],['../class_r_f69.html#a3983b66c83818b4082805bcafc712f00',1,'RF69::readData()'],['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData(uint8_t *data, size_t len)']]], ['receive_348',['receive',['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive(uint8_t *data, size_t len) override'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive(uint8_t *data, size_t len)'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive(uint8_t *data, size_t len)'],['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive(uint8_t *data, size_t len) override'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::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_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive()']]], ['receivedirect_349',['receiveDirect',['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect() override']]], diff --git a/search/functions_2.js b/search/functions_2.js index 519492f6..162af765 100644 --- a/search/functions_2.js +++ b/search/functions_2.js @@ -15,6 +15,6 @@ var searchData= ['cleargdo0action_677',['clearGdo0Action',['../class_c_c1101.html#ab5e6b3745f80cf61e1ced33303311df8',1,'CC1101']]], ['cleargdo2action_678',['clearGdo2Action',['../class_c_c1101.html#ac7a8b1fe7d08dc6db20cf1569b0d37b4',1,'CC1101']]], ['clearirqaction_679',['clearIrqAction',['../class_l_r11x0.html#ab167c4dc14e80d19f8b33d68c3f90d98',1,'LR11x0::clearIrqAction()'],['../classn_r_f24.html#aaf5887fe58c4d542cbed80482de1d42d',1,'nRF24::clearIrqAction()'],['../class_si443x.html#a8d019f58551346c3f3bd8b72d2486109',1,'Si443x::clearIrqAction()']]], - ['clearpacketreceivedaction_680',['clearPacketReceivedAction',['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#a20b21a4f804b148fede4b7199c4d1e71',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a098baa351e38f3b4caa19a362bc190d4',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#acd0306b28b4ce36bab5fc0199aef90f2',1,'SX126x::clearPacketReceivedAction()'],['../class_si443x.html#a63a8bb675e7a0b54c493caa30adeb37e',1,'Si443x::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aa910c9bd9ebca6e5eed4192c3b7a2e04',1,'STM32WLx::clearPacketReceivedAction()'],['../class_r_f69.html#ac302d3524dc802467a7ce91b2223db90',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a4295cfbfe05ec696aae680593f63ff7b',1,'nRF24::clearPacketReceivedAction()'],['../class_l_r11x0.html#a66a2afc6cef1e94e25efec15094816a8',1,'LR11x0::clearPacketReceivedAction()'],['../class_c_c1101.html#a70fa0ead602f3128f161fc2018cc3af6',1,'CC1101::clearPacketReceivedAction()']]], - ['clearpacketsentaction_681',['clearPacketSentAction',['../class_c_c1101.html#a70ac3d16c54a7340f83f3c5ac6bb8e40',1,'CC1101::clearPacketSentAction()'],['../class_l_r11x0.html#acd69e3b8825309703e13149b94e49d81',1,'LR11x0::clearPacketSentAction()'],['../classn_r_f24.html#a5ae45ceec01854226ecce0320f1051e2',1,'nRF24::clearPacketSentAction()'],['../class_r_f69.html#a3a8be5bcc37d3e4f5ac2d0310c8bac12',1,'RF69::clearPacketSentAction()'],['../class_si443x.html#a1835741ed147e575f9c03cf14c3b765e',1,'Si443x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#adb1ebf024255f5e14e6f0477c0113945',1,'STM32WLx::clearPacketSentAction()'],['../class_s_x126x.html#a0ffc659019932dbf1fda881710054cfb',1,'SX126x::clearPacketSentAction()'],['../class_s_x127x.html#a56f45da4853eac1e9f6e753129d9e416',1,'SX127x::clearPacketSentAction()'],['../class_s_x128x.html#a86000239b7f9871168fdfa8f8c73b377',1,'SX128x::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()']]] + ['clearpacketreceivedaction_680',['clearPacketReceivedAction',['../class_physical_layer.html#a7edf27f03600b96f72f011fc82fa4ef9',1,'PhysicalLayer::clearPacketReceivedAction()'],['../class_s_x128x.html#a20b21a4f804b148fede4b7199c4d1e71',1,'SX128x::clearPacketReceivedAction()'],['../class_s_x127x.html#a098baa351e38f3b4caa19a362bc190d4',1,'SX127x::clearPacketReceivedAction()'],['../class_s_x126x.html#acd0306b28b4ce36bab5fc0199aef90f2',1,'SX126x::clearPacketReceivedAction()'],['../class_si443x.html#a63a8bb675e7a0b54c493caa30adeb37e',1,'Si443x::clearPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#aa910c9bd9ebca6e5eed4192c3b7a2e04',1,'STM32WLx::clearPacketReceivedAction()'],['../class_r_f69.html#ac302d3524dc802467a7ce91b2223db90',1,'RF69::clearPacketReceivedAction()'],['../classn_r_f24.html#a4295cfbfe05ec696aae680593f63ff7b',1,'nRF24::clearPacketReceivedAction()'],['../class_l_r11x0.html#a66a2afc6cef1e94e25efec15094816a8',1,'LR11x0::clearPacketReceivedAction()'],['../class_c_c1101.html#a0221c4fe494a590cc9714e4752675d61',1,'CC1101::clearPacketReceivedAction() override']]], + ['clearpacketsentaction_681',['clearPacketSentAction',['../class_c_c1101.html#a2791ebc7fe71626407278de5852b492f',1,'CC1101::clearPacketSentAction()'],['../class_l_r11x0.html#acd69e3b8825309703e13149b94e49d81',1,'LR11x0::clearPacketSentAction()'],['../classn_r_f24.html#a5ae45ceec01854226ecce0320f1051e2',1,'nRF24::clearPacketSentAction()'],['../class_r_f69.html#a3a8be5bcc37d3e4f5ac2d0310c8bac12',1,'RF69::clearPacketSentAction()'],['../class_si443x.html#a1835741ed147e575f9c03cf14c3b765e',1,'Si443x::clearPacketSentAction()'],['../class_s_t_m32_w_lx.html#adb1ebf024255f5e14e6f0477c0113945',1,'STM32WLx::clearPacketSentAction()'],['../class_s_x126x.html#a0ffc659019932dbf1fda881710054cfb',1,'SX126x::clearPacketSentAction()'],['../class_s_x127x.html#a56f45da4853eac1e9f6e753129d9e416',1,'SX127x::clearPacketSentAction()'],['../class_s_x128x.html#a86000239b7f9871168fdfa8f8c73b377',1,'SX128x::clearPacketSentAction()'],['../class_physical_layer.html#a67ee4ec36f352d06dda0102260f6bfce',1,'PhysicalLayer::clearPacketSentAction()']]] ]; diff --git a/search/functions_6.js b/search/functions_6.js index e15b0566..e295f937 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -34,7 +34,7 @@ var searchData= ['getpictureheight_744',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], ['getpromiscuousmode_745',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], ['getrangingresult_746',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_747',['getRSSI',['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0b1fe4d0b1acfa454d7bab59cdf319fe',1,'SX1278::getRSSI()'],['../class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92',1,'SX1272::getRSSI()'],['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a468ee0182883d8af22a0a4202ef7baa5',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()']]], + ['getrssi_747',['getRSSI',['../class_physical_layer.html#aabc94ab27a9ee6daaafa9b47dde5f75b',1,'PhysicalLayer::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()'],['../class_s_x1278.html#ab17357254073baeb7490c98faf10d991',1,'SX1278::getRSSI(bool packet, bool skipReceive=false)'],['../class_s_x1278.html#a0b1fe4d0b1acfa454d7bab59cdf319fe',1,'SX1278::getRSSI()'],['../class_s_x1272.html#af5a7dee50a1a7d8261bc62bb869cda92',1,'SX1272::getRSSI()'],['../class_s_x126x.html#afabefb1b214411198f3537e8afce898f',1,'SX126x::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_l_r11x0.html#a468ee0182883d8af22a0a4202ef7baa5',1,'LR11x0::getRSSI()'],['../class_c_c1101.html#ab80835be83e5a43010afe4e8185114eb',1,'CC1101::getRSSI()'],['../class_s_x1272.html#a171656d12a9909bbb04fc81be86ec2a6',1,'SX1272::getRSSI()']]], ['getrst_748',['getRst',['../class_module.html#ad6cddbf3aebec9717a1a381dd81ad398',1,'Module']]], ['getsnr_749',['getSNR',['../class_s_x128x.html#a89ebf1f4f227cd35c0799c06d5d9c1d2',1,'SX128x::getSNR()'],['../class_physical_layer.html#aedddaf9460941b90e43e9005035faa0f',1,'PhysicalLayer::getSNR()'],['../class_s_x127x.html#abc5069b39dc31b637ee561d5745e1deb',1,'SX127x::getSNR()'],['../class_s_x126x.html#ae36823d3539667bdf7d2f073bd4fa1ca',1,'SX126x::getSNR()'],['../class_l_r11x0.html#ad4f32509aea96de6a7ec08a8e60a6bea',1,'LR11x0::getSNR()']]], ['getstatus_750',['getStatus',['../classn_r_f24.html#a3f0b08fd8e58db36f6c1926cc3eac6a9',1,'nRF24']]], diff --git a/search/functions_e.js b/search/functions_e.js index fe776eff..bcc8b0fc 100644 --- a/search/functions_e.js +++ b/search/functions_e.js @@ -5,10 +5,10 @@ var searchData= ['radiolibcrc_789',['RadioLibCRC',['../class_radio_lib_c_r_c.html#a4f4042a369d55e234f4fc28f189139d5',1,'RadioLibCRC']]], ['radiolibhal_790',['RadioLibHal',['../class_radio_lib_hal.html#ae75a54271cb8bea37d32dd146b9c6513',1,'RadioLibHal']]], ['random_791',['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_792',['randomByte',['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833',1,'CC1101::randomByte()']]], + ['randombyte_792',['randomByte',['../class_s_x127x.html#a68cba1ff1e6bfd9b3034c97f3932e450',1,'SX127x::randomByte()'],['../class_physical_layer.html#a1a5985308904261dd431f373d47ddee4',1,'PhysicalLayer::randomByte()'],['../class_s_x128x.html#a95637e8addc48b0e1c30c2cf6f54354a',1,'SX128x::randomByte()'],['../class_s_x126x.html#a819bb3ced0f184a63cbfbef408a68561',1,'SX126x::randomByte()'],['../class_si443x.html#a74848176d435227e601c86ff37b0edbe',1,'Si443x::randomByte()'],['../class_r_f69.html#a2023f0f22aad00a702bdf598c2154043',1,'RF69::randomByte()'],['../class_c_c1101.html#a13cf332824479442cc20fc1c6972b092',1,'CC1101::randomByte()']]], ['range_793',['range',['../class_s_x1280.html#a3112e6bce39e6534711f5d76449f3dd2',1,'SX1280']]], ['read_794',['read',['../class_morse_client.html#a77eab03be04ef2d693348d9580ee5d3c',1,'MorseClient::read()'],['../class_physical_layer.html#a4d5b30493c8d7fcfb784e128362d596c',1,'PhysicalLayer::read()']]], - ['readbit_795',['readBit',['../class_c_c1101.html#a206e6c6f094aa7e68388fd9412cd969e',1,'CC1101::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_s_x126x.html#a8cdc4f25d4193dc75f9442874131eab3',1,'SX126x::readBit()'],['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_r_f69.html#ab797840275fbccc40162225c32f5ffc3',1,'RF69::readBit()']]], + ['readbit_795',['readBit',['../class_c_c1101.html#a11a92d885beefdf2db291301550a980c',1,'CC1101::readBit()'],['../class_physical_layer.html#acda61fc99cfa373153c50c78380ed885',1,'PhysicalLayer::readBit()'],['../class_s_x128x.html#aceeb18acbfedb20c6cf60e26d5275793',1,'SX128x::readBit()'],['../class_s_x127x.html#a1a2dc7554414f0ce2ee0db23087f698a',1,'SX127x::readBit()'],['../class_s_x126x.html#a8cdc4f25d4193dc75f9442874131eab3',1,'SX126x::readBit()'],['../class_si443x.html#af23d8eb0f1c436e6cc60361df13c08f7',1,'Si443x::readBit()'],['../class_r_f69.html#ab797840275fbccc40162225c32f5ffc3',1,'RF69::readBit()']]], ['readdata_796',['readData',['../classn_r_f24.html#a410fb78acb4ed358818c132687b8857a',1,'nRF24::readData()'],['../class_s_x128x.html#a3563453988a83d22dd07d4691543a300',1,'SX128x::readData()'],['../class_s_x127x.html#a3563453988a83d22dd07d4691543a300',1,'SX127x::readData()'],['../class_s_x126x.html#a3563453988a83d22dd07d4691543a300',1,'SX126x::readData()'],['../class_si443x.html#a3563453988a83d22dd07d4691543a300',1,'Si443x::readData()'],['../class_r_f69.html#a3563453988a83d22dd07d4691543a300',1,'RF69::readData()'],['../classn_r_f24.html#a3563453988a83d22dd07d4691543a300',1,'nRF24::readData()'],['../class_l_r11x0.html#a3563453988a83d22dd07d4691543a300',1,'LR11x0::readData()'],['../class_c_c1101.html#a3563453988a83d22dd07d4691543a300',1,'CC1101::readData()'],['../class_pager_client.html#ad2c6132819a84712b929c0bb22ba172b',1,'PagerClient::readData()'],['../class_c_c1101.html#a8c79975a7bbe8a37f8214ecd1f69ba22',1,'CC1101::readData()'],['../class_l_r11x0.html#a20279f1b267e936991f47fd703924833',1,'LR11x0::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#a3563453988a83d22dd07d4691543a300',1,'PhysicalLayer::readData()']]], ['receive_797',['receive',['../class_c_c1101.html#aedc1067d0334bb69ed5316146014097d',1,'CC1101::receive()'],['../class_s_x128x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX128x::receive()'],['../class_s_x127x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX127x::receive()'],['../class_s_x126x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'SX126x::receive()'],['../class_si443x.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'Si443x::receive()'],['../class_r_f69.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'RF69::receive()'],['../classn_r_f24.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'nRF24::receive()'],['../class_l_r11x0.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'LR11x0::receive()'],['../class_c_c1101.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'CC1101::receive()'],['../class_s_x128x.html#a32b7b674d63c36f15b7f58a2cb837a99',1,'SX128x::receive()'],['../class_s_x127x.html#adfe0d3f033a23ec2f3c2a407285d357c',1,'SX127x::receive()'],['../class_s_x126x.html#ae3db6b29c482d94eef8a43cd8b5751c0',1,'SX126x::receive()'],['../class_si443x.html#aabca3ba8eda212938febab1df2e764b4',1,'Si443x::receive()'],['../class_r_f69.html#ae36e8e6042245621a182b29526fe2245',1,'RF69::receive()'],['../classn_r_f24.html#a239e94511d9ee67ad3d64a49a5c4d7ac',1,'nRF24::receive()'],['../class_l_r11x0.html#a377c287f18c939c2b4da3241d8329e58',1,'LR11x0::receive()'],['../class_physical_layer.html#ab82617fa3fa9f21d4cd427314ecc4af8',1,'PhysicalLayer::receive(uint8_t *data, size_t len)']]], ['receivedirect_798',['receiveDirect',['../class_physical_layer.html#ad9d1dbb2041e87af5a80e12f125a60e6',1,'PhysicalLayer::receiveDirect()'],['../class_s_x128x.html#aff7d86352c98771595375e17d19a2a97',1,'SX128x::receiveDirect()'],['../class_s_x127x.html#aa7ac558d537c6364c4bc82c8f33e398f',1,'SX127x::receiveDirect()'],['../class_s_x126x.html#a8a18aee2bf05793aa29b5cf6b47bb435',1,'SX126x::receiveDirect()'],['../class_r_f69.html#abd556b0f455f9510213b17588a4baf1b',1,'RF69::receiveDirect()'],['../classn_r_f24.html#a415d86947742e981bfcf7f2371f8605c',1,'nRF24::receiveDirect()'],['../class_l_r11x0.html#ae1a8e8eda78113c47f1a865e63051bb5',1,'LR11x0::receiveDirect()'],['../class_c_c1101.html#ab053c185330519d58f364790108d29ac',1,'CC1101::receiveDirect()'],['../class_si443x.html#a178b471527813a608c04db7d3c9648d6',1,'Si443x::receiveDirect()']]], diff --git a/search/functions_f.js b/search/functions_f.js index c96e129c..ee24209d 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -20,7 +20,7 @@ var searchData= ['setambienttemperature_823',['setAmbientTemperature',['../class_r_f69.html#ac37d9ddee2adcc8876a182b8ebc3e703',1,'RF69']]], ['setautoack_824',['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_825',['setBandwidth',['../class_l_l_c_c68.html#a6f6c206657304809ee30bd9761ef79bf',1,'LLCC68::setBandwidth()'],['../class_l_r11x0.html#abf961ec7d93feb6472f26b7b976ee0c9',1,'LR11x0::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_826',['setBitRate',['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x1233.html#af245e451dca502ee8975c7ecd291a859',1,'SX1233::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_l_r11x0.html#a03ab7a24fec379c6ba2d642e1133c4f2',1,'LR11x0::setBitRate()'],['../class_c_c1101.html#aa53427cabcda0778f287ed1d850bbe37',1,'CC1101::setBitRate()']]], + ['setbitrate_826',['setBitRate',['../class_s_x126x.html#a7deeef45d7f64a4018a3e56aaea4eb0e',1,'SX126x::setBitRate()'],['../class_physical_layer.html#aedd39ad84b45c6392087b12d59192d8c',1,'PhysicalLayer::setBitRate()'],['../class_s_x128x.html#a465ac114dbe6844069b5cb989f87c3ee',1,'SX128x::setBitRate()'],['../class_s_x1278.html#afd6df07fc4972cc656f05670e6802f67',1,'SX1278::setBitRate()'],['../class_s_x1272.html#ab5c9a79d72996c3d793cee812b0aded5',1,'SX1272::setBitRate()'],['../class_s_x1233.html#af245e451dca502ee8975c7ecd291a859',1,'SX1233::setBitRate()'],['../class_si443x.html#ad43575e731dd7e66d5ad9e6dccd27170',1,'Si443x::setBitRate()'],['../class_r_f69.html#ad7f8132912a5dbf38c5cf676ac167d13',1,'RF69::setBitRate()'],['../classn_r_f24.html#a0873f58ae62e41cff99813e21cc8b02a',1,'nRF24::setBitRate()'],['../class_l_r11x0.html#a03ab7a24fec379c6ba2d642e1133c4f2',1,'LR11x0::setBitRate()'],['../class_c_c1101.html#a6fd22cdec29e1e34a92aa9854b90fdc9',1,'CC1101::setBitRate()']]], ['setbroadcastaddress_827',['setBroadcastAddress',['../class_l_r11x0.html#af24ba794f71c4e37cd13d2f4dbec5bf7',1,'LR11x0::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()']]], ['setbuffernonces_828',['setBufferNonces',['../class_lo_ra_w_a_n_node.html#a11701081ac6bd39a8a2b4bdbc248fac2',1,'LoRaWANNode']]], ['setbuffersession_829',['setBufferSession',['../class_lo_ra_w_a_n_node.html#aadebe7a412aec8043aa2f8f57a202f49',1,'LoRaWANNode']]], @@ -39,9 +39,9 @@ var searchData= ['setdio0action_842',['setDio0Action',['../class_r_f69.html#a9e50a1183d13ff9984f8438a7e9e4a77',1,'RF69::setDio0Action()'],['../class_s_x127x.html#ae75bc48cc74a407370cd9f4bf95e9e30',1,'SX127x::setDio0Action()']]], ['setdio1action_843',['setDio1Action',['../class_r_f69.html#aa72ad2ac5238bd87886684064b7494cf',1,'RF69::setDio1Action()'],['../class_s_t_m32_w_lx.html#a63d61bc5057e9da3d0ea12feae67122e',1,'STM32WLx::setDio1Action()'],['../class_s_x126x.html#a0da667fe702d7b4aafaa4bf7e69ea40d',1,'SX126x::setDio1Action()'],['../class_s_x127x.html#a7b4bce81839b105c464ebf922602e58b',1,'SX127x::setDio1Action()'],['../class_s_x128x.html#a0759fb31b3ce5bf1c832259c9c2245ed',1,'SX128x::setDio1Action()']]], ['setdio2asrfswitch_844',['setDio2AsRfSwitch',['../class_s_x126x.html#ae46e08d579f4acbad029b4cd4f4fffaf',1,'SX126x']]], - ['setdiomapping_845',['setDIOMapping',['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()'],['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada',1,'RF69::setDIOMapping()'],['../class_c_c1101.html#a009c31564866d8d14759f17f29b08ee6',1,'CC1101::setDIOMapping()']]], + ['setdiomapping_845',['setDIOMapping',['../class_physical_layer.html#a349e8a22cd28ad89d45460fdeeefc05c',1,'PhysicalLayer::setDIOMapping()'],['../class_s_x127x.html#a103b606166eba8c69bff061270744768',1,'SX127x::setDIOMapping()'],['../class_r_f69.html#a0d7720672c0aa0cf4464d544540cbada',1,'RF69::setDIOMapping()'],['../class_c_c1101.html#a544bb8d7be9c0e1ff7f7103b30925862',1,'CC1101::setDIOMapping()']]], ['setdiopreambledetect_846',['setDIOPreambleDetect',['../class_s_x127x.html#a7b85344084b800966a46ace59dcb5277',1,'SX127x']]], - ['setdirectaction_847',['setDirectAction',['../class_c_c1101.html#a5161fa10b19d857840579601ef565363',1,'CC1101::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#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction(void(*func)(void))']]], + ['setdirectaction_847',['setDirectAction',['../class_c_c1101.html#a24f4b059cc56238499c6117b88cd5505',1,'CC1101::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#abf96cf4f3cb4c82d44be581dbe615966',1,'PhysicalLayer::setDirectAction(void(*func)(void))']]], ['setdirectsyncword_848',['setDirectSyncWord',['../class_physical_layer.html#a8e378fe136a498ea485a9c10f5e15aab',1,'PhysicalLayer']]], ['setdutycycle_849',['setDutyCycle',['../class_lo_ra_w_a_n_node.html#a3d4bbd6d382496838954ab4ac1168b77',1,'LoRaWANNode']]], ['setdwelltime_850',['setDwellTime',['../class_lo_ra_w_a_n_node.html#a62bfe68f6fe63c2e408dccbff6a34a4f',1,'LoRaWANNode']]], @@ -49,7 +49,7 @@ var searchData= ['setfhsshoppingperiod_852',['setFHSSHoppingPeriod',['../class_s_x127x.html#a7f04a7e883057908df18f06c7f74c7e1',1,'SX127x']]], ['setfifoemptyaction_853',['setFifoEmptyAction',['../class_r_f69.html#a788023a0de9d6b43cb4079d12ca90b8d',1,'RF69::setFifoEmptyAction()'],['../class_s_x127x.html#a6fbdfd8e2a2ad1eb7e59a73385847acb',1,'SX127x::setFifoEmptyAction()']]], ['setfifofullaction_854',['setFifoFullAction',['../class_r_f69.html#a1a6ecb5fcc42c49bc3d9032e9c5db07b',1,'RF69::setFifoFullAction()'],['../class_s_x127x.html#a201c31366f32c41b801724fb662265c1',1,'SX127x::setFifoFullAction()']]], - ['setfrequency_855',['setFrequency',['../class_c_c1101.html#a9592c023556c38c2b8066a23da96ae5e',1,'CC1101::setFrequency()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency(float freq, bool calibrate)'],['../class_s_x1268.html#abf338b7036d692a4a8ca6bf305c0cb12',1,'SX1268::setFrequency(float freq)'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767',1,'SX1262::setFrequency(float freq)'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a1139585bff92c19ab645f68068930d60',1,'LR1120::setFrequency(float freq)'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1110.html#a58cfda71b08567a7e98e7d6fd03465b4',1,'LR1110::setFrequency(float freq)']]], + ['setfrequency_855',['setFrequency',['../class_c_c1101.html#ad428d7e6fc9ac119101bb0716fa80bee',1,'CC1101::setFrequency()'],['../class_physical_layer.html#a8a194b0fbb66b1a953288bf3b9478d6e',1,'PhysicalLayer::setFrequency()'],['../class_s_x128x.html#a2043ef7bb806968b9d9dcb64561ca371',1,'SX128x::setFrequency()'],['../class_s_x1279.html#acf9b2087f5b661f06e9512bad36b3817',1,'SX1279::setFrequency()'],['../class_s_x1278.html#a4b14d432ef1bd72982f4771cac5b62e4',1,'SX1278::setFrequency()'],['../class_s_x1277.html#a42adde5eecccdca95214980848795e82',1,'SX1277::setFrequency()'],['../class_s_x1276.html#a657d75dced0af8c89c4e38535dd5b008',1,'SX1276::setFrequency()'],['../class_s_x1272.html#af409f50e51042cf9357c0a8267f762f8',1,'SX1272::setFrequency()'],['../class_s_x1268.html#a59b538f4971525849b7aaa3456de9929',1,'SX1268::setFrequency(float freq, bool calibrate)'],['../class_s_x1268.html#abf338b7036d692a4a8ca6bf305c0cb12',1,'SX1268::setFrequency(float freq)'],['../class_s_x1262.html#a1f70b082116b03d1fafe395fc5a288f6',1,'SX1262::setFrequency(float freq, bool calibrate)'],['../class_s_x1262.html#abb018b820eb71ca6b0cd92c62affa767',1,'SX1262::setFrequency(float freq)'],['../class_si4432.html#aa0cdb6cb53bb0176803d5115356a8e84',1,'Si4432::setFrequency()'],['../class_si4430.html#a025a31861d1511090168e416140d0343',1,'Si4430::setFrequency()'],['../class_r_f69.html#ab467f0fc318e651d0cdfbc0399d4c34b',1,'RF69::setFrequency()'],['../classn_r_f24.html#a408278336cdf25fd205ecffea86c26e8',1,'nRF24::setFrequency()'],['../class_l_r1120.html#a477bac8eea731d55bf6c07e60aa0b2e2',1,'LR1120::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1120.html#a1139585bff92c19ab645f68068930d60',1,'LR1120::setFrequency(float freq)'],['../class_l_r1110.html#a08c9ba9d02e7e3918f73f090c6d5ed33',1,'LR1110::setFrequency(float freq, bool calibrate, float band=4)'],['../class_l_r1110.html#a58cfda71b08567a7e98e7d6fd03465b4',1,'LR1110::setFrequency(float freq)']]], ['setfrequencydeviation_856',['setFrequencyDeviation',['../class_s_x128x.html#a26d0d02e5e53a3172df9208fa343a3f1',1,'SX128x::setFrequencyDeviation()'],['../class_physical_layer.html#a2f4f9b428d9ea9af886ca85e5088ed7b',1,'PhysicalLayer::setFrequencyDeviation()'],['../class_external_radio.html#a02928a19eab0eab615c02180cedda3eb',1,'ExternalRadio::setFrequencyDeviation()'],['../class_s_x127x.html#a448ea8a6a6011a9cdddd4e09bd6c9679',1,'SX127x::setFrequencyDeviation()'],['../class_s_x126x.html#a7cd95a5f2e39ae8fb1a3040e77fa21a3',1,'SX126x::setFrequencyDeviation()'],['../class_r_f69.html#adb9fbfedf95f34ac537815870b98a9be',1,'RF69::setFrequencyDeviation()'],['../class_si443x.html#a7c4e6caa95e5622f6f515ba0339a1c66',1,'Si443x::setFrequencyDeviation()'],['../class_l_r11x0.html#ac003cfe3a4dbd9bad1f01fd0147031d1',1,'LR11x0::setFrequencyDeviation()'],['../class_c_c1101.html#a0d69713b9f20c9de354c13c3167b18b3',1,'CC1101::setFrequencyDeviation()'],['../classn_r_f24.html#a5170284f0a5535de7d00216d450b87a4',1,'nRF24::setFrequencyDeviation()']]], ['setgain_857',['setGain',['../class_s_x1272.html#ae1c57ad5e8496dc28cd3ba9852809852',1,'SX1272::setGain()'],['../class_s_x1278.html#aa57b713988cfa224a6db2ff325052931',1,'SX1278::setGain()']]], ['setgaincontrol_858',['setGainControl',['../class_s_x128x.html#a3837662441a9eb3f0a71f4f667db9e91',1,'SX128x']]], @@ -69,9 +69,9 @@ var searchData= ['setookpeakthresholddecrement_872',['setOokPeakThresholdDecrement',['../class_s_x127x.html#aac2f43d70b5f94e49e09b4c9f082f46d',1,'SX127x::setOokPeakThresholdDecrement()'],['../class_r_f69.html#a434420f2def6c383608223105469fda1',1,'RF69::setOokPeakThresholdDecrement()']]], ['setookpeakthresholdstep_873',['setOokPeakThresholdStep',['../class_s_x127x.html#a48ca43e6aad02815fa1507f0f0831c54',1,'SX127x']]], ['setookthresholdtype_874',['setOokThresholdType',['../class_r_f69.html#a219a046c10ddcc0a787ad19346ecad6a',1,'RF69::setOokThresholdType()'],['../class_s_x127x.html#a8b93142202167270db109d18b743c744',1,'SX127x::setOokThresholdType()']]], - ['setoutputpower_875',['setOutputPower',['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0',1,'SX128x::setOutputPower()'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()'],['../class_l_r11x0.html#a549ecc907732bca96dab27c433928740',1,'LR11x0::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r11x0.html#a2522e288732aa77ec4f5a44e724612af',1,'LR11x0::setOutputPower(int8_t power)'],['../class_c_c1101.html#a4f89d13ea170157df109eca36674f0aa',1,'CC1101::setOutputPower()']]], - ['setpacketreceivedaction_876',['setPacketReceivedAction',['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#a697880c42c4b1def04c8fe7f3a023ffb',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ad63322c9c58dd82e4b9982f10e546f33',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#ad2bc2016783a3fcad3ad4e6518ee7fc8',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#a9194a526a32bd4891d59fe2a08641622',1,'STM32WLx::setPacketReceivedAction()'],['../class_r_f69.html#ac8bff26070735a733a24146d414c3c5f',1,'RF69::setPacketReceivedAction()'],['../class_si443x.html#a2badfa5db1ae5b9ec26ad7a8b3cab167',1,'Si443x::setPacketReceivedAction()'],['../class_c_c1101.html#a4f47f83e7a1cb6cd014161803db867fb',1,'CC1101::setPacketReceivedAction()'],['../classn_r_f24.html#a08b90ae895a6a45bceb11f67237245b4',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#a0a4d48bf33fe466ea4c14cd9db228dce',1,'LR11x0::setPacketReceivedAction(void(*func)(void))']]], - ['setpacketsentaction_877',['setPacketSentAction',['../class_l_r11x0.html#a88ff8c277e340c3273fb5715cd743cce',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a8e00d6729ee3c869cda8ccb5ae15ba27',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a27fad7a67c4239c19bd94d1ccfb493ca',1,'RF69::setPacketSentAction()'],['../class_si443x.html#aa55274bb345f178328ea2a674621fc84',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a771bb4b32a6d9a2f44326e85678e3270',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#a0417720a61b2d587e5633360cbecb33c',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a91476a51019910b958f464e73ba797c5',1,'SX127x::setPacketSentAction()'],['../class_s_x128x.html#acaa115bb9eb3d325d6baba1f578d678b',1,'SX128x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_c_c1101.html#aff4ddeb8f8680307079a1e84de1cc676',1,'CC1101::setPacketSentAction()']]], + ['setoutputpower_875',['setOutputPower',['../class_s_x1261.html#aa541f927995a1756c651b93fd24edc65',1,'SX1261::setOutputPower()'],['../class_physical_layer.html#ad2286dc78dbf8e3084f38e9159b99ae5',1,'PhysicalLayer::setOutputPower()'],['../class_s_x128x.html#ad988727ea6c9b4e11562651d312514c0',1,'SX128x::setOutputPower()'],['../class_s_x1278.html#aca58a6c2e8fcef6414fdf3bc1eb62082',1,'SX1278::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1278.html#a69abc18e7fa0055e6b80024e8cde7db4',1,'SX1278::setOutputPower(int8_t power) override'],['../class_s_x1272.html#a03f7073d710f18aad79b7d46f2fda659',1,'SX1272::setOutputPower(int8_t power, bool useRfo)'],['../class_s_x1272.html#aec51f08c0902145ff5f11e27e7cab638',1,'SX1272::setOutputPower(int8_t power) override'],['../class_s_x1268.html#a5b0744aa46fbb4f8c738b010dfcc9b45',1,'SX1268::setOutputPower()'],['../class_s_x1262.html#aa149463283dc9cddfec836ec6620d4dc',1,'SX1262::setOutputPower()'],['../class_s_t_m32_w_lx.html#a9afbde1c466907598974cc3923784c5b',1,'STM32WLx::setOutputPower()'],['../class_si4432.html#a8b26e2c86a9e5e8f6405f0a57b65caca',1,'Si4432::setOutputPower()'],['../class_si4431.html#a4da296b35056e076ff69a288bd801d19',1,'Si4431::setOutputPower()'],['../class_si4430.html#af8d615431bf66e06b45487f3fff73d16',1,'Si4430::setOutputPower()'],['../class_r_f69.html#a721094611fa375e73bd0332ab2d7d113',1,'RF69::setOutputPower()'],['../classn_r_f24.html#ad9859fa54aed7d3cd82839bad9d7d33a',1,'nRF24::setOutputPower()'],['../class_l_r11x0.html#a549ecc907732bca96dab27c433928740',1,'LR11x0::setOutputPower(int8_t power, bool forceHighPower)'],['../class_l_r11x0.html#a2522e288732aa77ec4f5a44e724612af',1,'LR11x0::setOutputPower(int8_t power)'],['../class_c_c1101.html#a5d6dce30fc7da668975b6da663784cdf',1,'CC1101::setOutputPower()']]], + ['setpacketreceivedaction_876',['setPacketReceivedAction',['../class_physical_layer.html#aec928bb26f65752aa20cd236fbabb95c',1,'PhysicalLayer::setPacketReceivedAction()'],['../class_s_x128x.html#a697880c42c4b1def04c8fe7f3a023ffb',1,'SX128x::setPacketReceivedAction()'],['../class_s_x127x.html#ad63322c9c58dd82e4b9982f10e546f33',1,'SX127x::setPacketReceivedAction()'],['../class_s_x126x.html#ad2bc2016783a3fcad3ad4e6518ee7fc8',1,'SX126x::setPacketReceivedAction()'],['../class_s_t_m32_w_lx.html#a9194a526a32bd4891d59fe2a08641622',1,'STM32WLx::setPacketReceivedAction()'],['../class_r_f69.html#ac8bff26070735a733a24146d414c3c5f',1,'RF69::setPacketReceivedAction()'],['../class_si443x.html#a2badfa5db1ae5b9ec26ad7a8b3cab167',1,'Si443x::setPacketReceivedAction()'],['../class_c_c1101.html#a29a16e8ed85432c6fae8d9e45399de6e',1,'CC1101::setPacketReceivedAction()'],['../classn_r_f24.html#a08b90ae895a6a45bceb11f67237245b4',1,'nRF24::setPacketReceivedAction()'],['../class_l_r11x0.html#a0a4d48bf33fe466ea4c14cd9db228dce',1,'LR11x0::setPacketReceivedAction(void(*func)(void))']]], + ['setpacketsentaction_877',['setPacketSentAction',['../class_l_r11x0.html#a88ff8c277e340c3273fb5715cd743cce',1,'LR11x0::setPacketSentAction()'],['../classn_r_f24.html#a8e00d6729ee3c869cda8ccb5ae15ba27',1,'nRF24::setPacketSentAction()'],['../class_r_f69.html#a27fad7a67c4239c19bd94d1ccfb493ca',1,'RF69::setPacketSentAction()'],['../class_si443x.html#aa55274bb345f178328ea2a674621fc84',1,'Si443x::setPacketSentAction()'],['../class_s_t_m32_w_lx.html#a771bb4b32a6d9a2f44326e85678e3270',1,'STM32WLx::setPacketSentAction()'],['../class_s_x126x.html#a0417720a61b2d587e5633360cbecb33c',1,'SX126x::setPacketSentAction()'],['../class_s_x127x.html#a91476a51019910b958f464e73ba797c5',1,'SX127x::setPacketSentAction()'],['../class_s_x128x.html#acaa115bb9eb3d325d6baba1f578d678b',1,'SX128x::setPacketSentAction()'],['../class_physical_layer.html#a32b512b34f6575b2109ae3c3f35d1369',1,'PhysicalLayer::setPacketSentAction()'],['../class_c_c1101.html#a336999da23e554073a9fa628131883f5',1,'CC1101::setPacketSentAction()']]], ['setpaconfig_878',['setPaConfig',['../class_s_x126x.html#a1623e7d5450c97ca092913ad79d62208',1,'SX126x']]], ['setparamptime_879',['setPaRampTime',['../class_s_x126x.html#ad90a56cb55c5bb64037a0d412d84a80d',1,'SX126x']]], ['setpreamblelength_880',['setPreambleLength',['../class_c_c1101.html#ae77c828c9c7cc12012fe011e8c4d3570',1,'CC1101::setPreambleLength()'],['../class_physical_layer.html#a85db1ff64e6c56e054f276c511194633',1,'PhysicalLayer::setPreambleLength()'],['../class_s_x128x.html#a1984a405262f155f16a4759c5f6b0133',1,'SX128x::setPreambleLength()'],['../class_s_x127x.html#a844499bace6ae001446d71bee2877656',1,'SX127x::setPreambleLength()'],['../class_s_x126x.html#ad6274222ccf534e98e3cd17dfa1520d4',1,'SX126x::setPreambleLength()'],['../class_si443x.html#a4821a6141caf16141074615c976ecd91',1,'Si443x::setPreambleLength()'],['../class_r_f69.html#a7c84b3f881cad6e05b0f4f68c24496d9',1,'RF69::setPreambleLength()'],['../class_l_r11x0.html#aa5d7ae65666f8f9abcb7e9b169884a4a',1,'LR11x0::setPreambleLength()']]], @@ -126,7 +126,7 @@ var searchData= ['startchannelscan_929',['startChannelScan',['../class_s_x126x.html#aff8ec92d828421564322f13fb1c90223',1,'SX126x::startChannelScan()'],['../class_physical_layer.html#ae30dfbb5445bb674898fc54f5f90b2f9',1,'PhysicalLayer::startChannelScan()'],['../class_s_x127x.html#a6fa5723724393576ed597509200e17d1',1,'SX127x::startChannelScan()'],['../class_s_x126x.html#a001c4637f01ed6f0216cd6c4d7e10da3',1,'SX126x::startChannelScan()'],['../class_l_r11x0.html#aa09eb53b0c32a5f229e14c46bfe45a4f',1,'LR11x0::startChannelScan(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin)'],['../class_l_r11x0.html#a4f3bc362530b85dd643669705f03998d',1,'LR11x0::startChannelScan() override']]], ['startdirect_930',['startDirect',['../class_physical_layer.html#a88a10657bd2215a11a2331f937414b55',1,'PhysicalLayer']]], ['startranging_931',['startRanging',['../class_s_x1280.html#a78cebe909fb2776f11f6c50f4f241c10',1,'SX1280']]], - ['startreceive_932',['startReceive',['../class_physical_layer.html#a13dbafeeb9dd9ede72cc4d907738ac48',1,'PhysicalLayer::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_s_x128x.html#a776286e4a267d1d71531bc9df7aa4276',1,'SX128x::startReceive(uint16_t timeout, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)'],['../class_s_x128x.html#afe700968c1e02e335c389b59d950ca39',1,'SX128x::startReceive()'],['../class_s_x127x.html#ae274d8640bba5c22217db120c51c6bb8',1,'SX127x::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x127x.html#aa77da235ab59a5066fc51418d4344a02',1,'SX127x::startReceive(uint8_t len, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)'],['../class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd',1,'SX127x::startReceive()'],['../class_s_x126x.html#a0d5ce0a8d2a5b275676d9d98124312ce',1,'SX126x::startReceive()'],['../class_si443x.html#a1070a6cde04a01d4a35da670f65ce539',1,'Si443x::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_r_f69.html#ae8b6f87d4b798dc8fcda07bfa5af5a66',1,'RF69::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../classn_r_f24.html#ad672f45f73267249265044063e19b4fa',1,'nRF24::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_l_r11x0.html#a437eaf0e0541983751abd28db45efea8',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, size_t len=0)'],['../class_l_r11x0.html#aabc154b86d9159fb5f769f62418d52b7',1,'LR11x0::startReceive()'],['../class_c_c1101.html#a22ebe5b75a09c420cf6e6464dac3fe33',1,'CC1101::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_c_c1101.html#af727750d05be0bcef4bb8ac260d110e3',1,'CC1101::startReceive()'],['../class_s_x126x.html#a16e8b271dc5e9af3015dd2901153cbde',1,'SX126x::startReceive()']]], + ['startreceive_932',['startReceive',['../class_physical_layer.html#a13dbafeeb9dd9ede72cc4d907738ac48',1,'PhysicalLayer::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_physical_layer.html#a18664ad615c5507ff1690baaca90b094',1,'PhysicalLayer::startReceive()'],['../class_pager_client.html#a9c0f13846fbc333a35a16a98b6575ca6',1,'PagerClient::startReceive(uint32_t pin, uint32_t *addrs, uint32_t *masks, size_t numAddress)'],['../class_pager_client.html#ac232570ac012ff315a1971ab0422fed3',1,'PagerClient::startReceive(uint32_t pin, uint32_t addr, uint32_t mask=0xFFFFF)'],['../class_s_x128x.html#a776286e4a267d1d71531bc9df7aa4276',1,'SX128x::startReceive(uint16_t timeout, uint16_t irqFlags=RADIOLIB_SX128X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX128X_IRQ_RX_DONE, size_t len=0)'],['../class_s_x128x.html#afe700968c1e02e335c389b59d950ca39',1,'SX128x::startReceive()'],['../class_s_x127x.html#ae274d8640bba5c22217db120c51c6bb8',1,'SX127x::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_s_x127x.html#aa77da235ab59a5066fc51418d4344a02',1,'SX127x::startReceive(uint8_t len, uint8_t mode=RADIOLIB_SX127X_RXCONTINUOUS)'],['../class_s_x127x.html#ae90a5df2d414dfcafd1e3b8aa790f9fd',1,'SX127x::startReceive()'],['../class_s_x126x.html#a0d5ce0a8d2a5b275676d9d98124312ce',1,'SX126x::startReceive()'],['../class_si443x.html#a1070a6cde04a01d4a35da670f65ce539',1,'Si443x::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_si443x.html#a10f886fc534a85bbf8c1aeb9b5ffe4f2',1,'Si443x::startReceive()'],['../class_r_f69.html#ae8b6f87d4b798dc8fcda07bfa5af5a66',1,'RF69::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../class_r_f69.html#afae38fa64242043de34096bf497725f1',1,'RF69::startReceive()'],['../classn_r_f24.html#ad672f45f73267249265044063e19b4fa',1,'nRF24::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len)'],['../classn_r_f24.html#af4f443da5d90e032e5f2f65420515f9c',1,'nRF24::startReceive()'],['../class_l_r11x0.html#a437eaf0e0541983751abd28db45efea8',1,'LR11x0::startReceive(uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, size_t len=0)'],['../class_l_r11x0.html#aabc154b86d9159fb5f769f62418d52b7',1,'LR11x0::startReceive()'],['../class_c_c1101.html#ad4d274deead2f6ce270810e4cb5b24d2',1,'CC1101::startReceive(uint32_t timeout, uint16_t irqFlags, uint16_t irqMask, size_t len) override'],['../class_c_c1101.html#ae71e947abf6a07b194c6c6d64fd3eb19',1,'CC1101::startReceive() override'],['../class_s_x126x.html#a16e8b271dc5e9af3015dd2901153cbde',1,'SX126x::startReceive()']]], ['startreceivedutycycle_933',['startReceiveDutyCycle',['../class_s_x126x.html#a5b4f8a41b593436b8c7a2a2d46ac387e',1,'SX126x']]], ['startreceivedutycycleauto_934',['startReceiveDutyCycleAuto',['../class_s_x126x.html#a077f180905ce4818cbdacad0cd9fe841',1,'SX126x']]], ['startsignal_935',['startSignal',['../class_morse_client.html#a3c718208786f8fe55f30eee990ec28e3',1,'MorseClient']]],