RadioLib
Universal wireless communication library for Arduino
LR1120 Class Reference

Derived class for LR1120 modules. More...

#include <LR1120.h>

Inheritance diagram for LR1120:
LR11x0 PhysicalLayer LR1121

Public Member Functions

 LR1120 (Module *mod)
 Default constructor. More...
 
int16_t begin (float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE, int8_t power=10, uint16_t preambleLength=8, float tcxoVoltage=1.6)
 Initialization method for LoRa modem. More...
 
int16_t beginGFSK (float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=156.2, int8_t power=10, uint16_t preambleLength=16, float tcxoVoltage=1.6)
 Initialization method for FSK modem. More...
 
int16_t beginLRFHSS (float freq=434.0, uint8_t bw=RADIOLIB_LR11X0_LR_FHSS_BW_722_66, uint8_t cr=RADIOLIB_LR11X0_LR_FHSS_CR_2_3, bool narrowGrid=true, int8_t power=10, float tcxoVoltage=1.6)
 Initialization method for LR-FHSS modem. More...
 
int16_t setFrequency (float freq) override
 Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier! More...
 
int16_t setFrequency (float freq, bool skipCalibration, float band=4)
 Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier! More...
 
int16_t setOutputPower (int8_t power) override
 Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA). More...
 
int16_t setOutputPower (int8_t power, bool forceHighPower)
 Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA), -17 to 14 dBm (low-power PA) or -18 to 13 dBm (high-frequency PA). 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...
 
int16_t checkOutputPower (int8_t power, int8_t *clipped, bool forceHighPower)
 Check if output power is configurable. More...
 
int16_t setModem (ModemType_t modem) override
 Set modem for the radio to use. Will perform full reset and reconfigure the radio using its default parameters. More...
 
- Public Member Functions inherited from LR11x0
 LR11x0 (Module *mod)
 Default constructor. More...
 
int16_t begin (float bw, uint8_t sf, uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool high=false)
 Initialization method for LoRa modem. More...
 
int16_t beginGFSK (float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage)
 Initialization method for FSK modem. More...
 
int16_t beginLRFHSS (uint8_t bw, uint8_t cr, bool narrowGrid, float tcxoVoltage)
 Initialization method for LR-FHSS modem. More...
 
int16_t beginGNSS (uint8_t constellations=RADIOLIB_LR11X0_GNSS_CONSTELLATION_GPS|RADIOLIB_LR11X0_GNSS_CONSTELLATION_BEIDOU, float tcxoVoltage=1.6)
 Initialization method for GNSS scanning. More...
 
int16_t reset ()
 Reset method. Will reset the chip to the default state using RST pin. More...
 
int16_t transmit (const uint8_t *data, size_t len, uint8_t addr=0) override
 Blocking binary transmit method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
 
int16_t receive (uint8_t *data, size_t len) override
 Blocking binary receive method. Overloads for string-based transmissions are implemented in PhysicalLayer. More...
 
int16_t transmitDirect (uint32_t frf=0) override
 Starts direct mode transmission. More...
 
int16_t receiveDirect () override
 Starts direct mode reception. Only implemented for PhysicalLayer compatibility, as SX126x series does not support direct mode reception. Will always return RADIOLIB_ERR_UNKNOWN. More...
 
int16_t scanChannel () override
 Performs scan for LoRa transmission in the current channel. Detects both preamble and payload. More...
 
int16_t scanChannel (const ChannelScanConfig_t &config) override
 Performs scan for LoRa transmission in the current channel. Detects both preamble and payload. More...
 
int16_t standby () override
 Sets the module to standby mode (overload for PhysicalLayer compatibility, uses 13 MHz RC oscillator). More...
 
int16_t standby (uint8_t mode, bool wakeup=true)
 Sets the module to standby mode. More...
 
int16_t sleep () override
 Sets the module to sleep mode. To wake the device up, call standby(). Overload with warm start enabled for PhysicalLayer compatibility. More...
 
int16_t sleep (bool retainConfig, uint32_t sleepTime)
 Sets the module to sleep mode. To wake the device up, call standby(). More...
 
void setIrqAction (void(*func)(void))
 Sets interrupt service routine to call when IRQ1 activates. More...
 
void clearIrqAction ()
 Clears interrupt service routine to call when IRQ1 activates.
 
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 (const 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 () override
 Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalLayer. More...
 
int16_t startReceive (uint32_t timeout, uint32_t irqFlags=RADIOLIB_LR11X0_IRQ_RX_DONE, uint32_t irqMask=0, size_t len=0)
 Interrupt-driven receive method. IRQ1 will be activated when full packet is received. More...
 
uint32_t getIrqStatus ()
 Reads the current IRQ status. 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 startChannelScan () override
 Interrupt-driven channel activity detection method. IRQ1 will be activated when LoRa preamble is detected, or upon timeout. Defaults to CAD parameter values recommended by AN1200.48. More...
 
int16_t startChannelScan (const ChannelScanConfig_t &config) override
 Interrupt-driven channel activity detection method. IRQ pin will be activated when LoRa preamble is detected, or upon timeout. More...
 
int16_t getChannelScanResult () override
 Read the channel scan result. More...
 
int16_t setBandwidth (float bw, bool high=false)
 Sets LoRa bandwidth. Allowed values are 62.5, 125.0, 250.0 and 500.0 kHz. (default, high = false) More...
 
int16_t setSpreadingFactor (uint8_t sf, bool legacy=false)
 Sets LoRa spreading factor. Allowed values range from 5 to 12. More...
 
int16_t setCodingRate (uint8_t cr, bool longInterleave=false)
 Sets LoRa coding rate denominator. Allowed values range from 5 to 8. More...
 
int16_t setSyncWord (uint8_t syncWord)
 Sets LoRa sync word. More...
 
int16_t setBitRate (float br) override
 Sets GFSK bit rate. Allowed values range from 0.6 to 300.0 kbps. More...
 
int16_t setFrequencyDeviation (float freqDev) override
 Sets GFSK frequency deviation. Allowed values range from 0.0 to 200.0 kHz. More...
 
int16_t setRxBandwidth (float rxBw)
 Sets GFSK receiver bandwidth. Allowed values are 4.8, 5.8, 7.3, 9.7, 11.7, 14.6, 19.5, 23.4, 29.3, 39.0, 46.9, 58.6, 78.2, 93.8, 117.3, 156.2, 187.2, 234.3, 312.0, 373.6 and 467.0 kHz. More...
 
int16_t setSyncWord (uint8_t *syncWord, size_t len) override
 Sets GFSK sync word in the form of array of up to 8 bytes. More...
 
int16_t setSyncBits (uint8_t *syncWord, uint8_t bitsLen)
 Sets GFSK sync word in the form of array of up to 8 bytes. More...
 
int16_t setNodeAddress (uint8_t nodeAddr)
 Sets node address. Calling this method will also enable address filtering for node address only. More...
 
int16_t setBroadcastAddress (uint8_t broadAddr)
 Sets broadcast address. Calling this method will also enable address filtering for node and broadcast address. More...
 
int16_t disableAddressFiltering ()
 Disables address filtering. Calling this method will also erase previously set addresses. More...
 
int16_t setDataShaping (uint8_t sh) override
 Sets time-bandwidth product of Gaussian filter applied for shaping. Allowed values are RADIOLIB_SHAPING_0_3, RADIOLIB_SHAPING_0_5, RADIOLIB_SHAPING_0_7 or RADIOLIB_SHAPING_1_0. Set to RADIOLIB_SHAPING_NONE to disable data shaping. More...
 
int16_t setEncoding (uint8_t encoding) override
 Sets transmission encoding. Available in GFSK mode only. Serves only as alias for PhysicalLayer compatibility. More...
 
int16_t fixedPacketLengthMode (uint8_t len=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)
 Set modem in fixed packet length mode. Available in GFSK mode only. More...
 
int16_t variablePacketLengthMode (uint8_t maxLen=RADIOLIB_LR11X0_MAX_PACKET_LENGTH)
 Set modem in variable packet length mode. Available in GFSK mode only. More...
 
int16_t setWhitening (bool enabled, uint16_t initial=0x01FF)
 Sets GFSK whitening parameters. More...
 
int16_t setDataRate (DataRate_t dr) override
 Set data. More...
 
int16_t checkDataRate (DataRate_t dr) override
 Check the data rate can be configured by this module. More...
 
int16_t setPreambleLength (size_t preambleLength) override
 Sets preamble length for LoRa or GFSK modem. Allowed values range from 1 to 65535. More...
 
int16_t setTCXO (float voltage, uint32_t delay=5000)
 Sets TCXO (Temperature Compensated Crystal Oscillator) configuration. More...
 
int16_t setCRC (uint8_t len, uint32_t initial=0x00001D0FUL, uint32_t polynomial=0x00001021UL, bool inverted=true)
 Sets CRC configuration. More...
 
int16_t invertIQ (bool enable) override
 Enable/disable inversion of the I and Q signals. More...
 
float getRSSI () override
 Gets RSSI (Recorded Signal Strength Indicator) of the last received packet. Only available for LoRa or GFSK modem. More...
 
float getSNR () override
 Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem. More...
 
float getFrequencyError ()
 Gets frequency error of the latest received packet. More...
 
size_t getPacketLength (bool update=true) override
 Query modem for the packet length of received payload. More...
 
size_t getPacketLength (bool update, uint8_t *offset)
 Query modem for the packet length of received payload. More...
 
RadioLibTime_t getTimeOnAir (size_t len) override
 Get expected time-on-air for a given size of payload. More...
 
RadioLibTime_t calculateRxTimeout (RadioLibTime_t timeoutUs) override
 Calculate the timeout value for this specific module / series (in number of symbols or units of time) More...
 
uint32_t getIrqFlags () override
 Read currently active IRQ flags. More...
 
int16_t setIrqFlags (uint32_t irq) override
 Set interrupt on IRQ pin to be sent on a specific IRQ bit (e.g. RxTimeout, CadDone). More...
 
int16_t clearIrqFlags (uint32_t irq) override
 Clear interrupt on a specific IRQ bit (e.g. RxTimeout, CadDone). More...
 
uint8_t randomByte () override
 Get one truly random byte from RSSI noise. More...
 
int16_t implicitHeader (size_t len)
 Set implicit header mode for future reception/transmission. More...
 
int16_t explicitHeader ()
 Set explicit header mode for future reception/transmission. More...
 
float getDataRate () const
 Gets effective data rate for the last transmitted packet. The value is calculated only for payload bytes. More...
 
int16_t setRegulatorLDO ()
 Set regulator mode to LDO. More...
 
int16_t setRegulatorDCDC ()
 Set regulator mode to DC-DC. More...
 
int16_t setRxBoostedGainMode (bool en)
 Enables or disables Rx Boosted Gain mode (additional Rx gain for increased power consumption). More...
 
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...
 
int16_t forceLDRO (bool enable)
 Forces LoRa low data rate optimization. Only available in LoRa mode. After calling this method, LDRO will always be set to the provided value, regardless of symbol length. To re-enable automatic LDRO configuration, call LR11x0::autoLDRO() More...
 
int16_t autoLDRO ()
 Re-enables automatic LDRO configuration. Only available in LoRa mode. After calling this method, LDRO will be enabled automatically when symbol length exceeds 16 ms. More...
 
int16_t setLrFhssConfig (uint8_t bw, uint8_t cr, uint8_t hdrCount=3, uint16_t hopSeed=0x13A)
 Sets LR-FHSS configuration. More...
 
int16_t startWifiScan (char wifiType, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)
 Start passive WiFi scan. BUSY pin will be de-activated when the scan is finished. More...
 
void setWiFiScanAction (void(*func)(void))
 Sets interrupt service routine to call when a WiFi scan is completed. More...
 
void clearWiFiScanAction ()
 Clears interrupt service routine to call when a WiFi scan is completed.
 
int16_t getWifiScanResultsCount (uint8_t *count)
 Get number of WiFi scan results after the scan is finished. More...
 
int16_t getWifiScanResult (LR11x0WifiResult_t *result, uint8_t index, bool brief=false)
 Retrieve passive WiFi scan result. More...
 
int16_t wifiScan (uint8_t wifiType, uint8_t *count, uint8_t mode=RADIOLIB_LR11X0_WIFI_ACQ_MODE_FULL_BEACON, uint16_t chanMask=RADIOLIB_LR11X0_WIFI_ALL_CHANNELS, uint8_t numScans=16, uint16_t timeout=100)
 Blocking WiFi scan method. Performs a full passive WiFi scan. This method may block for several seconds! More...
 
int16_t getVersionInfo (LR11x0VersionInfo_t *info)
 Retrieve LR11x0 hardware, device and firmware version information. More...
 
int16_t updateFirmware (const uint32_t *image, size_t size, bool nonvolatile=true)
 Method to upload new firmware image to the device. The device will be automatically erased, a new firmware will be uploaded, written to flash and executed. More...
 
int16_t isGnssScanCapable ()
 Method to check whether the device is capable of performing a GNSS scan. More...
 
int16_t gnssScan (LR11x0GnssResult_t *res=NULL)
 Performs GNSS scan. More...
 
int16_t getGnssAlmanacStatus (LR11x0GnssAlmanacStatus_t *stat)
 Read information about the almanac. More...
 
int16_t gnssDelayUntilSubframe (LR11x0GnssAlmanacStatus_t *stat, uint8_t constellation)
 Blocking wait until the next subframe with almanac data is available. Used to control timing during almanac update from satellite. More...
 
int16_t updateGnssAlmanac (uint8_t constellation)
 Perform almanac update. Must be called immediately after gnssDelayUntilSubframe. More...
 
int16_t getGnssPosition (LR11x0GnssPosition_t *pos, bool filtered=true)
 Get GNSS position. Called after gnssScan to retrieve the position calculated by the internal solver. More...
 
int16_t getGnssSatellites (LR11x0GnssSatellite_t *sats, uint8_t numSats)
 Get GNSS satellites found during the last scan. More...
 
int16_t getModem (ModemType_t *modem) override
 Get modem currently in use by the radio. More...
 
int16_t calibrateImageRejection (float freqMin, float freqMax)
 Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk! Setting incorrect values may lead to decreased performance. More...
 
int16_t transmit (const char *str, uint8_t addr=0)
 C-string transmit method. More...
 
virtual int16_t transmit (const uint8_t *data, size_t len, uint8_t addr=0)
 Binary transmit method. Must be implemented in module class. More...
 
virtual int16_t receive (uint8_t *data, size_t len)
 Binary receive method. Must be implemented in module class. More...
 
int16_t startTransmit (const char *str, uint8_t addr=0)
 Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
 
virtual int16_t startTransmit (const uint8_t *data, size_t len, uint8_t addr=0)
 Interrupt-driven binary transmit method. More...
 
virtual int16_t readData (uint8_t *data, size_t len)
 Reads data that was received after calling startReceive method. More...
 
- Public Member Functions inherited from PhysicalLayer
 PhysicalLayer (float step, size_t maxLen)
 Default constructor. More...
 
int16_t transmit (const char *str, uint8_t addr=0)
 C-string transmit method. More...
 
virtual int16_t standby (uint8_t mode)
 Sets module to a specific standby mode. More...
 
int16_t startTransmit (const char *str, uint8_t addr=0)
 Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes. More...
 
float getFreqStep () const
 Gets the module frequency step size that was set in constructor. More...
 
uint32_t getIrqMapped (RadioLibIrqFlags_t irq)
 Convert from radio-agnostic IRQ flags to radio-specific flags. More...
 
int16_t checkIrq (RadioLibIrqType_t irq)
 Check whether a specific IRQ bit is set (e.g. RxTimeout, CadDone). More...
 
int16_t setIrq (RadioLibIrqFlags_t irq)
 Set interrupt on specific IRQ bit(s) (e.g. RxTimeout, CadDone). Keep in mind that not all radio modules support all RADIOLIB_IRQ_ flags! More...
 
int16_t clearIrq (RadioLibIrqFlags_t irq)
 Clear interrupt on a specific IRQ bit (e.g. RxTimeout, CadDone). Keep in mind that not all radio modules support all RADIOLIB_IRQ_ flags! More...
 
int32_t random (int32_t max)
 Get truly random number in range 0 - max. More...
 
int32_t random (int32_t min, int32_t max)
 Get truly random number in range min - max. More...
 
int16_t startDirect ()
 Configure module parameters for direct modes. Must be called prior to "ham" modes like RTTY or AX.25. Only available in FSK mode. More...
 
int16_t setDirectSyncWord (uint32_t syncWord, uint8_t len)
 Set sync word to be used to determine start of packet in direct reception mode. More...
 
virtual void setDirectAction (void(*func)(void))
 Set interrupt service routine function to call when data bit is received in direct mode. Must be implemented in module class. More...
 
virtual void readBit (uint32_t pin)
 Function to read and process data bit in direct reception mode. Must be implemented in module class. More...
 
int16_t available ()
 Get the number of direct mode bytes currently available in buffer. More...
 
void dropSync ()
 Forcefully drop synchronization.
 
uint8_t read (bool drop=true)
 Get data from direct mode buffer. More...
 
virtual int16_t setDIOMapping (uint32_t pin, uint32_t value)
 Configure DIO pin mapping to get a given signal on a DIO pin (if available). More...
 
virtual void setChannelScanAction (void(*func)(void))
 Sets interrupt service routine to call when a channel scan is finished. More...
 
virtual void clearChannelScanAction ()
 Clears interrupt service routine to call when a channel scan is finished.
 

Additional Inherited Members

- Public Types inherited from LR11x0
enum  OpMode_t {
  MODE_END_OF_TABLE = Module::MODE_END_OF_TABLE , MODE_STBY = Module::MODE_IDLE , MODE_RX = Module::MODE_RX , MODE_TX = Module::MODE_TX ,
  MODE_TX_HP , MODE_TX_HF , MODE_GNSS , MODE_WIFI
}
 Custom operation modes for LR11x0. Needed because LR11x0 has several modems (sub-GHz, 2.4 GHz etc.) in one package. More...
 
- Public Attributes inherited from LR11x0
bool XTAL
 Whether the module has an XTAL (true) or TCXO (false). Defaults to false.
 

Detailed Description

Derived class for LR1120 modules.

Constructor & Destructor Documentation

◆ LR1120()

LR1120::LR1120 ( Module mod)

Default constructor.

Parameters
modInstance of Module that will be used to communicate with the radio.

Member Function Documentation

◆ begin()

int16_t LR1120::begin ( float  freq = 434.0,
float  bw = 125.0,
uint8_t  sf = 9,
uint8_t  cr = 7,
uint8_t  syncWord = RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE,
int8_t  power = 10,
uint16_t  preambleLength = 8,
float  tcxoVoltage = 1.6 
)

Initialization method for LoRa modem.

Parameters
freqCarrier frequency in MHz. Defaults to 434.0 MHz.
bwLoRa bandwidth in kHz. Defaults to 125.0 kHz.
sfLoRa spreading factor. Defaults to 9.
crLoRa coding rate denominator. Defaults to 7 (coding rate 4/7).
syncWord1-byte LoRa sync word. Defaults to RADIOLIB_LR11X0_LORA_SYNC_WORD_PRIVATE (0x12).
powerOutput power in dBm. Defaults to 10 dBm.
preambleLengthLoRa preamble length in symbols. Defaults to 8 symbols.
tcxoVoltageTCXO reference voltage to be set. Defaults to 1.6 V. If you are seeing -706/-707 error codes, it likely means you are using non-0 value for module with XTAL. To use XTAL, either set this value to 0, or set LR11x0::XTAL to true.
Returns
Status Codes

◆ beginGFSK()

int16_t LR1120::beginGFSK ( float  freq = 434.0,
float  br = 4.8,
float  freqDev = 5.0,
float  rxBw = 156.2,
int8_t  power = 10,
uint16_t  preambleLength = 16,
float  tcxoVoltage = 1.6 
)

Initialization method for FSK modem.

Parameters
freqCarrier frequency in MHz. Defaults to 434.0 MHz.
brFSK bit rate in kbps. Defaults to 4.8 kbps.
freqDevFrequency deviation from carrier frequency in kHz. Defaults to 5.0 kHz.
rxBwReceiver bandwidth in kHz. Defaults to 156.2 kHz.
powerOutput power in dBm. Defaults to 10 dBm.
preambleLengthFSK preamble length in bits. Defaults to 16 bits.
tcxoVoltageTCXO reference voltage to be set. Defaults to 1.6 V. If you are seeing -706/-707 error codes, it likely means you are using non-0 value for module with XTAL. To use XTAL, either set this value to 0, or set LR11x0::XTAL to true.
Returns
Status Codes

◆ beginLRFHSS()

int16_t LR1120::beginLRFHSS ( float  freq = 434.0,
uint8_t  bw = RADIOLIB_LR11X0_LR_FHSS_BW_722_66,
uint8_t  cr = RADIOLIB_LR11X0_LR_FHSS_CR_2_3,
bool  narrowGrid = true,
int8_t  power = 10,
float  tcxoVoltage = 1.6 
)

Initialization method for LR-FHSS modem.

Parameters
freqCarrier frequency in MHz. Defaults to 434.0 MHz.
bwLR-FHSS bandwidth, one of RADIOLIB_LR11X0_LR_FHSS_BW_* values. Defaults to 722.66 kHz.
crLR-FHSS coding rate, one of RADIOLIB_LR11X0_LR_FHSS_CR_* values. Defaults to 2/3 coding rate.
narrowGridWhether to use narrow (3.9 kHz) or wide (25.39 kHz) grid spacing. Defaults to true (narrow/non-FCC) grid.
powerOutput power in dBm. Defaults to 10 dBm.
tcxoVoltageTCXO reference voltage to be set. Defaults to 1.6 V. If you are seeing -706/-707 error codes, it likely means you are using non-0 value for module with XTAL. To use XTAL, either set this value to 0, or set LR11x0::XTAL to true.
Returns
Status Codes

◆ checkOutputPower() [1/2]

int16_t LR1120::checkOutputPower ( int8_t  power,
int8_t *  clipped 
)
overridevirtual

Check if output power is configurable. This method is needed for compatibility with PhysicalLayer::checkOutputPower.

Parameters
powerOutput power in dBm, PA will be determined automatically.
clippedClipped output power value to what is possible within the module's range.
Returns
Status Codes

Reimplemented from PhysicalLayer.

◆ checkOutputPower() [2/2]

int16_t LR1120::checkOutputPower ( int8_t  power,
int8_t *  clipped,
bool  forceHighPower 
)

Check if output power is configurable.

Parameters
powerOutput power in dBm.
clippedClipped output power value to what is possible within the module's range.
forceHighPowerForce using the high-power PA. If set to false, PA will be determined automatically based on configured output power, preferring the low-power PA. If set to true, only high-power PA will be used. Ignored when operating in 2.4 GHz band.
Returns
Status Codes

◆ setFrequency() [1/2]

int16_t LR1120::setFrequency ( float  freq)
overridevirtual

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier!

Parameters
freqCarrier frequency to be set in MHz.
Returns
Status Codes

Reimplemented from PhysicalLayer.

◆ setFrequency() [2/2]

int16_t LR1120::setFrequency ( float  freq,
bool  skipCalibration,
float  band = 4 
)

Sets carrier frequency. Allowed values are in range from 150.0 to 960.0 MHz, 1900 - 2200 MHz and 2400 - 2500 MHz. Will automatically perform image calibration if the frequency changes by more than RADIOLIB_LR11X0_CAL_IMG_FREQ_TRIG MHz. NOTE: When switching between sub-GHz and high-frequency bands, after changing the frequency, setOutputPower() must be called in order to set the correct power amplifier!

Parameters
freqCarrier frequency to be set in MHz.
skipCalibrationSkip automated image calibration.
bandHalf bandwidth for image calibration. For example, if carrier is 434 MHz and band is set to 4 MHz, then the image will be calibrate for band 430 - 438 MHz. Unused if calibrate is set to false, defaults to 4 MHz
Returns
Status Codes

◆ setModem()

int16_t LR1120::setModem ( ModemType_t  modem)
overridevirtual

Set modem for the radio to use. Will perform full reset and reconfigure the radio using its default parameters.

Parameters
modemModem type to set - FSK, LoRa or LR-FHSS.
Returns
Status Codes

Reimplemented from PhysicalLayer.

◆ setOutputPower() [1/2]

int16_t LR1120::setOutputPower ( int8_t  power)
overridevirtual

Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA) or -17 to 14 dBm (low-power PA).

Parameters
powerOutput power to be set in dBm, output PA is determined automatically preferring the low-power PA.
Returns
Status Codes

Reimplemented from PhysicalLayer.

◆ setOutputPower() [2/2]

int16_t LR1120::setOutputPower ( int8_t  power,
bool  forceHighPower 
)

Sets output power. Allowed values are in range from -9 to 22 dBm (high-power PA), -17 to 14 dBm (low-power PA) or -18 to 13 dBm (high-frequency PA).

Parameters
powerOutput power to be set in dBm.
forceHighPowerForce using the high-power PA in sub-GHz bands, or high-frequency PA in 2.4 GHz band. If set to false, PA will be determined automatically based on configured output power and frequency, preferring the low-power PA but always using high-frequency PA in 2.4 GHz band. Ignored when operating in 2.4 GHz band.
Returns
Status Codes

The documentation for this class was generated from the following files: