LoRaLib
Arduino library for LoRa modules based on LoRa chips by Semtech (SX1272, SX1276, SX1278) and HopeRF (RFM95, RFM96, RFM98)
|
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN. Also extracts some common module-independent methods. Using this interface class allows to use the protocols on various modules without much code duplicity. Because this class is used mainly as interface, all of its virtual members must be implemented in the module class. More...
#include <PhysicalLayer.h>
Public Member Functions | |
PhysicalLayer (float crysFreq, uint8_t divExp, size_t maxPacketLength) | |
Default constructor. More... | |
int16_t | transmit (__FlashStringHelper *fstr, uint8_t addr=0) |
Arduino Flash String transmit method. More... | |
int16_t | transmit (String &str, uint8_t addr=0) |
Arduino String transmit method. More... | |
int16_t | transmit (const char *str, uint8_t addr=0) |
C-string transmit method. More... | |
virtual int16_t | transmit (uint8_t *data, size_t len, uint8_t addr=0)=0 |
Binary transmit method. Must be implemented in module class. More... | |
int16_t | receive (String &str, size_t len=0) |
Arduino String receive method. More... | |
virtual int16_t | receive (uint8_t *data, size_t len)=0 |
Binary receive method. Must be implemented in module class. More... | |
virtual int16_t | standby ()=0 |
Sets module to standby. More... | |
int16_t | startTransmit (String &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... | |
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 (uint8_t *data, size_t len, uint8_t addr=0)=0 |
Interrupt-driven binary transmit method. More... | |
int16_t | readData (String &str, size_t len=0) |
Reads data that was received after calling startReceive method. More... | |
virtual int16_t | readData (uint8_t *data, size_t len)=0 |
Reads data that was received after calling startReceive method. More... | |
virtual int16_t | transmitDirect (uint32_t FRF=0)=0 |
Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode. More... | |
virtual int16_t | receiveDirect ()=0 |
Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode. More... | |
virtual int16_t | setFrequencyDeviation (float freqDev)=0 |
Sets FSK frequency deviation from carrier frequency. Allowed values depend on bit rate setting and must be lower than 200 kHz. Only available in FSK mode. Must be implemented in module class. More... | |
float | getCrystalFreq () |
Gets the module crystal oscillator frequency that was set in constructor. More... | |
uint8_t | getDivExponent () |
Gets the module frequency divider exponent that was set in constructor. More... | |
virtual size_t | getPacketLength (bool update=true)=0 |
Query modem for the packet length of received payload. More... | |
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN. Also extracts some common module-independent methods. Using this interface class allows to use the protocols on various modules without much code duplicity. Because this class is used mainly as interface, all of its virtual members must be implemented in the module class.
PhysicalLayer::PhysicalLayer | ( | float | crysFreq, |
uint8_t | divExp, | ||
size_t | maxPacketLength | ||
) |
Default constructor.
crysFreq | Frequency of crystal oscillator inside the module in MHz. |
divExp | Exponent of module frequency divider. |
maxPacketLength | Maximum length of packet that can be received by the module- |
float PhysicalLayer::getCrystalFreq | ( | ) |
Gets the module crystal oscillator frequency that was set in constructor.
uint8_t PhysicalLayer::getDivExponent | ( | ) |
Gets the module frequency divider exponent that was set in constructor.
|
pure virtual |
Query modem for the packet length of received payload.
update | Update received packet length. Will return cached value when set to false. |
Implemented in SX127x.
int16_t PhysicalLayer::readData | ( | String & | str, |
size_t | len = 0 |
||
) |
Reads data that was received after calling startReceive method.
str | Address of Arduino String to save the received data. |
len | Expected number of characters in the message. |
|
pure virtual |
Reads data that was received after calling startReceive method.
data | Pointer to array to save the received binary data. |
len | Number of bytes that will be received. Must be known in advance for binary transmissions. |
Implemented in SX127x.
int16_t PhysicalLayer::receive | ( | String & | str, |
size_t | len = 0 |
||
) |
Arduino String receive method.
str | Address of Arduino String to save the received data. |
len | Expected number of characters in the message. Leave as 0 if expecting a unknown size packet |
|
pure virtual |
Binary receive method. Must be implemented in module class.
data | Pointer to array to save the received binary data. |
len | Number of bytes that will be received. Must be known in advance for binary transmissions. |
Implemented in SX127x.
|
pure virtual |
Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode.
Implemented in SX127x.
|
pure virtual |
Sets FSK frequency deviation from carrier frequency. Allowed values depend on bit rate setting and must be lower than 200 kHz. Only available in FSK mode. Must be implemented in module class.
freqDev | Frequency deviation to be set (in kHz). |
Implemented in SX127x.
|
pure virtual |
int16_t PhysicalLayer::startTransmit | ( | String & | 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.
str | Address of Arduino String that will be transmitted. |
addr | Node address to transmit the packet to. Only used in FSK mode. |
int16_t PhysicalLayer::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.
str | C-string that will be transmitted. |
addr | Node address to transmit the packet to. Only used in FSK mode. |
|
pure virtual |
Interrupt-driven binary transmit method.
data | Binary data that will be transmitted. |
len | Length of binary data to transmit (in bytes). |
addr | Node address to transmit the packet to. Only used in FSK mode. |
Implemented in SX127x.
int16_t PhysicalLayer::transmit | ( | __FlashStringHelper * | fstr, |
uint8_t | addr = 0 |
||
) |
Arduino Flash String transmit method.
str | Pointer to Arduino Flash String that will be transmitted. |
addr | Node address to transmit the packet to. Only used in FSK mode. |
int16_t PhysicalLayer::transmit | ( | String & | str, |
uint8_t | addr = 0 |
||
) |
Arduino String transmit method.
str | Address of Arduino string that will be transmitted. |
addr | Node address to transmit the packet to. Only used in FSK mode. |
int16_t PhysicalLayer::transmit | ( | const char * | str, |
uint8_t | addr = 0 |
||
) |
C-string transmit method.
str | C-string that will be transmitted. |
addr | Node address to transmit the packet to. Only used in FSK mode. |
|
pure virtual |
Binary transmit method. Must be implemented in module class.
data | Binary data that will be transmitted. |
len | Length of binary data to transmit (in bytes). |
addr | Node address to transmit the packet to. Only used in FSK mode. |
Implemented in SX127x.
|
pure virtual |
Enables direct transmission mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class. While in direct mode, the module will not be able to transmit or receive packets. Can only be activated in FSK mode.
FRF | 24-bit raw frequency value to start transmitting at. Required for quick frequency shifts in RTTY. |
Implemented in SX127x.