diff --git a/_c_c1101_8h_source.html b/_c_c1101_8h_source.html index 8ae5147a..affbb668 100644 --- a/_c_c1101_8h_source.html +++ b/_c_c1101_8h_source.html @@ -659,137 +659,138 @@ $(document).ready(function(){initNavTree('_c_c1101_8h_source.html',''); initResi
781 
789  int16_t setOOK(bool enableOOK);
790 
-
796  float getRSSI() const;
-
797 
-
803  uint8_t getLQI() const;
-
804 
-
812  size_t getPacketLength(bool update = true) override;
-
813 
-
821  int16_t fixedPacketLengthMode(uint8_t len = RADIOLIB_CC1101_MAX_PACKET_LENGTH);
-
822 
-
830  int16_t variablePacketLengthMode(uint8_t maxLen = RADIOLIB_CC1101_MAX_PACKET_LENGTH);
-
831 
-
841  int16_t enableSyncWordFiltering(uint8_t maxErrBits = 0, bool requireCarrierSense = false);
-
842 
-
850  int16_t disableSyncWordFiltering(bool requireCarrierSense = false);
-
851 
-
859  int16_t setCrcFiltering(bool crcOn = true);
-
860 
-
868  int16_t setPromiscuousMode(bool promiscuous = true);
-
869 
-
875  bool getPromiscuousMode();
-
876 
-
885  int16_t setDataShaping(uint8_t sh) override;
-
886 
-
895  int16_t setEncoding(uint8_t encoding) override;
-
896 
-
905  void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn);
-
906 
-
912  uint8_t randomByte();
-
913 
-
919  int16_t getChipVersion();
-
920 
-
926  void setDirectAction(void (*func)(void));
-
927 
-
933  void readBit(RADIOLIB_PIN_TYPE pin);
-
934 
-
944  int16_t setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value);
-
945 
-
946  #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
-
947  protected:
-
948  #endif
-
949  Module* _mod;
-
950 
-
951  // SPI read overrides to set bit for burst write and status registers access
-
952  int16_t SPIgetRegValue(uint8_t reg, uint8_t msb = 7, uint8_t lsb = 0);
-
953  int16_t SPIsetRegValue(uint8_t reg, uint8_t value, uint8_t msb = 7, uint8_t lsb = 0, uint8_t checkInterval = 2);
-
954  void SPIreadRegisterBurst(uint8_t reg, uint8_t numBytes, uint8_t* inBytes);
-
955  uint8_t SPIreadRegister(uint8_t reg);
-
956  void SPIwriteRegisterBurst(uint8_t reg, uint8_t* data, size_t len);
-
957  void SPIwriteRegister(uint8_t reg, uint8_t data);
-
958 
-
959  void SPIsendCommand(uint8_t cmd);
+
798  float getRSSI();
+
799 
+
805  uint8_t getLQI() const;
+
806 
+
814  size_t getPacketLength(bool update = true) override;
+
815 
+
823  int16_t fixedPacketLengthMode(uint8_t len = RADIOLIB_CC1101_MAX_PACKET_LENGTH);
+
824 
+
832  int16_t variablePacketLengthMode(uint8_t maxLen = RADIOLIB_CC1101_MAX_PACKET_LENGTH);
+
833 
+
843  int16_t enableSyncWordFiltering(uint8_t maxErrBits = 0, bool requireCarrierSense = false);
+
844 
+
852  int16_t disableSyncWordFiltering(bool requireCarrierSense = false);
+
853 
+
861  int16_t setCrcFiltering(bool crcOn = true);
+
862 
+
870  int16_t setPromiscuousMode(bool promiscuous = true);
+
871 
+
877  bool getPromiscuousMode();
+
878 
+
887  int16_t setDataShaping(uint8_t sh) override;
+
888 
+
897  int16_t setEncoding(uint8_t encoding) override;
+
898 
+
907  void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn);
+
908 
+
914  uint8_t randomByte();
+
915 
+
921  int16_t getChipVersion();
+
922 
+
928  void setDirectAction(void (*func)(void));
+
929 
+
935  void readBit(RADIOLIB_PIN_TYPE pin);
+
936 
+
946  int16_t setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value);
+
947 
+
948  #if !defined(RADIOLIB_GODMODE) && !defined(RADIOLIB_LOW_LEVEL)
+
949  protected:
+
950  #endif
+
951  Module* _mod;
+
952 
+
953  // SPI read overrides to set bit for burst write and status registers access
+
954  int16_t SPIgetRegValue(uint8_t reg, uint8_t msb = 7, uint8_t lsb = 0);
+
955  int16_t SPIsetRegValue(uint8_t reg, uint8_t value, uint8_t msb = 7, uint8_t lsb = 0, uint8_t checkInterval = 2);
+
956  void SPIreadRegisterBurst(uint8_t reg, uint8_t numBytes, uint8_t* inBytes);
+
957  uint8_t SPIreadRegister(uint8_t reg);
+
958  void SPIwriteRegisterBurst(uint8_t reg, uint8_t* data, size_t len);
+
959  void SPIwriteRegister(uint8_t reg, uint8_t data);
960 
-
961  #if !defined(RADIOLIB_GODMODE)
-
962  protected:
-
963  #endif
-
964 
-
965  float _freq = 0;
-
966  float _br = 0;
-
967  uint8_t _rawRSSI = 0;
-
968  uint8_t _rawLQI = 0;
-
969  uint8_t _modulation = RADIOLIB_CC1101_MOD_FORMAT_2_FSK;
-
970 
-
971  size_t _packetLength = 0;
-
972  bool _packetLengthQueried = false;
-
973  uint8_t _packetLengthConfig = RADIOLIB_CC1101_LENGTH_CONFIG_VARIABLE;
-
974 
-
975  bool _promiscuous = false;
-
976  bool _crcOn = true;
-
977 
-
978  uint8_t _syncWordLength = 2;
-
979  int8_t _power = 0;
+
961  void SPIsendCommand(uint8_t cmd);
+
962 
+
963  #if !defined(RADIOLIB_GODMODE)
+
964  protected:
+
965  #endif
+
966 
+
967  float _freq = 0;
+
968  float _br = 0;
+
969  uint8_t _rawRSSI = 0;
+
970  uint8_t _rawLQI = 0;
+
971  uint8_t _modulation = RADIOLIB_CC1101_MOD_FORMAT_2_FSK;
+
972 
+
973  size_t _packetLength = 0;
+
974  bool _packetLengthQueried = false;
+
975  uint8_t _packetLengthConfig = RADIOLIB_CC1101_LENGTH_CONFIG_VARIABLE;
+
976 
+
977  bool _promiscuous = false;
+
978  bool _crcOn = true;
+
979  bool _directMode = true;
980 
-
981  int16_t config();
-
982  int16_t transmitDirect(bool sync, uint32_t frf);
-
983  int16_t receiveDirect(bool sync);
-
984  int16_t directMode(bool sync);
-
985  static void getExpMant(float target, uint16_t mantOffset, uint8_t divExp, uint8_t expMax, uint8_t& exp, uint8_t& mant);
-
986  int16_t setPacketMode(uint8_t mode, uint16_t len);
-
987 };
-
988 
-
989 #endif
+
981  uint8_t _syncWordLength = 2;
+
982  int8_t _power = 0;
+
983 
+
984  int16_t config();
+
985  int16_t transmitDirect(bool sync, uint32_t frf);
+
986  int16_t receiveDirect(bool sync);
+
987  int16_t directMode(bool sync);
+
988  static void getExpMant(float target, uint16_t mantOffset, uint8_t divExp, uint8_t expMax, uint8_t& exp, uint8_t& mant);
+
989  int16_t setPacketMode(uint8_t mode, uint16_t len);
+
990 };
+
991 
+
992 #endif
PhysicalLayer::transmit
int16_t transmit(__FlashStringHelper *fstr, uint8_t addr=0)
Arduino Flash String transmit method.
Definition: PhysicalLayer.cpp:10
-
CC1101::disableSyncWordFiltering
int16_t disableSyncWordFiltering(bool requireCarrierSense=false)
Disable preamble and sync word filtering and generation.
Definition: CC1101.cpp:763
+
CC1101::disableSyncWordFiltering
int16_t disableSyncWordFiltering(bool requireCarrierSense=false)
Disable preamble and sync word filtering and generation.
Definition: CC1101.cpp:776
CC1101::begin
int16_t begin(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=135.0, int8_t power=10, uint8_t preambleLength=16)
Initialization method.
Definition: CC1101.cpp:12
CC1101::startReceive
int16_t startReceive()
Interrupt-driven receive method. GDO0 will be activated when full packet is received.
Definition: CC1101.cpp:331
-
CC1101::getPacketLength
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: CC1101.cpp:728
-
CC1101::getLQI
uint8_t getLQI() const
Gets LQI (Link Quality Indicator) of the last received packet.
Definition: CC1101.cpp:724
+
CC1101::getPacketLength
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: CC1101.cpp:741
+
CC1101::getLQI
uint8_t getLQI() const
Gets LQI (Link Quality Indicator) of the last received packet.
Definition: CC1101.cpp:737
CC1101::clearGdo0Action
void clearGdo0Action()
Clears interrupt service routine to call when GDO0 activates.
Definition: CC1101.cpp:238
CC1101::startTransmit
int16_t startTransmit(uint8_t *data, size_t len, uint8_t addr=0) override
Interrupt-driven binary transmit method. Overloads for string-based transmissions are implemented in ...
Definition: CC1101.cpp:257
-
CC1101::setDirectAction
void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: CC1101.cpp:880
+
CC1101::setDirectAction
void setDirectAction(void(*func)(void))
Set interrupt service routine function to call when data bit is receveid in direct mode.
Definition: CC1101.cpp:893
CC1101::transmit
int16_t transmit(uint8_t *data, size_t len, uint8_t addr=0) override
Blocking binary transmit method. Overloads for string-based transmissions are implemented in Physical...
Definition: CC1101.cpp:102
CC1101::transmitDirectAsync
int16_t transmitDirectAsync(uint32_t frf=0)
Starts asynchronous direct mode transmission.
Definition: CC1101.cpp:180
CC1101::setOutputPower
int16_t setOutputPower(int8_t power)
Sets output power. Allowed values are -30, -20, -15, -10, 0, 5, 7 or 10 dBm.
Definition: CC1101.cpp:521
-
CC1101::setEncoding
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Allowed values are RADIOLIB_ENCODING_NRZ, RADIOLIB_ENCODING_MANCHESTER,...
Definition: CC1101.cpp:828
+
CC1101::setEncoding
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Allowed values are RADIOLIB_ENCODING_NRZ, RADIOLIB_ENCODING_MANCHESTER,...
Definition: CC1101.cpp:841
PhysicalLayer::readData
int16_t readData(String &str, size_t len=0)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:59
CC1101::receiveDirectAsync
int16_t receiveDirectAsync()
Starts asynchronous direct mode reception.
Definition: CC1101.cpp:210
CC1101::readData
int16_t readData(uint8_t *data, size_t len) override
Reads data received after calling startReceive method.
Definition: CC1101.cpp:352
CC1101::setGdo2Action
void setGdo2Action(void(*func)(void), RADIOLIB_INTERRUPT_STATUS dir=FALLING)
Sets interrupt service routine to call when GDO2 activates.
Definition: CC1101.cpp:242
-
CC1101::getPromiscuousMode
bool getPromiscuousMode()
Get whether the modem is in promiscuous mode: no packet filtering (e.g., no preamble,...
Definition: CC1101.cpp:805
-
CC1101::setDIOMapping
int16_t setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: CC1101.cpp:888
+
CC1101::getPromiscuousMode
bool getPromiscuousMode()
Get whether the modem is in promiscuous mode: no packet filtering (e.g., no preamble,...
Definition: CC1101.cpp:818
+
CC1101::setDIOMapping
int16_t setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value)
Configure DIO pin mapping to get a given signal on a DIO pin (if available).
Definition: CC1101.cpp:901
CC1101::clearGdo2Action
void clearGdo2Action()
Clears interrupt service routine to call when GDO0 activates.
Definition: CC1101.cpp:250
CC1101::setSyncWord
int16_t setSyncWord(uint8_t syncH, uint8_t syncL, uint8_t maxErrBits=0, bool requireCarrierSense=false)
Sets 16-bit sync word as a two byte value.
Definition: CC1101.cpp:622
-
CC1101::getChipVersion
int16_t getChipVersion()
Read version SPI register. Should return CC1101_VERSION_LEGACY (0x04) or CC1101_VERSION_CURRENT (0x14...
Definition: CC1101.cpp:876
-
CC1101::getRSSI
float getRSSI() const
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: CC1101.cpp:714
+
CC1101::getChipVersion
int16_t getChipVersion()
Read version SPI register. Should return CC1101_VERSION_LEGACY (0x04) or CC1101_VERSION_CURRENT (0x14...
Definition: CC1101.cpp:889
CC1101::setOOK
int16_t setOOK(bool enableOOK)
Enables/disables OOK modulation instead of FSK.
Definition: CC1101.cpp:685
CC1101::setFrequency
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:432
CC1101::disableAddressFiltering
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: CC1101.cpp:675
CC1101::setNodeAddress
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:664
CC1101::setFrequencyDeviation
int16_t setFrequencyDeviation(float freqDev) override
Sets frequency deviation. Allowed values range from 1.587 to 380.8 kHz.
Definition: CC1101.cpp:498
-
CC1101::fixedPacketLengthMode
int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_CC1101_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode.
Definition: CC1101.cpp:742
+
CC1101::fixedPacketLengthMode
int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_CC1101_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode.
Definition: CC1101.cpp:755
PhysicalLayer
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14
CC1101::standby
int16_t standby() override
Sets the module to standby mode.
Definition: CC1101.cpp:167
PhysicalLayer::receive
int16_t receive(String &str, size_t len=0)
Arduino String receive method.
Definition: PhysicalLayer.cpp:100
-
CC1101::setDataShaping
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:809
+
CC1101::setDataShaping
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:822
CC1101::setRxBandwidth
int16_t setRxBandwidth(float rxBw)
Sets receiver bandwidth. Allowed values range from 58.0 to 812.0 kHz.
Definition: CC1101.cpp:478
CC1101::setBitRate
int16_t setBitRate(float br)
Sets bit rate. Allowed values range from 0.025 to 600.0 kbps.
Definition: CC1101.cpp:458
-
CC1101::randomByte
uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: CC1101.cpp:856
+
CC1101::randomByte
uint8_t randomByte()
Get one truly random byte from RSSI noise.
Definition: CC1101.cpp:869
CC1101::packetMode
int16_t packetMode()
Stops direct mode. It is required to call this method to switch from direct transmissions to packet-b...
Definition: CC1101.cpp:227
CC1101::setPreambleLength
int16_t setPreambleLength(uint8_t preambleLength)
Sets preamble length.
Definition: CC1101.cpp:627
Module
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
CC1101::receive
int16_t receive(uint8_t *data, size_t len) override
Blocking binary receive method. Overloads for string-based transmissions are implemented in PhysicalL...
Definition: CC1101.cpp:143
-
CC1101::readBit
void readBit(RADIOLIB_PIN_TYPE pin)
Function to read and process data bit in direct reception mode.
Definition: CC1101.cpp:884
+
CC1101::readBit
void readBit(RADIOLIB_PIN_TYPE pin)
Function to read and process data bit in direct reception mode.
Definition: CC1101.cpp:897
+
CC1101::getRSSI
float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: CC1101.cpp:714
CC1101::receiveDirect
int16_t receiveDirect() override
Starts direct mode reception.
Definition: CC1101.cpp:206
-
CC1101::enableSyncWordFiltering
int16_t enableSyncWordFiltering(uint8_t maxErrBits=0, bool requireCarrierSense=false)
Enable sync word filtering and generation.
Definition: CC1101.cpp:750
+
CC1101::enableSyncWordFiltering
int16_t enableSyncWordFiltering(uint8_t maxErrBits=0, bool requireCarrierSense=false)
Enable sync word filtering and generation.
Definition: CC1101.cpp:763
CC1101::setGdo0Action
void setGdo0Action(void(*func)(void), RADIOLIB_INTERRUPT_STATUS dir=RISING)
Sets interrupt service routine to call when GDO0 activates.
Definition: CC1101.cpp:234
CC1101
Control class for CC1101 module.
Definition: CC1101.h:507
-
CC1101::variablePacketLengthMode
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_CC1101_MAX_PACKET_LENGTH)
Set modem in variable packet length mode.
Definition: CC1101.cpp:746
-
CC1101::setRfSwitchPins
void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)
Some modules contain external RF switch controlled by two pins. This function gives RadioLib control ...
Definition: CC1101.cpp:852
-
CC1101::setPromiscuousMode
int16_t setPromiscuousMode(bool promiscuous=true)
Set modem in "sniff" mode: no packet filtering (e.g., no preamble, sync word, address,...
Definition: CC1101.cpp:777
-
CC1101::setCrcFiltering
int16_t setCrcFiltering(bool crcOn=true)
Enable CRC filtering and generation.
Definition: CC1101.cpp:767
+
CC1101::variablePacketLengthMode
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_CC1101_MAX_PACKET_LENGTH)
Set modem in variable packet length mode.
Definition: CC1101.cpp:759
+
CC1101::setRfSwitchPins
void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn)
Some modules contain external RF switch controlled by two pins. This function gives RadioLib control ...
Definition: CC1101.cpp:865
+
CC1101::setPromiscuousMode
int16_t setPromiscuousMode(bool promiscuous=true)
Set modem in "sniff" mode: no packet filtering (e.g., no preamble, sync word, address,...
Definition: CC1101.cpp:790
+
CC1101::setCrcFiltering
int16_t setCrcFiltering(bool crcOn=true)
Enable CRC filtering and generation.
Definition: CC1101.cpp:780
CC1101::transmitDirect
int16_t transmitDirect(uint32_t frf=0) override
Starts direct mode transmission.
Definition: CC1101.cpp:176
CC1101::CC1101
CC1101(Module *module)
Default constructor.
Definition: CC1101.cpp:4
PhysicalLayer::startTransmit
int16_t startTransmit(String &str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:51
diff --git a/class_c_c1101-members.html b/class_c_c1101-members.html index 90ee2904..bd296c06 100644 --- a/class_c_c1101-members.html +++ b/class_c_c1101-members.html @@ -104,7 +104,7 @@ $(document).ready(function(){initNavTree('class_c_c1101.html',''); initResizable getMod() (defined in CC1101)CC1101virtual getPacketLength(bool update=true) overrideCC1101virtual getPromiscuousMode()CC1101 - getRSSI() constCC1101 + getRSSI()CC1101 packetMode()CC1101 PhysicalLayer(float freqStep, size_t maxPacketLength)PhysicalLayer random(int32_t max)PhysicalLayer diff --git a/class_c_c1101.html b/class_c_c1101.html index 1c779b94..a77aa2dc 100644 --- a/class_c_c1101.html +++ b/class_c_c1101.html @@ -196,9 +196,9 @@ void int16_t setOOK (bool enableOOK)  Enables/disables OOK modulation instead of FSK. More...
  -float getRSSI () const - Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
-  +float getRSSI () + Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. More...
+  uint8_t getLQI () const  Gets LQI (Link Quality Indicator) of the last received packet. More...
  @@ -635,8 +635,8 @@ void  -

◆ getRSSI()

+ +

◆ getRSSI()

@@ -645,13 +645,14 @@ void float CC1101::getRSSI ( ) - const +

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

-
Returns
Last packet RSSI in dBm.
+

or in asynchronous direct mode the current RSSI level

+
Returns
RSSI in dBm.
diff --git a/class_c_c1101.js b/class_c_c1101.js index 13685a8b..1d679b8c 100644 --- a/class_c_c1101.js +++ b/class_c_c1101.js @@ -13,7 +13,7 @@ var class_c_c1101 = [ "getMod", "class_c_c1101.html#ad47b3b7bd67159638ff9afcfe002fc66", null ], [ "getPacketLength", "class_c_c1101.html#a122281f6a915b77ee9dafc9926e731a0", null ], [ "getPromiscuousMode", "class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6", null ], - [ "getRSSI", "class_c_c1101.html#a48fd0452d6f7d7d51ea7d23b2dbe1551", null ], + [ "getRSSI", "class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc", null ], [ "packetMode", "class_c_c1101.html#a38f6978c757b0dd73e3ef98164a735a2", null ], [ "randomByte", "class_c_c1101.html#a7ecf49d530ea7c29dd755f56db17d833", null ], [ "readBit", "class_c_c1101.html#a5cebec89fc0fa0f5ccbce28c6ce7d2dc", null ], diff --git a/functions_func_g.html b/functions_func_g.html index 1f84572d..49caced9 100644 --- a/functions_func_g.html +++ b/functions_func_g.html @@ -158,7 +158,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza : SX1280
  • getRSSI() -: CC1101 +: CC1101 , RF69 , SX126x , SX1272 diff --git a/functions_g.html b/functions_g.html index 157bfd67..7d7c35c2 100644 --- a/functions_g.html +++ b/functions_g.html @@ -158,7 +158,7 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable() : SX1280
  • getRSSI() -: CC1101 +: CC1101 , RF69 , SX126x , SX1272 diff --git a/navtreeindex0.js b/navtreeindex0.js index 90d670d4..789bf701 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -104,7 +104,7 @@ var NAVTREEINDEX0 = "class_c_c1101.html#a41a1de0ebffe7b65de6fd8cceb9a5123":[3,0,4,49], "class_c_c1101.html#a433f1a40b33be6c84d3665a1b4cd57d6":[3,0,4,43], "class_c_c1101.html#a45ab4e3f4f9db367185333d36ba21ed2":[3,0,4,40], -"class_c_c1101.html#a48fd0452d6f7d7d51ea7d23b2dbe1551":[3,0,4,13], +"class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc":[3,0,4,13], "class_c_c1101.html#a492b2d057dd803c3884fa1adc8e22534":[3,0,4,51], "class_c_c1101.html#a4f2dc4176b62a0636636088e31b8e85b":[3,0,4,5], "class_c_c1101.html#a50b9e73d2d82a4cd03841f465825b73f":[3,0,4,57], diff --git a/search/all_6.js b/search/all_6.js index bd60e72e..9c6adfc3 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -20,7 +20,7 @@ var searchData= ['getpictureheight_71',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], ['getpromiscuousmode_72',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], ['getrangingresult_73',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_74',['getRSSI',['../class_c_c1101.html#a48fd0452d6f7d7d51ea7d23b2dbe1551',1,'CC1101::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()']]], + ['getrssi_74',['getRSSI',['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()']]], ['getrssiinst_75',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]], ['getrst_76',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]], ['getsnr_77',['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()']]], diff --git a/search/functions_6.js b/search/functions_6.js index 741a50e1..fc6612e7 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -20,7 +20,7 @@ var searchData= ['getpictureheight_439',['getPictureHeight',['../class_s_s_t_v_client.html#ad66e5082788b507f0f18e6e0e255314d',1,'SSTVClient']]], ['getpromiscuousmode_440',['getPromiscuousMode',['../class_c_c1101.html#aeea78919ec14d940cda0f213e4fdced6',1,'CC1101']]], ['getrangingresult_441',['getRangingResult',['../class_s_x1280.html#a91f4f241f02cd4e79d15a9ba08eb1e8f',1,'SX1280']]], - ['getrssi_442',['getRSSI',['../class_c_c1101.html#a48fd0452d6f7d7d51ea7d23b2dbe1551',1,'CC1101::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()']]], + ['getrssi_442',['getRSSI',['../class_c_c1101.html#a490b2aa48bd7e5728fa82882411910dc',1,'CC1101::getRSSI()'],['../class_r_f69.html#ac4fc3f2b178ef08caec3a9f548f44cd7',1,'RF69::getRSSI()'],['../class_s_x126x.html#a0e5f0032a91686b9673a48c908eb1925',1,'SX126x::getRSSI()'],['../class_s_x1272.html#a0d8e68cf913422535dc43cbdf73a3f10',1,'SX1272::getRSSI()'],['../class_s_x1278.html#ae52d84fa301309a4a4294312571fc3b8',1,'SX1278::getRSSI()'],['../class_s_x128x.html#a94d3003277925e2dc3372548b3311008',1,'SX128x::getRSSI()']]], ['getrssiinst_443',['getRSSIInst',['../class_s_x126x.html#ae36664f9c605a8fe74b2f357e0ec3323',1,'SX126x']]], ['getrst_444',['getRst',['../class_module.html#ae352c7a7b997fc1b17189c1312a8347f',1,'Module']]], ['getsnr_445',['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()']]],