RadioLib
Universal wireless communication library for Arduino
|
Control class for AX5243 module. More...
#include <AX5243.h>
Public Member Functions | |
AX5243 (Module *module) | |
Default constructor. More... | |
int16_t | begin () |
![]() | |
PhysicalLayer (float freqStep, 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 | standby ()=0 |
Sets module to standby. More... | |
virtual int16_t | receive (uint8_t *data, size_t len)=0 |
Binary receive method. Must be implemented in module class. 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... | |
virtual int16_t | setDataShaping (uint8_t sh)=0 |
Sets GFSK data shaping. Only available in FSK mode. Must be implemented in module class. More... | |
virtual int16_t | setEncoding (uint8_t encoding)=0 |
Sets FSK data encoding. Only available in FSK mode. Must be implemented in module class. More... | |
float | getFreqStep () const |
Gets the module frequency step size that was set in constructor. More... | |
virtual size_t | getPacketLength (bool update=true)=0 |
Query modem for the packet length of received payload. Must be implemented in module class. 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... | |
virtual uint8_t | random ()=0 |
Get one truly random byte from RSSI noise. Must be implemented in module class. More... | |
Control class for AX5243 module.
AX5243::AX5243 | ( | Module * | module | ) |
Default constructor.
mod | Instance of Module that will be used to communicate with the radio. |