mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #12741 from kivaisan/add_lora_drivers
Add Semtech Lora radio driverspull/12819/head
commit
bb8038513f
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,408 @@
|
|||
/**
|
||||
/ _____) _ | |
|
||||
( (____ _____ ____ _| |_ _____ ____| |__
|
||||
\____ \| ___ | (_ _) ___ |/ ___) _ \
|
||||
_____) ) ____| | | || |_| ____( (___| | | |
|
||||
(______/|_____)_|_|_| \__)_____)\____)_| |_|
|
||||
(C)2015 Semtech
|
||||
___ _____ _ ___ _ _____ ___ ___ ___ ___
|
||||
/ __|_ _/_\ / __| |/ / __/ _ \| _ \/ __| __|
|
||||
\__ \ | |/ _ \ (__| ' <| _| (_) | / (__| _|
|
||||
|___/ |_/_/ \_\___|_|\_\_| \___/|_|_\\___|___|
|
||||
embedded.connectivity.solutions===============
|
||||
|
||||
Description: LoRaWAN stack layer that controls both MAC and PHY underneath
|
||||
|
||||
License: Revised BSD License, see LICENSE.TXT file include in the project
|
||||
|
||||
Maintainer: Miguel Luis, Gregory Cristian & Gilbert Menth
|
||||
|
||||
Copyright (c) 2019, Arm Limited and affiliates.
|
||||
|
||||
SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef MBED_LORA_RADIO_DRV_SX126X_LORARADIO_H_
|
||||
#define MBED_LORA_RADIO_DRV_SX126X_LORARADIO_H_
|
||||
|
||||
#if DEVICE_SPI
|
||||
|
||||
#include "mbed_critical.h"
|
||||
#include "PinNames.h"
|
||||
#include "InterruptIn.h"
|
||||
#include "DigitalOut.h"
|
||||
#include "DigitalInOut.h"
|
||||
#include "DigitalIn.h"
|
||||
#include "AnalogIn.h"
|
||||
#include "SPI.h"
|
||||
#include "platform/PlatformMutex.h"
|
||||
#ifdef MBED_CONF_RTOS_PRESENT
|
||||
#include "rtos/Thread.h"
|
||||
#include "rtos/ThisThread.h"
|
||||
#endif
|
||||
#include "sx126x_ds.h"
|
||||
#include "lorawan/LoRaRadio.h"
|
||||
|
||||
#ifdef MBED_CONF_SX126X_LORA_DRIVER_BUFFER_SIZE
|
||||
#define MAX_DATA_BUFFER_SIZE_SX126X MBED_CONF_SX126X_LORA_DRIVER_BUFFER_SIZE
|
||||
#else
|
||||
#define MAX_DATA_BUFFER_SIZE_SX126X 255
|
||||
#endif
|
||||
|
||||
class SX126X_LoRaRadio : public LoRaRadio {
|
||||
|
||||
public:
|
||||
SX126X_LoRaRadio(PinName mosi,
|
||||
PinName miso,
|
||||
PinName sclk,
|
||||
PinName nss,
|
||||
PinName reset,
|
||||
PinName dio1,
|
||||
PinName busy,
|
||||
PinName freq_select,
|
||||
PinName device_select,
|
||||
PinName crystal_select,
|
||||
PinName ant_switch);
|
||||
|
||||
virtual ~SX126X_LoRaRadio();
|
||||
|
||||
/**
|
||||
* Registers radio events with the Mbed LoRaWAN stack and
|
||||
* undergoes initialization steps if any
|
||||
*
|
||||
* @param events Structure containing the driver callback functions
|
||||
*/
|
||||
virtual void init_radio(radio_events_t *events);
|
||||
|
||||
/**
|
||||
* Resets the radio module
|
||||
*/
|
||||
virtual void radio_reset();
|
||||
|
||||
/**
|
||||
* Put the RF module in sleep mode
|
||||
*/
|
||||
virtual void sleep(void);
|
||||
|
||||
/**
|
||||
* Sets the radio in standby mode
|
||||
*/
|
||||
virtual void standby(void);
|
||||
|
||||
/**
|
||||
* Sets the reception parameters
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param bandwidth Sets the bandwidth
|
||||
* FSK : >= 2600 and <= 250000 Hz
|
||||
* LoRa: [0: 125 kHz, 1: 250 kHz,
|
||||
* 2: 500 kHz, 3: Reserved]
|
||||
* @param datarate Sets the Datarate
|
||||
* FSK : 600..300000 bits/s
|
||||
* LoRa: [6: 64, 7: 128, 8: 256, 9: 512,
|
||||
* 10: 1024, 11: 2048, 12: 4096 chips]
|
||||
* @param coderate Sets the coding rate ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [1: 4/5, 2: 4/6, 3: 4/7, 4: 4/8]
|
||||
* @param bandwidth_afc Sets the AFC Bandwidth ( FSK only )
|
||||
* FSK : >= 2600 and <= 250000 Hz
|
||||
* LoRa: N/A ( set to 0 )
|
||||
* @param preamble_len Sets the Preamble length ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: Length in symbols ( the hardware adds 4 more symbols )
|
||||
* @param symb_timeout Sets the RxSingle timeout value
|
||||
* FSK : timeout number of bytes
|
||||
* LoRa: timeout in symbols
|
||||
* @param fixLen Fixed length packets [0: variable, 1: fixed]
|
||||
* @param payload_len Sets payload length when fixed lenght is used
|
||||
* @param crc_on Enables/Disables the CRC [0: OFF, 1: ON]
|
||||
* @param freq_hop_on Enables disables the intra-packet frequency hopping [0: OFF, 1: ON] (LoRa only)
|
||||
* @param hop_period Number of symbols bewteen each hop (LoRa only)
|
||||
* @param iq_inverted Inverts IQ signals ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [0: not inverted, 1: inverted]
|
||||
* @param rx_continuous Sets the reception in continuous mode
|
||||
* [false: single mode, true: continuous mode]
|
||||
*/
|
||||
virtual void set_rx_config(radio_modems_t modem, uint32_t bandwidth,
|
||||
uint32_t datarate, uint8_t coderate,
|
||||
uint32_t bandwidth_afc, uint16_t preamble_len,
|
||||
uint16_t symb_timeout, bool fix_len,
|
||||
uint8_t payload_len,
|
||||
bool crc_on, bool freq_hop_on, uint8_t hop_period,
|
||||
bool iq_inverted, bool rx_continuous);
|
||||
|
||||
/**
|
||||
* Sets the transmission parameters
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param power Sets the output power [dBm]
|
||||
* @param fdev Sets the frequency deviation ( FSK only )
|
||||
* FSK : [Hz]
|
||||
* LoRa: 0
|
||||
* @param bandwidth Sets the bandwidth ( LoRa only )
|
||||
* FSK : 0
|
||||
* LoRa: [0: 125 kHz, 1: 250 kHz,
|
||||
* 2: 500 kHz, 3: Reserved]
|
||||
* @param datarate Sets the Datarate
|
||||
* FSK : 600..300000 bits/s
|
||||
* LoRa: [6: 64, 7: 128, 8: 256, 9: 512,
|
||||
* 10: 1024, 11: 2048, 12: 4096 chips]
|
||||
* @param coderate Sets the coding rate ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [1: 4/5, 2: 4/6, 3: 4/7, 4: 4/8]
|
||||
* @param preamble_len Sets the preamble length
|
||||
* @param fix_len Fixed length packets [0: variable, 1: fixed]
|
||||
* @param crc_on Enables disables the CRC [0: OFF, 1: ON]
|
||||
* @param freq_hop_on Enables disables the intra-packet frequency hopping [0: OFF, 1: ON] (LoRa only)
|
||||
* @param hop_period Number of symbols bewteen each hop (LoRa only)
|
||||
* @param iq_inverted Inverts IQ signals ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [0: not inverted, 1: inverted]
|
||||
* @param timeout Transmission timeout [ms]
|
||||
*/
|
||||
virtual void set_tx_config(radio_modems_t modem, int8_t power, uint32_t fdev,
|
||||
uint32_t bandwidth, uint32_t datarate,
|
||||
uint8_t coderate, uint16_t preamble_len,
|
||||
bool fix_len, bool crc_on, bool freq_hop_on,
|
||||
uint8_t hop_period, bool iq_inverted, uint32_t timeout);
|
||||
|
||||
/**
|
||||
* Sends the buffer of size
|
||||
*
|
||||
* Prepares the packet to be sent and sets the radio in transmission
|
||||
*
|
||||
* @param buffer Buffer pointer
|
||||
* @param size Buffer size
|
||||
*/
|
||||
virtual void send(uint8_t *buffer, uint8_t size);
|
||||
|
||||
/**
|
||||
* Sets the radio to receive
|
||||
*
|
||||
* All necessary configuration options for reception are set in
|
||||
* 'set_rx_config(parameters)' API.
|
||||
*/
|
||||
virtual void receive(void);
|
||||
|
||||
/**
|
||||
* Sets the carrier frequency
|
||||
*
|
||||
* @param freq Channel RF frequency
|
||||
*/
|
||||
virtual void set_channel(uint32_t freq);
|
||||
|
||||
/**
|
||||
* Generates a 32 bits random value based on the RSSI readings
|
||||
*
|
||||
* Remark this function sets the radio in LoRa modem mode and disables
|
||||
* all interrupts.
|
||||
* After calling this function either Radio.SetRxConfig or
|
||||
* Radio.SetTxConfig functions must be called.
|
||||
*
|
||||
* @return 32 bits random value
|
||||
*/
|
||||
virtual uint32_t random(void);
|
||||
|
||||
/**
|
||||
* Get radio status
|
||||
*
|
||||
* @param status Radio status [RF_IDLE, RF_RX_RUNNING, RF_TX_RUNNING]
|
||||
* @return Return current radio status
|
||||
*/
|
||||
virtual uint8_t get_status(void);
|
||||
|
||||
/**
|
||||
* Sets the maximum payload length
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param max Maximum payload length in bytes
|
||||
*/
|
||||
virtual void set_max_payload_length(radio_modems_t modem, uint8_t max);
|
||||
|
||||
/**
|
||||
* Sets the network to public or private
|
||||
*
|
||||
* Updates the sync byte. Applies to LoRa modem only
|
||||
*
|
||||
* @param enable if true, it enables a public network
|
||||
*/
|
||||
virtual void set_public_network(bool enable);
|
||||
|
||||
/**
|
||||
* Computes the packet time on air for the given payload
|
||||
*
|
||||
* Remark can only be called once SetRxConfig or SetTxConfig have been called
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param pkt_len Packet payload length
|
||||
* @return Computed airTime for the given packet payload length
|
||||
*/
|
||||
virtual uint32_t time_on_air(radio_modems_t modem, uint8_t pkt_len);
|
||||
|
||||
/**
|
||||
* Perform carrier sensing
|
||||
*
|
||||
* Checks for a certain time if the RSSI is above a given threshold.
|
||||
* This threshold determines if there is already a transmission going on
|
||||
* in the channel or not.
|
||||
*
|
||||
* @param modem Type of the radio modem
|
||||
* @param freq Carrier frequency
|
||||
* @param rssi_threshold Threshold value of RSSI
|
||||
* @param max_carrier_sense_time time to sense the channel
|
||||
*
|
||||
* @return true if there is no active transmission
|
||||
* in the channel, false otherwise
|
||||
*/
|
||||
virtual bool perform_carrier_sense(radio_modems_t modem,
|
||||
uint32_t freq,
|
||||
int16_t rssi_threshold,
|
||||
uint32_t max_carrier_sense_time);
|
||||
|
||||
/**
|
||||
* Sets the radio in CAD mode
|
||||
*
|
||||
*/
|
||||
virtual void start_cad(void);
|
||||
|
||||
/**
|
||||
* Check if the given RF is in range
|
||||
*
|
||||
* @param frequency frequency needed to be checked
|
||||
*/
|
||||
virtual bool check_rf_frequency(uint32_t frequency);
|
||||
|
||||
/** Sets the radio in continuous wave transmission mode
|
||||
*
|
||||
* @param freq Channel RF frequency
|
||||
* @param power Sets the output power [dBm]
|
||||
* @param time Transmission mode timeout [s]
|
||||
*/
|
||||
virtual void set_tx_continuous_wave(uint32_t freq, int8_t power, uint16_t time);
|
||||
|
||||
/**
|
||||
* Acquire exclusive access
|
||||
*/
|
||||
virtual void lock(void);
|
||||
|
||||
/**
|
||||
* Release exclusive access
|
||||
*/
|
||||
virtual void unlock(void);
|
||||
|
||||
private:
|
||||
|
||||
// SPI and chip select control
|
||||
mbed::SPI _spi;
|
||||
mbed::DigitalOut _chip_select;
|
||||
|
||||
// module rest control
|
||||
mbed::DigitalInOut _reset_ctl;
|
||||
|
||||
// Interrupt controls
|
||||
mbed::InterruptIn _dio1_ctl;;
|
||||
|
||||
// module busy control
|
||||
mbed::DigitalIn _busy;
|
||||
|
||||
// module frequency selection
|
||||
mbed::AnalogIn _freq_select;
|
||||
|
||||
// module device variant selection
|
||||
mbed::AnalogIn _dev_select;
|
||||
|
||||
// module TCXO/XTAL control
|
||||
mbed::DigitalIn _crystal_select;
|
||||
|
||||
// Radio specific controls (TX/RX duplexer switch control)
|
||||
mbed::DigitalInOut _ant_switch;
|
||||
|
||||
// Structure containing function pointers to the stack callbacks
|
||||
radio_events_t *_radio_events;
|
||||
|
||||
// Data buffer used for both TX and RX
|
||||
// Size of this buffer is configurable via Mbed config system
|
||||
// Default is 255 bytes
|
||||
uint8_t _data_buffer[MAX_DATA_BUFFER_SIZE_SX126X];
|
||||
|
||||
#ifdef MBED_CONF_RTOS_PRESENT
|
||||
// Thread to handle interrupts
|
||||
rtos::Thread irq_thread;
|
||||
#endif
|
||||
|
||||
// Access protection
|
||||
PlatformMutex mutex;
|
||||
|
||||
// helper functions
|
||||
void wakeup();
|
||||
void read_opmode_command(uint8_t cmd, uint8_t *buffer, uint16_t size);
|
||||
void write_opmode_command(uint8_t cmd, uint8_t *buffer, uint16_t size);
|
||||
void set_dio2_as_rfswitch_ctrl(uint8_t enable);
|
||||
void set_dio3_as_tcxo_ctrl(radio_TCXO_ctrl_voltage_t voltage, uint32_t timeout);
|
||||
uint8_t get_device_variant(void);
|
||||
void set_device_ready(void);
|
||||
int8_t get_rssi();
|
||||
uint8_t get_fsk_bw_reg_val(uint32_t bandwidth);
|
||||
void write_to_register(uint16_t addr, uint8_t data);
|
||||
void write_to_register(uint16_t addr, uint8_t *data, uint8_t size);
|
||||
uint8_t read_register(uint16_t addr);
|
||||
void read_register(uint16_t addr, uint8_t *buffer, uint8_t size);
|
||||
void write_fifo(uint8_t *buffer, uint8_t size);
|
||||
void read_fifo(uint8_t *buffer, uint8_t size, uint8_t offset);
|
||||
void rf_irq_task(void);
|
||||
void set_modem(uint8_t modem);
|
||||
uint8_t get_modem();
|
||||
uint16_t get_irq_status(void);
|
||||
uint8_t get_frequency_support(void);
|
||||
|
||||
// ISR
|
||||
void dio1_irq_isr();
|
||||
|
||||
// Handler called by thread in response to signal
|
||||
void handle_dio1_irq();
|
||||
|
||||
void set_modulation_params(modulation_params_t *modulationParams);
|
||||
void set_packet_params(packet_params_t *packet_params);
|
||||
void set_cad_params(lora_cad_symbols_t nb_symbols, uint8_t det_peak,
|
||||
uint8_t det_min, cad_exit_modes_t exit_mode,
|
||||
uint32_t timeout);
|
||||
void set_buffer_base_addr(uint8_t tx_base_addr, uint8_t rx_base_addr);
|
||||
void get_rx_buffer_status(uint8_t *payload_len, uint8_t *rx_buffer_ptr);
|
||||
void get_packet_status(packet_status_t *pkt_status);
|
||||
radio_error_t get_device_errors(void);
|
||||
void clear_device_errors(void);
|
||||
void clear_irq_status(uint16_t irq);
|
||||
void set_crc_seed(uint16_t seed);
|
||||
void set_crc_polynomial(uint16_t polynomial);
|
||||
void set_whitening_seed(uint16_t seed);
|
||||
void set_pa_config(uint8_t pa_DC, uint8_t hp_max, uint8_t device_type,
|
||||
uint8_t pa_LUT);
|
||||
void set_tx_power(int8_t power);
|
||||
void calibrate_image(uint32_t freq);
|
||||
void configure_dio_irq(uint16_t irq_mask, uint16_t dio1_mask,
|
||||
uint16_t dio2_mask, uint16_t dio3_mask);
|
||||
void cold_start_wakeup();
|
||||
|
||||
private:
|
||||
uint8_t _active_modem;
|
||||
uint8_t _standby_mode;
|
||||
uint8_t _operation_mode;
|
||||
uint8_t _reception_mode;
|
||||
uint32_t _tx_timeout;
|
||||
uint32_t _rx_timeout;
|
||||
uint8_t _rx_timeout_in_symbols;
|
||||
int8_t _tx_power;
|
||||
bool _image_calibrated;
|
||||
bool _force_image_calibration;
|
||||
bool _network_mode_public;
|
||||
|
||||
// Structure containing all user and network specified settings
|
||||
// for radio module
|
||||
modulation_params_t _mod_params;
|
||||
packet_params_t _packet_params;
|
||||
};
|
||||
|
||||
#endif // DEVICE_SPI
|
||||
|
||||
#endif /* MBED_LORA_RADIO_DRV_SX126X_LORARADIO_H_ */
|
|
@ -0,0 +1,22 @@
|
|||
Sleep Modes:
|
||||
|
||||
The SX126X series LoRa radios define two different sleep modes, namely:
|
||||
|
||||
i) Sleep mode with Cold Start (default mode in Mbed LoRaWAN stack)
|
||||
ii) Sleep mode with Warm Start
|
||||
|
||||
|
||||
Sleep mode with Warm Start:
|
||||
This is the default sleep mode for this driver. Radio configurations are retained in this mode.
|
||||
Typical power consumption in this mode is '600 nA'.
|
||||
|
||||
|
||||
Sleep mode with Cold Start:
|
||||
The driver can be configured to sleep with cold startup. This mode is the lowest power consuming state
|
||||
for the SX126X series radios. No configurations are retained in this mode, that's why our driver takes
|
||||
extra measures to keep backups of the configuration in the RAM. Typical power consumption in this mode
|
||||
is '160 nA'. The radio takes about 3.5 milliseconds to wakeup properly because upon going to sleep all
|
||||
components gets turned off. The radio thread blocks for that period of time. However, to reduce the impact
|
||||
of this wakeup time on the time critical operations, the stack shouldn't put the radio to standby rather than
|
||||
sleep before performing time critical operations. Mbed OS LoRaWAN stack handles this automatically which means
|
||||
that the user can safely use sleep mode with cold start.
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"name": "SX126X-lora-driver",
|
||||
"config": {
|
||||
"spi-frequency": {
|
||||
"help": "SPI frequency, Default: 16 MHz",
|
||||
"value": 16000000
|
||||
},
|
||||
"buffer-size": {
|
||||
"help": "Max. buffer size the radio can handle, Default: 255 B",
|
||||
"value": 255
|
||||
},
|
||||
"boost-rx": {
|
||||
"help": "Increases sensitivity at the cost of power ~2mA for around ~3dB in sensitivity 0 = disabled, 1 = enabled",
|
||||
"value": 0
|
||||
},
|
||||
"regulator-mode": {
|
||||
"help": "Default: DCDC (low power, high BOM). Alternatively, LDO = 0. Check datasheet section 5.1 for more details",
|
||||
"value": 1
|
||||
},
|
||||
"sleep-mode": {
|
||||
"help": "Default: Cold start = 1, Warm start = 0. Check SleepMode.txt",
|
||||
"value": 1
|
||||
},
|
||||
"standby-mode": {
|
||||
"help": "Default: STDBY_RC = 0, STDBY_XOSC = 1",
|
||||
"value": 0
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,632 @@
|
|||
/*!
|
||||
* \file sx126x.h
|
||||
*
|
||||
* \brief SX126x driver implementation
|
||||
*
|
||||
* \copyright Revised BSD License, see section \ref LICENSE.
|
||||
*
|
||||
* \code
|
||||
* ______ _
|
||||
* / _____) _ | |
|
||||
* ( (____ _____ ____ _| |_ _____ ____| |__
|
||||
* \____ \| ___ | (_ _) ___ |/ ___) _ \
|
||||
* _____) ) ____| | | || |_| ____( (___| | | |
|
||||
* (______/|_____)_|_|_| \__)_____)\____)_| |_|
|
||||
* (C)2013-2017 Semtech
|
||||
*
|
||||
* \endcode
|
||||
*
|
||||
* \author Miguel Luis ( Semtech )
|
||||
*
|
||||
* \author Gregory Cristian ( Semtech )
|
||||
*
|
||||
* Copyright (c) 2019, Arm Limited and affiliates.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef MBED_LORA_RADIO_DRV_SX126X_SX126X_DS_H_
|
||||
#define MBED_LORA_RADIO_DRV_SX126X_SX126X_DS_H_
|
||||
|
||||
#include "LoRaRadio.h"
|
||||
/*!
|
||||
* \brief Provides the frequency of the chip running on the radio and the frequency step
|
||||
*
|
||||
* \remark These defines are used for computing the frequency divider to set the RF frequency
|
||||
*/
|
||||
#define XTAL_FREQ 32000000
|
||||
#define FREQ_DIV 33554432
|
||||
#define FREQ_STEP 0.95367431640625 // ((double)(XTAL_FREQ / (double)FREQ_DIV))
|
||||
#define FREQ_ERR 0.47683715820312
|
||||
|
||||
|
||||
/*!
|
||||
* \brief List of devices supported by this driver
|
||||
*/
|
||||
#define SX1261 0
|
||||
#define SX1262 1
|
||||
#define SX1268 2
|
||||
|
||||
/*!
|
||||
* \brief List of matching supported by the sx126x
|
||||
*/
|
||||
#define MATCHING_FREQ_915 0
|
||||
#define MATCHING_FREQ_780 1
|
||||
#define MATCHING_FREQ_490 2
|
||||
#define MATCHING_FREQ_434 3
|
||||
#define MATCHING_FREQ_280 4
|
||||
#define MATCHING_FREQ_169 5
|
||||
#define MATCHING_FREQ_868 6
|
||||
|
||||
/*!
|
||||
* \brief Compensation delay for SetAutoTx/Rx functions in 15.625 microseconds
|
||||
*/
|
||||
#define AUTO_RX_TX_OFFSET 2
|
||||
|
||||
/*!
|
||||
* \brief LFSR initial value to compute IBM type CRC
|
||||
*/
|
||||
#define CRC_IBM_SEED 0xFFFF
|
||||
|
||||
/*!
|
||||
* \brief LFSR initial value to compute CCIT type CRC
|
||||
*/
|
||||
#define CRC_CCITT_SEED 0x1D0F
|
||||
|
||||
/*!
|
||||
* \brief Polynomial used to compute IBM CRC
|
||||
*/
|
||||
#define CRC_POLYNOMIAL_IBM 0x8005
|
||||
|
||||
/*!
|
||||
* \brief Polynomial used to compute CCIT CRC
|
||||
*/
|
||||
#define CRC_POLYNOMIAL_CCITT 0x1021
|
||||
|
||||
/*!
|
||||
* \brief The address of the register holding the first byte defining the CRC seed
|
||||
*
|
||||
*/
|
||||
#define REG_LR_CRCSEEDBASEADDR 0x06BC
|
||||
|
||||
/*!
|
||||
* \brief The address of the register holding the first byte defining the CRC polynomial
|
||||
*/
|
||||
#define REG_LR_CRCPOLYBASEADDR 0x06BE
|
||||
|
||||
/*!
|
||||
* \brief The address of the register holding the first byte defining the whitening seed
|
||||
*/
|
||||
#define REG_LR_WHITSEEDBASEADDR_MSB 0x06B8
|
||||
#define REG_LR_WHITSEEDBASEADDR_LSB 0x06B9
|
||||
|
||||
/*!
|
||||
* \brief The address of the register holding the packet configuration
|
||||
*/
|
||||
#define REG_LR_PACKETPARAMS 0x0704
|
||||
|
||||
/*!
|
||||
* \brief The address of the register holding the payload size
|
||||
*/
|
||||
#define REG_LR_PAYLOADLENGTH 0x0702
|
||||
|
||||
/*!
|
||||
* \brief The addresses of the registers holding SyncWords values
|
||||
*/
|
||||
#define REG_LR_SYNCWORDBASEADDRESS 0x06C0
|
||||
|
||||
/*!
|
||||
* \brief The addresses of the register holding LoRa Modem SyncWord value
|
||||
*/
|
||||
#define REG_LR_SYNCWORD 0x0740
|
||||
|
||||
/*!
|
||||
* Syncword for Private LoRa networks
|
||||
*/
|
||||
#define LORA_MAC_PRIVATE_SYNCWORD 0x1424
|
||||
|
||||
/*!
|
||||
* Syncword for Public LoRa networks
|
||||
*/
|
||||
#define LORA_MAC_PUBLIC_SYNCWORD 0x3444
|
||||
|
||||
/*!
|
||||
* The address of the register giving a 4 bytes random number
|
||||
*/
|
||||
#define RANDOM_NUMBER_GENERATORBASEADDR 0x0819
|
||||
|
||||
/*!
|
||||
* The address of the register holding RX Gain value (0x94: power saving, 0x96: rx boosted)
|
||||
*/
|
||||
#define REG_RX_GAIN 0x08AC
|
||||
|
||||
/*!
|
||||
* The address of the register holding frequency error indication
|
||||
*/
|
||||
#define REG_FREQUENCY_ERRORBASEADDR 0x076B
|
||||
|
||||
/*!
|
||||
* Change the value on the device internal trimming capacitor
|
||||
*/
|
||||
#define REG_XTA_TRIM 0x0911
|
||||
|
||||
/*!
|
||||
* Set the current max value in the over current protection
|
||||
*/
|
||||
#define REG_OCP 0x08E7
|
||||
|
||||
|
||||
/*!
|
||||
* \brief Represents the Rx internal counters values when GFSK or LoRa packet type is used
|
||||
*/
|
||||
typedef struct {
|
||||
radio_modems_t modem_type; //!< Packet to which the packet status are referring to.
|
||||
uint16_t packet_received;
|
||||
uint16_t crc_ok;
|
||||
uint16_t length_error;
|
||||
} rx_counter_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents a calibration configuration
|
||||
*/
|
||||
typedef union {
|
||||
struct {
|
||||
uint8_t rc64k_enable : 1; //!< Calibrate RC64K clock
|
||||
uint8_t rc13m_enable : 1; //!< Calibrate RC13M clock
|
||||
uint8_t pll_enable : 1; //!< Calibrate PLL
|
||||
uint8_t adc_pulse_enable : 1; //!< Calibrate ADC Pulse
|
||||
uint8_t adc_bulkN_enable : 1; //!< Calibrate ADC bulkN
|
||||
uint8_t adc_bulkP_enable : 1; //!< Calibrate ADC bulkP
|
||||
uint8_t img_enable : 1;
|
||||
uint8_t pad : 1;
|
||||
} fields;
|
||||
|
||||
uint8_t value;
|
||||
|
||||
} caliberation_params_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the possible radio system error states
|
||||
*/
|
||||
typedef union {
|
||||
struct {
|
||||
uint8_t rc64k_calib : 1; //!< RC 64kHz oscillator calibration failed
|
||||
uint8_t rc13m_calib : 1; //!< RC 13MHz oscillator calibration failed
|
||||
uint8_t pll_calib : 1; //!< PLL calibration failed
|
||||
uint8_t adc_calib : 1; //!< ADC calibration failed
|
||||
uint8_t img_calib : 1; //!< Image calibration failed
|
||||
uint8_t xosc_start : 1; //!< XOSC oscillator failed to start
|
||||
uint8_t pll_lock : 1; //!< PLL lock failed
|
||||
uint8_t buck_start : 1; //!< Buck converter failed to start
|
||||
uint8_t pa_ramp : 1; //!< PA ramp failed
|
||||
uint8_t reserved : 7; //!< reserved
|
||||
} fields;
|
||||
|
||||
uint16_t value;
|
||||
|
||||
} radio_error_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the operating mode the radio is actually running
|
||||
*/
|
||||
typedef enum {
|
||||
MODE_SLEEP = 0x00, //! The radio is in sleep mode
|
||||
MODE_DEEP_SLEEP, //! The radio is in deep-sleep mode
|
||||
MODE_STDBY_RC, //! The radio is in standby mode with RC oscillator
|
||||
MODE_STDBY_XOSC, //! The radio is in standby mode with XOSC oscillator
|
||||
MODE_FS, //! The radio is in frequency synthesis mode
|
||||
MODE_TX, //! The radio is in transmit mode
|
||||
MODE_RX, //! The radio is in receive mode
|
||||
MODE_RX_DC, //! The radio is in receive duty cycle mode
|
||||
MODE_CAD //! The radio is in channel activity detection mode
|
||||
} radio_operating_mode_t;
|
||||
|
||||
/*!
|
||||
* \brief Declares the oscillator in use while in standby mode
|
||||
*
|
||||
* Using the STDBY_RC standby mode allow to reduce the energy consumption
|
||||
* STDBY_XOSC should be used for time critical applications
|
||||
*/
|
||||
typedef enum {
|
||||
STDBY_RC = 0x00,
|
||||
STDBY_XOSC = 0x01,
|
||||
} radio_standby_mode_t;
|
||||
|
||||
/*!
|
||||
* \brief Declares the power regulation used to power the device
|
||||
*
|
||||
* This command allows the user to specify if DC-DC or LDO is used for power regulation.
|
||||
* Using only LDO implies that the Rx or Tx current is doubled
|
||||
*/
|
||||
typedef enum {
|
||||
USE_LDO = 0x00, // default
|
||||
USE_DCDC = 0x01,
|
||||
} radio_regulator_mode_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the ramping time for power amplifier
|
||||
*/
|
||||
typedef enum {
|
||||
RADIO_RAMP_10_US = 0x00,
|
||||
RADIO_RAMP_20_US = 0x01,
|
||||
RADIO_RAMP_40_US = 0x02,
|
||||
RADIO_RAMP_80_US = 0x03,
|
||||
RADIO_RAMP_200_US = 0x04,
|
||||
RADIO_RAMP_800_US = 0x05,
|
||||
RADIO_RAMP_1700_US = 0x06,
|
||||
RADIO_RAMP_3400_US = 0x07,
|
||||
} radio_ramp_time_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the number of symbols to be used for channel activity detection operation
|
||||
*/
|
||||
typedef enum {
|
||||
LORA_CAD_01_SYMBOL = 0x00,
|
||||
LORA_CAD_02_SYMBOL = 0x01,
|
||||
LORA_CAD_04_SYMBOL = 0x02,
|
||||
LORA_CAD_08_SYMBOL = 0x03,
|
||||
LORA_CAD_16_SYMBOL = 0x04,
|
||||
} lora_cad_symbols_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the Channel Activity Detection actions after the CAD operation is finished
|
||||
*/
|
||||
typedef enum {
|
||||
LORA_CAD_ONLY = 0x00,
|
||||
LORA_CAD_RX = 0x01,
|
||||
LORA_CAD_LBT = 0x10,
|
||||
} cad_exit_modes_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the modulation shaping parameter
|
||||
*/
|
||||
typedef enum {
|
||||
MOD_SHAPING_OFF = 0x00,
|
||||
MOD_SHAPING_G_BT_03 = 0x08,
|
||||
MOD_SHAPING_G_BT_05 = 0x09,
|
||||
MOD_SHAPING_G_BT_07 = 0x0A,
|
||||
MOD_SHAPING_G_BT_1 = 0x0B,
|
||||
} radio_mod_shaping_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the modulation shaping parameter
|
||||
*/
|
||||
typedef enum {
|
||||
RX_BW_4800 = 0x1F,
|
||||
RX_BW_5800 = 0x17,
|
||||
RX_BW_7300 = 0x0F,
|
||||
RX_BW_9700 = 0x1E,
|
||||
RX_BW_11700 = 0x16,
|
||||
RX_BW_14600 = 0x0E,
|
||||
RX_BW_19500 = 0x1D,
|
||||
RX_BW_23400 = 0x15,
|
||||
RX_BW_29300 = 0x0D,
|
||||
RX_BW_39000 = 0x1C,
|
||||
RX_BW_46900 = 0x14,
|
||||
RX_BW_58600 = 0x0C,
|
||||
RX_BW_78200 = 0x1B,
|
||||
RX_BW_93800 = 0x13,
|
||||
RX_BW_117300 = 0x0B,
|
||||
RX_BW_156200 = 0x1A,
|
||||
RX_BW_187200 = 0x12,
|
||||
RX_BW_234300 = 0x0A,
|
||||
RX_BW_312000 = 0x19,
|
||||
RX_BW_373600 = 0x11,
|
||||
RX_BW_467000 = 0x09,
|
||||
} radio_rx_bandwidth_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the possible spreading factor values in LoRa packet types
|
||||
*/
|
||||
typedef enum {
|
||||
LORA_SF5 = 0x05,
|
||||
LORA_SF6 = 0x06,
|
||||
LORA_SF7 = 0x07,
|
||||
LORA_SF8 = 0x08,
|
||||
LORA_SF9 = 0x09,
|
||||
LORA_SF10 = 0x0A,
|
||||
LORA_SF11 = 0x0B,
|
||||
LORA_SF12 = 0x0C,
|
||||
} lora_spread_factors_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the bandwidth values for LoRa packet type
|
||||
*/
|
||||
typedef enum {
|
||||
LORA_BW_500 = 6,
|
||||
LORA_BW_250 = 5,
|
||||
LORA_BW_125 = 4,
|
||||
LORA_BW_062 = 3,
|
||||
LORA_BW_041 = 10,
|
||||
LORA_BW_031 = 2,
|
||||
LORA_BW_020 = 9,
|
||||
LORA_BW_015 = 1,
|
||||
LORA_BW_010 = 8,
|
||||
LORA_BW_007 = 0,
|
||||
} lora_bandwidths_t;
|
||||
|
||||
const uint8_t lora_bandwidhts [] = {LORA_BW_125, LORA_BW_250, LORA_BW_500};
|
||||
|
||||
/*!
|
||||
* \brief Represents the coding rate values for LoRa packet type
|
||||
*/
|
||||
typedef enum {
|
||||
LORA_CR_4_5 = 0x01,
|
||||
LORA_CR_4_6 = 0x02,
|
||||
LORA_CR_4_7 = 0x03,
|
||||
LORA_CR_4_8 = 0x04,
|
||||
} lora_coding_tates_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the preamble length used to detect the packet on Rx side
|
||||
*/
|
||||
typedef enum {
|
||||
RADIO_PREAMBLE_DETECTOR_OFF = 0x00, //!< Preamble detection length off
|
||||
RADIO_PREAMBLE_DETECTOR_08_BITS = 0x04, //!< Preamble detection length 8 bits
|
||||
RADIO_PREAMBLE_DETECTOR_16_BITS = 0x05, //!< Preamble detection length 16 bits
|
||||
RADIO_PREAMBLE_DETECTOR_24_BITS = 0x06, //!< Preamble detection length 24 bits
|
||||
RADIO_PREAMBLE_DETECTOR_32_BITS = 0x07, //!< Preamble detection length 32 bit
|
||||
} radio_preamble_detection_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the possible combinations of SyncWord correlators activated
|
||||
*/
|
||||
typedef enum {
|
||||
RADIO_ADDRESSCOMP_FILT_OFF = 0x00, //!< No correlator turned on, i.e. do not search for SyncWord
|
||||
RADIO_ADDRESSCOMP_FILT_NODE = 0x01,
|
||||
RADIO_ADDRESSCOMP_FILT_NODE_BROAD = 0x02,
|
||||
} radio_address_filter_t;
|
||||
|
||||
/*!
|
||||
* \brief Radio packet length mode
|
||||
*/
|
||||
typedef enum {
|
||||
RADIO_PACKET_VARIABLE_LENGTH = 0x00, //!< The packet is on variable size, header included
|
||||
RADIO_PACKET_FIXED_LENGTH = 0x01, //!< The packet is known on both sides, no header included in the packet
|
||||
} radio_pkt_length_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the CRC length
|
||||
*/
|
||||
typedef enum radio_crc_types_e {
|
||||
RADIO_CRC_OFF = 0x01, //!< No CRC in use
|
||||
RADIO_CRC_1_BYTES = 0x00,
|
||||
RADIO_CRC_2_BYTES = 0x02,
|
||||
RADIO_CRC_1_BYTES_INV = 0x04,
|
||||
RADIO_CRC_2_BYTES_INV = 0x06,
|
||||
RADIO_CRC_2_BYTES_IBM = 0xF1,
|
||||
RADIO_CRC_2_BYTES_CCIT = 0xF2,
|
||||
} radio_crc_types_t;
|
||||
|
||||
/*!
|
||||
* \brief Radio whitening mode activated or deactivated
|
||||
*/
|
||||
typedef enum {
|
||||
RADIO_DC_FREE_OFF = 0x00,
|
||||
RADIO_DC_FREEWHITENING = 0x01,
|
||||
} radio_whitening_mode_t;
|
||||
|
||||
/*!
|
||||
* \brief Holds the lengths mode of a LoRa packet type
|
||||
*/
|
||||
typedef enum {
|
||||
LORA_PACKET_VARIABLE_LENGTH = 0x00, //!< The packet is on variable size, header included
|
||||
LORA_PACKET_FIXED_LENGTH = 0x01, //!< The packet is known on both sides, no header included in the packet
|
||||
LORA_PACKET_EXPLICIT = LORA_PACKET_VARIABLE_LENGTH,
|
||||
LORA_PACKET_IMPLICIT = LORA_PACKET_FIXED_LENGTH,
|
||||
} lora_pkt_length_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the CRC mode for LoRa packet type
|
||||
*/
|
||||
typedef enum {
|
||||
LORA_CRC_ON = 0x01, //!< CRC activated
|
||||
LORA_CRC_OFF = 0x00, //!< CRC not used
|
||||
} lora_crc_mode_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the IQ mode for LoRa packet type
|
||||
*/
|
||||
typedef enum {
|
||||
LORA_IQ_NORMAL = 0x00,
|
||||
LORA_IQ_INVERTED = 0x01,
|
||||
} lora_IQ_mode_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the volatge used to control the TCXO on/off from DIO3
|
||||
*/
|
||||
typedef enum {
|
||||
TCXO_CTRL_1_6V = 0x00,
|
||||
TCXO_CTRL_1_7V = 0x01,
|
||||
TCXO_CTRL_1_8V = 0x02,
|
||||
TCXO_CTRL_2_2V = 0x03,
|
||||
TCXO_CTRL_2_4V = 0x04,
|
||||
TCXO_CTRL_2_7V = 0x05,
|
||||
TCXO_CTRL_3_0V = 0x06,
|
||||
TCXO_CTRL_3_3V = 0x07,
|
||||
} radio_TCXO_ctrl_voltage_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the interruption masks available for the radio
|
||||
*
|
||||
* \remark Note that not all these interruptions are available for all packet types
|
||||
*/
|
||||
typedef enum {
|
||||
IRQ_RADIO_NONE = 0x0000,
|
||||
IRQ_TX_DONE = 0x0001,
|
||||
IRQ_RX_DONE = 0x0002,
|
||||
IRQ_PREAMBLE_DETECTED = 0x0004,
|
||||
IRQ_SYNCWORD_VALID = 0x0008,
|
||||
IRQ_HEADER_VALID = 0x0010,
|
||||
IRQ_HEADER_ERROR = 0x0020,
|
||||
IRQ_CRC_ERROR = 0x0040,
|
||||
IRQ_CAD_DONE = 0x0080,
|
||||
IRQ_CAD_ACTIVITY_DETECTED = 0x0100,
|
||||
IRQ_RX_TX_TIMEOUT = 0x0200,
|
||||
IRQ_RADIO_ALL = 0xFFFF,
|
||||
} radio_irq_masks_t;
|
||||
|
||||
typedef enum {
|
||||
RADIO_GET_STATUS = 0xC0,
|
||||
RADIO_WRITE_REGISTER = 0x0D,
|
||||
RADIO_READ_REGISTER = 0x1D,
|
||||
RADIO_WRITE_BUFFER = 0x0E,
|
||||
RADIO_READ_BUFFER = 0x1E,
|
||||
RADIO_SET_SLEEP = 0x84,
|
||||
RADIO_SET_STANDBY = 0x80,
|
||||
RADIO_SET_FS = 0xC1,
|
||||
RADIO_SET_TX = 0x83,
|
||||
RADIO_SET_RX = 0x82,
|
||||
RADIO_SET_RXDUTYCYCLE = 0x94,
|
||||
RADIO_SET_CAD = 0xC5,
|
||||
RADIO_SET_TXCONTINUOUSWAVE = 0xD1,
|
||||
RADIO_SET_TXCONTINUOUSPREAMBLE = 0xD2,
|
||||
RADIO_SET_PACKETTYPE = 0x8A,
|
||||
RADIO_GET_PACKETTYPE = 0x11,
|
||||
RADIO_SET_RFFREQUENCY = 0x86,
|
||||
RADIO_SET_TXPARAMS = 0x8E,
|
||||
RADIO_SET_PACONFIG = 0x95,
|
||||
RADIO_SET_CADPARAMS = 0x88,
|
||||
RADIO_SET_BUFFERBASEADDRESS = 0x8F,
|
||||
RADIO_SET_MODULATIONPARAMS = 0x8B,
|
||||
RADIO_SET_PACKETPARAMS = 0x8C,
|
||||
RADIO_GET_RXBUFFERSTATUS = 0x13,
|
||||
RADIO_GET_PACKETSTATUS = 0x14,
|
||||
RADIO_GET_RSSIINST = 0x15,
|
||||
RADIO_GET_STATS = 0x10,
|
||||
RADIO_RESET_STATS = 0x00,
|
||||
RADIO_CFG_DIOIRQ = 0x08,
|
||||
RADIO_GET_IRQSTATUS = 0x12,
|
||||
RADIO_CLR_IRQSTATUS = 0x02,
|
||||
RADIO_CALIBRATE = 0x89,
|
||||
RADIO_CALIBRATEIMAGE = 0x98,
|
||||
RADIO_SET_REGULATORMODE = 0x96,
|
||||
RADIO_GET_ERROR = 0x17,
|
||||
RADIO_CLR_ERROR = 0x07,
|
||||
RADIO_SET_TCXOMODE = 0x97,
|
||||
RADIO_SET_TXFALLBACKMODE = 0x93,
|
||||
RADIO_SET_RFSWITCHMODE = 0x9D,
|
||||
RADIO_SET_STOPRXTIMERONPREAMBLE = 0x9F,
|
||||
RADIO_SET_LORASYMBTIMEOUT = 0xA0,
|
||||
} opmode_commands_t;
|
||||
|
||||
/*!
|
||||
* \brief Structure describing the radio status
|
||||
*/
|
||||
typedef union {
|
||||
uint8_t value;
|
||||
struct {
|
||||
//bit order is lsb -> msb
|
||||
uint8_t reserved : 1; //!< Reserved
|
||||
uint8_t cmd_status : 3; //!< Command status
|
||||
uint8_t chip_mode : 3; //!< Chip mode
|
||||
uint8_t cpu_busy : 1; //!< Flag for CPU radio busy
|
||||
} fields;
|
||||
} radio_status_t;
|
||||
|
||||
/*!
|
||||
* \brief Structure describing the error codes for callback functions
|
||||
*/
|
||||
typedef enum {
|
||||
IRQ_HEADER_ERROR_CODE = 0x01,
|
||||
IRQ_SYNCWORD_ERROR_CODE = 0x02,
|
||||
IRQ_CRC_ERROR_CODE = 0x04,
|
||||
} irq_error_t;
|
||||
|
||||
|
||||
typedef enum {
|
||||
IRQ_PBL_DETECT_CODE = 0x01,
|
||||
IRQ_SYNCWORD_VALID_CODE = 0x02,
|
||||
IRQ_HEADER_VALID_CODE = 0x04,
|
||||
} irq_valid_codes_t;
|
||||
|
||||
typedef enum {
|
||||
IRQ_RX_TIMEOUT = 0x00,
|
||||
IRQ_TX_TIMEOUT = 0x01,
|
||||
} irq_timeout_t;
|
||||
|
||||
typedef enum {
|
||||
RECEPTION_MODE_SINGLE = 0,
|
||||
RECEPTION_MODE_CONTINUOUS,
|
||||
RECEPTION_MODE_OTHER
|
||||
} reception_mode_t;
|
||||
|
||||
/*!
|
||||
* \brief The type describing the modulation parameters for every packet types
|
||||
*/
|
||||
typedef struct {
|
||||
radio_modems_t modem_type; //!< Packet to which the modulation parameters are referring to.
|
||||
struct {
|
||||
struct {
|
||||
uint32_t bit_rate;
|
||||
uint32_t fdev;
|
||||
radio_mod_shaping_t modulation_shaping;
|
||||
uint8_t bandwidth;
|
||||
uint32_t operational_frequency;
|
||||
} gfsk;
|
||||
|
||||
struct {
|
||||
lora_spread_factors_t spreading_factor; //!< Spreading Factor for the LoRa modulation
|
||||
lora_bandwidths_t bandwidth; //!< Bandwidth for the LoRa modulation
|
||||
lora_coding_tates_t coding_rate; //!< Coding rate for the LoRa modulation
|
||||
uint8_t low_datarate_optimization; //!< Indicates if the modem uses the low datarate optimization
|
||||
uint32_t operational_frequency;
|
||||
} lora;
|
||||
} params; //!< Holds the modulation parameters structure
|
||||
} modulation_params_t;
|
||||
|
||||
/*!
|
||||
* \brief The type describing the packet parameters for every packet types
|
||||
*/
|
||||
typedef struct packet_params {
|
||||
radio_modems_t modem_type; //!< Packet to which the packet parameters are referring to.
|
||||
struct {
|
||||
/*!
|
||||
* \brief Holds the GFSK packet parameters
|
||||
*/
|
||||
struct {
|
||||
uint16_t preamble_length; //!< The preamble Tx length for GFSK packet type in bit
|
||||
radio_preamble_detection_t preamble_min_detect; //!< The preamble Rx length minimal for GFSK packet type
|
||||
uint8_t syncword_length; //!< The synchronization word length for GFSK packet type
|
||||
radio_address_filter_t addr_comp; //!< Activated SyncWord correlators
|
||||
radio_pkt_length_t header_type; //!< If the header is explicit, it will be transmitted in the GFSK packet. If the header is implicit, it will not be transmitted
|
||||
uint8_t payload_length; //!< Size of the payload in the GFSK packet
|
||||
radio_crc_types_t crc_length; //!< Size of the CRC block in the GFSK packet
|
||||
radio_whitening_mode_t whitening_mode;
|
||||
} gfsk;
|
||||
/*!
|
||||
* \brief Holds the LoRa packet parameters
|
||||
*/
|
||||
struct {
|
||||
uint16_t preamble_length; //!< The preamble length is the number of LoRa symbols in the preamble
|
||||
lora_pkt_length_t header_type; //!< If the header is explicit, it will be transmitted in the LoRa packet. If the header is implicit, it will not be transmitted
|
||||
uint8_t payload_length; //!< Size of the payload in the LoRa packet
|
||||
lora_crc_mode_t crc_mode; //!< Size of CRC block in LoRa packet
|
||||
lora_IQ_mode_t invert_IQ; //!< Allows to swap IQ for LoRa packet
|
||||
} lora;
|
||||
} params; //!< Holds the packet parameters structure
|
||||
} packet_params_t;
|
||||
|
||||
/*!
|
||||
* \brief Represents the packet status for every packet type
|
||||
*/
|
||||
typedef struct {
|
||||
radio_modems_t modem_type; //!< Packet to which the packet status are referring to.
|
||||
struct {
|
||||
struct {
|
||||
uint8_t rx_status;
|
||||
int8_t rssi_avg; //!< The averaged RSSI
|
||||
int8_t rssi_sync; //!< The RSSI measured on last packet
|
||||
uint32_t freq_error;
|
||||
} gfsk;
|
||||
struct {
|
||||
int8_t rssi_pkt; //!< The RSSI of the last packet
|
||||
int8_t snr_pkt; //!< The SNR of the last packet
|
||||
int8_t signal_rssi_pkt;
|
||||
uint32_t freq_error;
|
||||
} lora;
|
||||
} params;
|
||||
} packet_status_t;
|
||||
|
||||
|
||||
#endif /* MBED_LORA_RADIO_DRV_SX126X_SX126X_DS_H_ */
|
|
@ -0,0 +1 @@
|
|||
# Mbed enabled SX1272 LoRa/FSK radio driver
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,442 @@
|
|||
/**
|
||||
/ _____) _ | |
|
||||
( (____ _____ ____ _| |_ _____ ____| |__
|
||||
\____ \| ___ | (_ _) ___ |/ ___) _ \
|
||||
_____) ) ____| | | || |_| ____( (___| | | |
|
||||
(______/|_____)_|_|_| \__)_____)\____)_| |_|
|
||||
(C)2013 Semtech
|
||||
___ _____ _ ___ _ _____ ___ ___ ___ ___
|
||||
/ __|_ _/_\ / __| |/ / __/ _ \| _ \/ __| __|
|
||||
\__ \ | |/ _ \ (__| ' <| _| (_) | / (__| _|
|
||||
|___/ |_/_/ \_\___|_|\_\_| \___/|_|_\\___|___|
|
||||
embedded.connectivity.solutions===============
|
||||
|
||||
Description: Radio driver for Semtech SX1272 radio. Implements LoRaRadio class.
|
||||
|
||||
License: Revised BSD License, see LICENSE.TXT file include in the project
|
||||
|
||||
Maintainer: Miguel Luis ( Semtech ), Gregory Cristian ( Semtech ) and Daniel Jaeckle ( STACKFORCE )
|
||||
|
||||
|
||||
Copyright (c) 2017, Arm Limited and affiliates.
|
||||
|
||||
SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef SX1272_LORARADIO_H_
|
||||
#define SX1272_LORARADIO_H_
|
||||
|
||||
#if DEVICE_SPI
|
||||
|
||||
#include "PinNames.h"
|
||||
#include "InterruptIn.h"
|
||||
#include "DigitalOut.h"
|
||||
#include "DigitalInOut.h"
|
||||
#include "SPI.h"
|
||||
#include "platform/PlatformMutex.h"
|
||||
#ifdef MBED_CONF_RTOS_PRESENT
|
||||
#include "rtos/Thread.h"
|
||||
#endif
|
||||
|
||||
#include "lorawan/LoRaRadio.h"
|
||||
|
||||
#ifdef MBED_CONF_SX1272_LORA_DRIVER_BUFFER_SIZE
|
||||
#define MAX_DATA_BUFFER_SIZE_SX172 MBED_CONF_SX1272_LORA_DRIVER_BUFFER_SIZE
|
||||
#else
|
||||
#define MAX_DATA_BUFFER_SIZE_SX172 255
|
||||
#endif
|
||||
|
||||
#if DEVICE_LPTICKER
|
||||
#include "LowPowerTimeout.h"
|
||||
#define ALIAS_LORAWAN_TIMER mbed::LowPowerTimeout
|
||||
#else
|
||||
#include "Timeout.h"
|
||||
#define ALIAS_LORAWAN_TIMER mbed::Timeout
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Radio driver implementation for Semtech SX1272 plus variants.
|
||||
* Supports only SPI at the moment. Implements pure virtual LoRaRadio class.
|
||||
*/
|
||||
class SX1272_LoRaRadio: public LoRaRadio {
|
||||
public:
|
||||
/**
|
||||
* Use this constructor if pin definitions are provided manually.
|
||||
* The pins that are marked NC are optional. It is assumed that these
|
||||
* pins are not connected until/unless configured otherwise.
|
||||
*/
|
||||
SX1272_LoRaRadio(PinName mosi,
|
||||
PinName miso,
|
||||
PinName sclk,
|
||||
PinName nss,
|
||||
PinName reset,
|
||||
PinName dio0,
|
||||
PinName dio1,
|
||||
PinName dio2,
|
||||
PinName dio3,
|
||||
PinName dio4,
|
||||
PinName dio5,
|
||||
PinName rf_switch_ctl1 = NC,
|
||||
PinName rf_switch_ctl2 = NC,
|
||||
PinName txctl = NC,
|
||||
PinName rxctl = NC,
|
||||
PinName ant_switch = NC,
|
||||
PinName pwr_amp_ctl = NC,
|
||||
PinName tcxo = NC);
|
||||
|
||||
/**
|
||||
* Destructor
|
||||
*/
|
||||
virtual ~SX1272_LoRaRadio();
|
||||
|
||||
/**
|
||||
* Registers radio events with the Mbed LoRaWAN stack and
|
||||
* undergoes initialization steps if any
|
||||
*
|
||||
* @param events Structure containing the driver callback functions
|
||||
*/
|
||||
virtual void init_radio(radio_events_t *events);
|
||||
|
||||
/**
|
||||
* Resets the radio module
|
||||
*/
|
||||
virtual void radio_reset();
|
||||
|
||||
/**
|
||||
* Put the RF module in sleep mode
|
||||
*/
|
||||
virtual void sleep(void);
|
||||
|
||||
/**
|
||||
* Sets the radio in standby mode
|
||||
*/
|
||||
virtual void standby(void);
|
||||
|
||||
/**
|
||||
* Sets the reception parameters
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param bandwidth Sets the bandwidth
|
||||
* FSK : >= 2600 and <= 250000 Hz
|
||||
* LoRa: [0: 125 kHz, 1: 250 kHz,
|
||||
* 2: 500 kHz, 3: Reserved]
|
||||
* @param datarate Sets the Datarate
|
||||
* FSK : 600..300000 bits/s
|
||||
* LoRa: [6: 64, 7: 128, 8: 256, 9: 512,
|
||||
* 10: 1024, 11: 2048, 12: 4096 chips]
|
||||
* @param coderate Sets the coding rate ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [1: 4/5, 2: 4/6, 3: 4/7, 4: 4/8]
|
||||
* @param bandwidth_afc Sets the AFC Bandwidth ( FSK only )
|
||||
* FSK : >= 2600 and <= 250000 Hz
|
||||
* LoRa: N/A ( set to 0 )
|
||||
* @param preamble_len Sets the Preamble length ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: Length in symbols ( the hardware adds 4 more symbols )
|
||||
* @param symb_timeout Sets the RxSingle timeout value
|
||||
* FSK : timeout number of bytes
|
||||
* LoRa: timeout in symbols
|
||||
* @param fixLen Fixed length packets [0: variable, 1: fixed]
|
||||
* @param payload_len Sets payload length when fixed lenght is used
|
||||
* @param crc_on Enables/Disables the CRC [0: OFF, 1: ON]
|
||||
* @param freq_hop_on Enables disables the intra-packet frequency hopping [0: OFF, 1: ON] (LoRa only)
|
||||
* @param hop_period Number of symbols bewteen each hop (LoRa only)
|
||||
* @param iq_inverted Inverts IQ signals ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [0: not inverted, 1: inverted]
|
||||
* @param rx_continuous Sets the reception in continuous mode
|
||||
* [false: single mode, true: continuous mode]
|
||||
*/
|
||||
virtual void set_rx_config(radio_modems_t modem, uint32_t bandwidth,
|
||||
uint32_t datarate, uint8_t coderate,
|
||||
uint32_t bandwidth_afc, uint16_t preamble_len,
|
||||
uint16_t symb_timeout, bool fix_len,
|
||||
uint8_t payload_len,
|
||||
bool crc_on, bool freq_hop_on, uint8_t hop_period,
|
||||
bool iq_inverted, bool rx_continuous);
|
||||
|
||||
/**
|
||||
* Sets the transmission parameters
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param power Sets the output power [dBm]
|
||||
* @param fdev Sets the frequency deviation ( FSK only )
|
||||
* FSK : [Hz]
|
||||
* LoRa: 0
|
||||
* @param bandwidth Sets the bandwidth ( LoRa only )
|
||||
* FSK : 0
|
||||
* LoRa: [0: 125 kHz, 1: 250 kHz,
|
||||
* 2: 500 kHz, 3: Reserved]
|
||||
* @param datarate Sets the Datarate
|
||||
* FSK : 600..300000 bits/s
|
||||
* LoRa: [6: 64, 7: 128, 8: 256, 9: 512,
|
||||
* 10: 1024, 11: 2048, 12: 4096 chips]
|
||||
* @param coderate Sets the coding rate ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [1: 4/5, 2: 4/6, 3: 4/7, 4: 4/8]
|
||||
* @param preamble_len Sets the preamble length
|
||||
* @param fix_len Fixed length packets [0: variable, 1: fixed]
|
||||
* @param crc_on Enables disables the CRC [0: OFF, 1: ON]
|
||||
* @param freq_hop_on Enables disables the intra-packet frequency hopping [0: OFF, 1: ON] (LoRa only)
|
||||
* @param hop_period Number of symbols bewteen each hop (LoRa only)
|
||||
* @param iq_inverted Inverts IQ signals ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [0: not inverted, 1: inverted]
|
||||
* @param timeout Transmission timeout [ms]
|
||||
*/
|
||||
virtual void set_tx_config(radio_modems_t modem, int8_t power, uint32_t fdev,
|
||||
uint32_t bandwidth, uint32_t datarate,
|
||||
uint8_t coderate, uint16_t preamble_len,
|
||||
bool fix_len, bool crc_on, bool freq_hop_on,
|
||||
uint8_t hop_period, bool iq_inverted, uint32_t timeout);
|
||||
|
||||
/**
|
||||
* Sends the buffer of size
|
||||
*
|
||||
* Prepares the packet to be sent and sets the radio in transmission
|
||||
*
|
||||
* @param buffer Buffer pointer
|
||||
* @param size Buffer size
|
||||
*/
|
||||
virtual void send(uint8_t *buffer, uint8_t size);
|
||||
|
||||
/**
|
||||
* For backwards compatibility
|
||||
*/
|
||||
virtual void receive(uint32_t timeout)
|
||||
{
|
||||
(void) timeout;
|
||||
receive();
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the radio to receive
|
||||
*
|
||||
* All necessary configuration options for receptions are set in
|
||||
* 'set_rx_config(parameters)' API.
|
||||
*/
|
||||
virtual void receive(void);
|
||||
|
||||
/**
|
||||
* Sets the carrier frequency
|
||||
*
|
||||
* @param freq Channel RF frequency
|
||||
*/
|
||||
virtual void set_channel(uint32_t freq);
|
||||
|
||||
/**
|
||||
* Generates a 32 bits random value based on the RSSI readings
|
||||
*
|
||||
* Remark this function sets the radio in LoRa modem mode and disables
|
||||
* all interrupts.
|
||||
* After calling this function either Radio.SetRxConfig or
|
||||
* Radio.SetTxConfig functions must be called.
|
||||
*
|
||||
* @return 32 bits random value
|
||||
*/
|
||||
virtual uint32_t random(void);
|
||||
|
||||
/**
|
||||
* Get radio status
|
||||
*
|
||||
* @param status Radio status [RF_IDLE, RF_RX_RUNNING, RF_TX_RUNNING]
|
||||
* @return Return current radio status
|
||||
*/
|
||||
virtual uint8_t get_status(void);
|
||||
|
||||
/**
|
||||
* Sets the maximum payload length
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param max Maximum payload length in bytes
|
||||
*/
|
||||
virtual void set_max_payload_length(radio_modems_t modem, uint8_t max);
|
||||
|
||||
/**
|
||||
* Sets the network to public or private
|
||||
*
|
||||
* Updates the sync byte. Applies to LoRa modem only
|
||||
*
|
||||
* @param enable if true, it enables a public network
|
||||
*/
|
||||
virtual void set_public_network(bool enable);
|
||||
|
||||
/**
|
||||
* Computes the packet time on air for the given payload
|
||||
*
|
||||
* Remark can only be called once SetRxConfig or SetTxConfig have been called
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param pkt_len Packet payload length
|
||||
* @return Computed airTime for the given packet payload length
|
||||
*/
|
||||
virtual uint32_t time_on_air(radio_modems_t modem, uint8_t pkt_len);
|
||||
|
||||
/**
|
||||
* Perform carrier sensing
|
||||
*
|
||||
* Checks for a certain time if the RSSI is above a given threshold.
|
||||
* This threshold determines if there is already a transmission going on
|
||||
* in the channel or not.
|
||||
*
|
||||
* @param modem Type of the radio modem
|
||||
* @param freq Carrier frequency
|
||||
* @param rssi_threshold Threshold value of RSSI
|
||||
* @param max_carrier_sense_time time to sense the channel
|
||||
*
|
||||
* @return true if there is no active transmission
|
||||
* in the channel, false otherwise
|
||||
*/
|
||||
virtual bool perform_carrier_sense(radio_modems_t modem,
|
||||
uint32_t freq,
|
||||
int16_t rssi_threshold,
|
||||
uint32_t max_carrier_sense_time);
|
||||
|
||||
/**
|
||||
* Sets the radio in CAD mode
|
||||
*
|
||||
*/
|
||||
virtual void start_cad(void);
|
||||
|
||||
/**
|
||||
* Check if the given RF is in range
|
||||
*
|
||||
* @param frequency frequency needed to be checked
|
||||
*/
|
||||
virtual bool check_rf_frequency(uint32_t frequency);
|
||||
|
||||
/** Sets the radio in continuous wave transmission mode
|
||||
*
|
||||
* @param freq Channel RF frequency
|
||||
* @param power Sets the output power [dBm]
|
||||
* @param time Transmission mode timeout [s]
|
||||
*/
|
||||
virtual void set_tx_continuous_wave(uint32_t freq, int8_t power, uint16_t time);
|
||||
|
||||
/**
|
||||
* Acquire exclusive access
|
||||
*/
|
||||
virtual void lock(void);
|
||||
|
||||
/**
|
||||
* Release exclusive access
|
||||
*/
|
||||
virtual void unlock(void);
|
||||
|
||||
private:
|
||||
|
||||
// SPI and chip select control
|
||||
mbed::SPI _spi;
|
||||
mbed::DigitalOut _chip_select;
|
||||
|
||||
// module rest control
|
||||
mbed::DigitalInOut _reset_ctl;
|
||||
|
||||
// Interrupt controls
|
||||
mbed::InterruptIn _dio0_ctl;
|
||||
mbed::InterruptIn _dio1_ctl;
|
||||
mbed::InterruptIn _dio2_ctl;
|
||||
mbed::InterruptIn _dio3_ctl;
|
||||
mbed::InterruptIn _dio4_ctl;
|
||||
mbed::InterruptIn _dio5_ctl;
|
||||
|
||||
// Radio specific controls
|
||||
mbed::DigitalOut _rf_switch_ctl1;
|
||||
mbed::DigitalOut _rf_switch_ctl2;
|
||||
mbed::DigitalOut _txctl;
|
||||
mbed::DigitalOut _rxctl;
|
||||
mbed::DigitalInOut _ant_switch;
|
||||
mbed::DigitalOut _pwr_amp_ctl;
|
||||
mbed::DigitalOut _tcxo;
|
||||
|
||||
// Contains all RF control pin names
|
||||
// This storage is needed even after assigning the
|
||||
// pins to corresponding object, as the driver needs to know
|
||||
// which control pins are connected and which are not. This
|
||||
// variation is inherent to driver because of target configuration.
|
||||
rf_ctrls _rf_ctrls;
|
||||
|
||||
// We need these PinNames as not all modules have those connected
|
||||
PinName _dio4_pin;
|
||||
PinName _dio5_pin;
|
||||
|
||||
// Structure containing all user and network specified settings
|
||||
// for radio module
|
||||
radio_settings_t _rf_settings;
|
||||
|
||||
// Structure containing function pointers to the stack callbacks
|
||||
radio_events_t *_radio_events;
|
||||
|
||||
// Data buffer used for both TX and RX
|
||||
// Size of this buffer is configurable via Mbed config system
|
||||
// Default is 256 bytes
|
||||
uint8_t _data_buffer[MAX_DATA_BUFFER_SIZE_SX172];
|
||||
|
||||
// TX timer in ms. This timer is used as a fail safe for TX.
|
||||
// If the chip fails to transmit, its a fatal error, reflecting
|
||||
// some catastrophic bus failure etc. We wish to have the control
|
||||
// back from the driver in such a case.
|
||||
ALIAS_LORAWAN_TIMER tx_timeout_timer;
|
||||
|
||||
#ifdef MBED_CONF_RTOS_PRESENT
|
||||
// Thread to handle interrupts
|
||||
rtos::Thread irq_thread;
|
||||
#endif
|
||||
|
||||
// Access protection
|
||||
PlatformMutex mutex;
|
||||
|
||||
uint8_t radio_variant;
|
||||
|
||||
/**
|
||||
* Flag used to set the RF switch control pins in low power mode when the radio is not active.
|
||||
*/
|
||||
bool radio_is_active;
|
||||
|
||||
// helper functions
|
||||
void setup_registers();
|
||||
void default_antenna_switch_ctrls();
|
||||
void set_antenna_switch(uint8_t operation_mode);
|
||||
void setup_spi();
|
||||
void gpio_init();
|
||||
void gpio_deinit();
|
||||
void setup_interrupts();
|
||||
void set_modem(uint8_t modem);
|
||||
void set_operation_mode(uint8_t mode);
|
||||
void set_low_power_mode(bool status);
|
||||
void set_sx1272_variant_type();
|
||||
uint8_t get_pa_conf_reg();
|
||||
void set_rf_tx_power(int8_t power);
|
||||
int16_t get_rssi(radio_modems_t modem);
|
||||
uint8_t get_fsk_bw_reg_val(uint32_t bandwidth);
|
||||
void write_to_register(uint8_t addr, uint8_t data);
|
||||
void write_to_register(uint8_t addr, uint8_t *data, uint8_t size);
|
||||
uint8_t read_register(uint8_t addr);
|
||||
void read_register(uint8_t addr, uint8_t *buffer, uint8_t size);
|
||||
void write_fifo(uint8_t *buffer, uint8_t size);
|
||||
void read_fifo(uint8_t *buffer, uint8_t size);
|
||||
void transmit(uint32_t timeout);
|
||||
void rf_irq_task(void);
|
||||
|
||||
// ISRs
|
||||
void dio0_irq_isr();
|
||||
void dio1_irq_isr();
|
||||
void dio2_irq_isr();
|
||||
void dio3_irq_isr();
|
||||
void dio4_irq_isr();
|
||||
void dio5_irq_isr();
|
||||
void timeout_irq_isr();
|
||||
|
||||
// Handlers called by thread in response to signal
|
||||
void handle_dio0_irq();
|
||||
void handle_dio1_irq();
|
||||
void handle_dio2_irq();
|
||||
void handle_dio3_irq();
|
||||
void handle_dio4_irq();
|
||||
void handle_dio5_irq();
|
||||
void handle_timeout_irq();
|
||||
};
|
||||
|
||||
#endif // DEVICE_SPI
|
||||
|
||||
#endif /* SX1272_LORARADIO_H_ */
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"name": "sx1272-lora-driver",
|
||||
"config": {
|
||||
"spi-frequency": {
|
||||
"help": "SPI frequency, Default: 8 MHz",
|
||||
"value": 8000000
|
||||
},
|
||||
"buffer-size": {
|
||||
"help": "Max. buffer size the radio can handle, Default: 255 B",
|
||||
"value": 255
|
||||
},
|
||||
"radio-variant": {
|
||||
"help": "Use to set the radio variant if the antenna switch input is not connected.",
|
||||
"value": "SX1272UNDEFINED"
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,549 @@
|
|||
/**
|
||||
/ _____) _ | |
|
||||
( (____ _____ ____ _| |_ _____ ____| |__
|
||||
\____ \| ___ | (_ _) ___ |/ ___) _ \
|
||||
_____) ) ____| | | || |_| ____( (___| | | |
|
||||
(______/|_____)_|_|_| \__)_____)\____)_| |_|
|
||||
(C) 2015 Semtech
|
||||
|
||||
Description: SX1272 LoRa modem registers and bits definitions
|
||||
|
||||
License: Revised BSD License, see LICENSE.TXT file include in the project
|
||||
|
||||
Maintainer: Miguel Luis and Gregory Cristian
|
||||
|
||||
Copyright (c) 2017, Arm Limited and affiliates.
|
||||
|
||||
SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
#ifndef __SX1272_REGS_LORA_H__
|
||||
#define __SX1272_REGS_LORA_H__
|
||||
|
||||
/*!
|
||||
* ============================================================================
|
||||
* SX1272 Internal registers Address
|
||||
* ============================================================================
|
||||
*/
|
||||
#define REG_LR_FIFO 0x00
|
||||
// Common settings
|
||||
#define REG_LR_OPMODE 0x01
|
||||
#define REG_LR_FRFMSB 0x06
|
||||
#define REG_LR_FRFMID 0x07
|
||||
#define REG_LR_FRFLSB 0x08
|
||||
// Tx settings
|
||||
#define REG_LR_PACONFIG 0x09
|
||||
#define REG_LR_PARAMP 0x0A
|
||||
#define REG_LR_OCP 0x0B
|
||||
// Rx settings
|
||||
#define REG_LR_LNA 0x0C
|
||||
// LoRa registers
|
||||
#define REG_LR_FIFOADDRPTR 0x0D
|
||||
#define REG_LR_FIFOTXBASEADDR 0x0E
|
||||
#define REG_LR_FIFORXBASEADDR 0x0F
|
||||
#define REG_LR_FIFORXCURRENTADDR 0x10
|
||||
#define REG_LR_IRQFLAGSMASK 0x11
|
||||
#define REG_LR_IRQFLAGS 0x12
|
||||
#define REG_LR_RXNBBYTES 0x13
|
||||
#define REG_LR_RXHEADERCNTVALUEMSB 0x14
|
||||
#define REG_LR_RXHEADERCNTVALUELSB 0x15
|
||||
#define REG_LR_RXPACKETCNTVALUEMSB 0x16
|
||||
#define REG_LR_RXPACKETCNTVALUELSB 0x17
|
||||
#define REG_LR_MODEMSTAT 0x18
|
||||
#define REG_LR_PKTSNRVALUE 0x19
|
||||
#define REG_LR_PKTRSSIVALUE 0x1A
|
||||
#define REG_LR_RSSIVALUE 0x1B
|
||||
#define REG_LR_HOPCHANNEL 0x1C
|
||||
#define REG_LR_MODEMCONFIG1 0x1D
|
||||
#define REG_LR_MODEMCONFIG2 0x1E
|
||||
#define REG_LR_SYMBTIMEOUTLSB 0x1F
|
||||
#define REG_LR_PREAMBLEMSB 0x20
|
||||
#define REG_LR_PREAMBLELSB 0x21
|
||||
#define REG_LR_PAYLOADLENGTH 0x22
|
||||
#define REG_LR_PAYLOADMAXLENGTH 0x23
|
||||
#define REG_LR_HOPPERIOD 0x24
|
||||
#define REG_LR_FIFORXBYTEADDR 0x25
|
||||
#define REG_LR_FEIMSB 0x28
|
||||
#define REG_LR_FEIMID 0x29
|
||||
#define REG_LR_FEILSB 0x2A
|
||||
#define REG_LR_RSSIWIDEBAND 0x2C
|
||||
#define REG_LR_DETECTOPTIMIZE 0x31
|
||||
#define REG_LR_INVERTIQ 0x33
|
||||
#define REG_LR_DETECTIONTHRESHOLD 0x37
|
||||
#define REG_LR_SYNCWORD 0x39
|
||||
#define REG_LR_INVERTIQ2 0x3B
|
||||
|
||||
// end of documented register in datasheet
|
||||
// I/O settings
|
||||
#define REG_LR_DIOMAPPING1 0x40
|
||||
#define REG_LR_DIOMAPPING2 0x41
|
||||
// Version
|
||||
#define REG_LR_VERSION 0x42
|
||||
// Additional settings
|
||||
#define REG_LR_AGCREF 0x43
|
||||
#define REG_LR_AGCTHRESH1 0x44
|
||||
#define REG_LR_AGCTHRESH2 0x45
|
||||
#define REG_LR_AGCTHRESH3 0x46
|
||||
#define REG_LR_PLLHOP 0x4B
|
||||
#define REG_LR_TCXO 0x58
|
||||
#define REG_LR_PADAC 0x5A
|
||||
#define REG_LR_PLL 0x5C
|
||||
#define REG_LR_PLLLOWPN 0x5E
|
||||
#define REG_LR_FORMERTEMP 0x6C
|
||||
|
||||
/*!
|
||||
* ============================================================================
|
||||
* SX1272 LoRa bits control definition
|
||||
* ============================================================================
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegFifo
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegOpMode
|
||||
*/
|
||||
#define RFLR_OPMODE_LONGRANGEMODE_MASK 0x7F
|
||||
#define RFLR_OPMODE_LONGRANGEMODE_OFF 0x00 // Default
|
||||
#define RFLR_OPMODE_LONGRANGEMODE_ON 0x80
|
||||
|
||||
#define RFLR_OPMODE_ACCESSSHAREDREG_MASK 0xBF
|
||||
#define RFLR_OPMODE_ACCESSSHAREDREG_ENABLE 0x40
|
||||
#define RFLR_OPMODE_ACCESSSHAREDREG_DISABLE 0x00 // Default
|
||||
|
||||
#define RFLR_OPMODE_MASK 0xF8
|
||||
#define RFLR_OPMODE_SLEEP 0x00
|
||||
#define RFLR_OPMODE_STANDBY 0x01 // Default
|
||||
#define RFLR_OPMODE_SYNTHESIZER_TX 0x02
|
||||
#define RFLR_OPMODE_TRANSMITTER 0x03
|
||||
#define RFLR_OPMODE_SYNTHESIZER_RX 0x04
|
||||
#define RFLR_OPMODE_RECEIVER 0x05
|
||||
// LoRa specific modes
|
||||
#define RFLR_OPMODE_RECEIVER_SINGLE 0x06
|
||||
#define RFLR_OPMODE_CAD 0x07
|
||||
|
||||
/*!
|
||||
* RegFrf (MHz)
|
||||
*/
|
||||
#define RFLR_FRFMSB_915_MHZ 0xE4 // Default
|
||||
#define RFLR_FRFMID_915_MHZ 0xC0 // Default
|
||||
#define RFLR_FRFLSB_915_MHZ 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegPaConfig
|
||||
*/
|
||||
#define RFLR_PACONFIG_PASELECT_MASK 0x7F
|
||||
#define RFLR_PACONFIG_PASELECT_PABOOST 0x80
|
||||
#define RFLR_PACONFIG_PASELECT_RFO 0x00 // Default
|
||||
|
||||
#define RFLR_PACONFIG_OUTPUTPOWER_MASK 0xF0
|
||||
|
||||
/*!
|
||||
* RegPaRamp
|
||||
*/
|
||||
#define RFLR_PARAMP_LOWPNTXPLL_MASK 0xE0
|
||||
#define RFLR_PARAMP_LOWPNTXPLL_OFF 0x10 // Default
|
||||
#define RFLR_PARAMP_LOWPNTXPLL_ON 0x00
|
||||
|
||||
#define RFLR_PARAMP_MASK 0xF0
|
||||
#define RFLR_PARAMP_3400_US 0x00
|
||||
#define RFLR_PARAMP_2000_US 0x01
|
||||
#define RFLR_PARAMP_1000_US 0x02
|
||||
#define RFLR_PARAMP_0500_US 0x03
|
||||
#define RFLR_PARAMP_0250_US 0x04
|
||||
#define RFLR_PARAMP_0125_US 0x05
|
||||
#define RFLR_PARAMP_0100_US 0x06
|
||||
#define RFLR_PARAMP_0062_US 0x07
|
||||
#define RFLR_PARAMP_0050_US 0x08
|
||||
#define RFLR_PARAMP_0040_US 0x09 // Default
|
||||
#define RFLR_PARAMP_0031_US 0x0A
|
||||
#define RFLR_PARAMP_0025_US 0x0B
|
||||
#define RFLR_PARAMP_0020_US 0x0C
|
||||
#define RFLR_PARAMP_0015_US 0x0D
|
||||
#define RFLR_PARAMP_0012_US 0x0E
|
||||
#define RFLR_PARAMP_0010_US 0x0F
|
||||
|
||||
/*!
|
||||
* RegOcp
|
||||
*/
|
||||
#define RFLR_OCP_MASK 0xDF
|
||||
#define RFLR_OCP_ON 0x20 // Default
|
||||
#define RFLR_OCP_OFF 0x00
|
||||
|
||||
#define RFLR_OCP_TRIM_MASK 0xE0
|
||||
#define RFLR_OCP_TRIM_045_MA 0x00
|
||||
#define RFLR_OCP_TRIM_050_MA 0x01
|
||||
#define RFLR_OCP_TRIM_055_MA 0x02
|
||||
#define RFLR_OCP_TRIM_060_MA 0x03
|
||||
#define RFLR_OCP_TRIM_065_MA 0x04
|
||||
#define RFLR_OCP_TRIM_070_MA 0x05
|
||||
#define RFLR_OCP_TRIM_075_MA 0x06
|
||||
#define RFLR_OCP_TRIM_080_MA 0x07
|
||||
#define RFLR_OCP_TRIM_085_MA 0x08
|
||||
#define RFLR_OCP_TRIM_090_MA 0x09
|
||||
#define RFLR_OCP_TRIM_095_MA 0x0A
|
||||
#define RFLR_OCP_TRIM_100_MA 0x0B // Default
|
||||
#define RFLR_OCP_TRIM_105_MA 0x0C
|
||||
#define RFLR_OCP_TRIM_110_MA 0x0D
|
||||
#define RFLR_OCP_TRIM_115_MA 0x0E
|
||||
#define RFLR_OCP_TRIM_120_MA 0x0F
|
||||
#define RFLR_OCP_TRIM_130_MA 0x10
|
||||
#define RFLR_OCP_TRIM_140_MA 0x11
|
||||
#define RFLR_OCP_TRIM_150_MA 0x12
|
||||
#define RFLR_OCP_TRIM_160_MA 0x13
|
||||
#define RFLR_OCP_TRIM_170_MA 0x14
|
||||
#define RFLR_OCP_TRIM_180_MA 0x15
|
||||
#define RFLR_OCP_TRIM_190_MA 0x16
|
||||
#define RFLR_OCP_TRIM_200_MA 0x17
|
||||
#define RFLR_OCP_TRIM_210_MA 0x18
|
||||
#define RFLR_OCP_TRIM_220_MA 0x19
|
||||
#define RFLR_OCP_TRIM_230_MA 0x1A
|
||||
#define RFLR_OCP_TRIM_240_MA 0x1B
|
||||
|
||||
/*!
|
||||
* RegLna
|
||||
*/
|
||||
#define RFLR_LNA_GAIN_MASK 0x1F
|
||||
#define RFLR_LNA_GAIN_G1 0x20 // Default
|
||||
#define RFLR_LNA_GAIN_G2 0x40
|
||||
#define RFLR_LNA_GAIN_G3 0x60
|
||||
#define RFLR_LNA_GAIN_G4 0x80
|
||||
#define RFLR_LNA_GAIN_G5 0xA0
|
||||
#define RFLR_LNA_GAIN_G6 0xC0
|
||||
|
||||
#define RFLR_LNA_BOOST_MASK 0xFC
|
||||
#define RFLR_LNA_BOOST_OFF 0x00 // Default
|
||||
#define RFLR_LNA_BOOST_ON 0x03
|
||||
|
||||
/*!
|
||||
* RegFifoAddrPtr
|
||||
*/
|
||||
#define RFLR_FIFOADDRPTR 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegFifoTxBaseAddr
|
||||
*/
|
||||
#define RFLR_FIFOTXBASEADDR 0x80 // Default
|
||||
|
||||
/*!
|
||||
* RegFifoTxBaseAddr
|
||||
*/
|
||||
#define RFLR_FIFORXBASEADDR 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegFifoRxCurrentAddr (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegIrqFlagsMask
|
||||
*/
|
||||
#define RFLR_IRQFLAGS_RXTIMEOUT_MASK 0x80
|
||||
#define RFLR_IRQFLAGS_RXDONE_MASK 0x40
|
||||
#define RFLR_IRQFLAGS_PAYLOADCRCERROR_MASK 0x20
|
||||
#define RFLR_IRQFLAGS_VALIDHEADER_MASK 0x10
|
||||
#define RFLR_IRQFLAGS_TXDONE_MASK 0x08
|
||||
#define RFLR_IRQFLAGS_CADDONE_MASK 0x04
|
||||
#define RFLR_IRQFLAGS_FHSSCHANGEDCHANNEL_MASK 0x02
|
||||
#define RFLR_IRQFLAGS_CADDETECTED_MASK 0x01
|
||||
|
||||
/*!
|
||||
* RegIrqFlags
|
||||
*/
|
||||
#define RFLR_IRQFLAGS_RXTIMEOUT 0x80
|
||||
#define RFLR_IRQFLAGS_RXDONE 0x40
|
||||
#define RFLR_IRQFLAGS_PAYLOADCRCERROR 0x20
|
||||
#define RFLR_IRQFLAGS_VALIDHEADER 0x10
|
||||
#define RFLR_IRQFLAGS_TXDONE 0x08
|
||||
#define RFLR_IRQFLAGS_CADDONE 0x04
|
||||
#define RFLR_IRQFLAGS_FHSSCHANGEDCHANNEL 0x02
|
||||
#define RFLR_IRQFLAGS_CADDETECTED 0x01
|
||||
|
||||
/*!
|
||||
* RegFifoRxNbBytes (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRxHeaderCntValueMsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRxHeaderCntValueLsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRxPacketCntValueMsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRxPacketCntValueLsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegModemStat (Read Only)
|
||||
*/
|
||||
#define RFLR_MODEMSTAT_RX_CR_MASK 0x1F
|
||||
#define RFLR_MODEMSTAT_MODEM_STATUS_MASK 0xE0
|
||||
|
||||
/*!
|
||||
* RegPktSnrValue (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegPktRssiValue (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRssiValue (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegHopChannel (Read Only)
|
||||
*/
|
||||
#define RFLR_HOPCHANNEL_PLL_LOCK_TIMEOUT_MASK 0x7F
|
||||
#define RFLR_HOPCHANNEL_PLL_LOCK_FAIL 0x80
|
||||
#define RFLR_HOPCHANNEL_PLL_LOCK_SUCCEED 0x00 // Default
|
||||
|
||||
#define RFLR_HOPCHANNEL_CRCONPAYLOAD_MASK 0xBF
|
||||
#define RFLR_HOPCHANNEL_CRCONPAYLOAD_ON 0x40
|
||||
#define RFLR_HOPCHANNEL_CRCONPAYLOAD_OFF 0x00 // Default
|
||||
|
||||
#define RFLR_HOPCHANNEL_CHANNEL_MASK 0x3F
|
||||
|
||||
/*!
|
||||
* RegModemConfig1
|
||||
*/
|
||||
#define RFLR_MODEMCONFIG1_BW_MASK 0x3F
|
||||
#define RFLR_MODEMCONFIG1_BW_125_KHZ 0x00 // Default
|
||||
#define RFLR_MODEMCONFIG1_BW_250_KHZ 0x40
|
||||
#define RFLR_MODEMCONFIG1_BW_500_KHZ 0x80
|
||||
|
||||
#define RFLR_MODEMCONFIG1_CODINGRATE_MASK 0xC7
|
||||
#define RFLR_MODEMCONFIG1_CODINGRATE_4_5 0x08
|
||||
#define RFLR_MODEMCONFIG1_CODINGRATE_4_6 0x10 // Default
|
||||
#define RFLR_MODEMCONFIG1_CODINGRATE_4_7 0x18
|
||||
#define RFLR_MODEMCONFIG1_CODINGRATE_4_8 0x20
|
||||
|
||||
#define RFLR_MODEMCONFIG1_IMPLICITHEADER_MASK 0xFB
|
||||
#define RFLR_MODEMCONFIG1_IMPLICITHEADER_ON 0x04
|
||||
#define RFLR_MODEMCONFIG1_IMPLICITHEADER_OFF 0x00 // Default
|
||||
|
||||
#define RFLR_MODEMCONFIG1_RXPAYLOADCRC_MASK 0xFD
|
||||
#define RFLR_MODEMCONFIG1_RXPAYLOADCRC_ON 0x02
|
||||
#define RFLR_MODEMCONFIG1_RXPAYLOADCRC_OFF 0x00 // Default
|
||||
|
||||
#define RFLR_MODEMCONFIG1_LOWDATARATEOPTIMIZE_MASK 0xFE
|
||||
#define RFLR_MODEMCONFIG1_LOWDATARATEOPTIMIZE_ON 0x01
|
||||
#define RFLR_MODEMCONFIG1_LOWDATARATEOPTIMIZE_OFF 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegModemConfig2
|
||||
*/
|
||||
#define RFLR_MODEMCONFIG2_SF_MASK 0x0F
|
||||
#define RFLR_MODEMCONFIG2_SF_6 0x60
|
||||
#define RFLR_MODEMCONFIG2_SF_7 0x70 // Default
|
||||
#define RFLR_MODEMCONFIG2_SF_8 0x80
|
||||
#define RFLR_MODEMCONFIG2_SF_9 0x90
|
||||
#define RFLR_MODEMCONFIG2_SF_10 0xA0
|
||||
#define RFLR_MODEMCONFIG2_SF_11 0xB0
|
||||
#define RFLR_MODEMCONFIG2_SF_12 0xC0
|
||||
|
||||
#define RFLR_MODEMCONFIG2_TXCONTINUOUSMODE_MASK 0xF7
|
||||
#define RFLR_MODEMCONFIG2_TXCONTINUOUSMODE_ON 0x08
|
||||
#define RFLR_MODEMCONFIG2_TXCONTINUOUSMODE_OFF 0x00
|
||||
|
||||
#define RFLR_MODEMCONFIG2_AGCAUTO_MASK 0xFB
|
||||
#define RFLR_MODEMCONFIG2_AGCAUTO_ON 0x04 // Default
|
||||
#define RFLR_MODEMCONFIG2_AGCAUTO_OFF 0x00
|
||||
|
||||
#define RFLR_MODEMCONFIG2_SYMBTIMEOUTMSB_MASK 0xFC
|
||||
#define RFLR_MODEMCONFIG2_SYMBTIMEOUTMSB 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegSymbTimeoutLsb
|
||||
*/
|
||||
#define RFLR_SYMBTIMEOUTLSB_SYMBTIMEOUT 0x64 // Default
|
||||
|
||||
/*!
|
||||
* RegPreambleLengthMsb
|
||||
*/
|
||||
#define RFLR_PREAMBLELENGTHMSB 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegPreambleLengthLsb
|
||||
*/
|
||||
#define RFLR_PREAMBLELENGTHLSB 0x08 // Default
|
||||
|
||||
/*!
|
||||
* RegPayloadLength
|
||||
*/
|
||||
#define RFLR_PAYLOADLENGTH 0x0E // Default
|
||||
|
||||
/*!
|
||||
* RegPayloadMaxLength
|
||||
*/
|
||||
#define RFLR_PAYLOADMAXLENGTH 0xFF // Default
|
||||
|
||||
/*!
|
||||
* RegHopPeriod
|
||||
*/
|
||||
#define RFLR_HOPPERIOD_FREQFOPPINGPERIOD 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegFifoRxByteAddr (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegFeiMsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegFeiMid (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegFeiLsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRssiWideband (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegDetectOptimize
|
||||
*/
|
||||
#define RFLR_DETECTIONOPTIMIZE_MASK 0xF8
|
||||
#define RFLR_DETECTIONOPTIMIZE_SF7_TO_SF12 0x03 // Default
|
||||
#define RFLR_DETECTIONOPTIMIZE_SF6 0x05
|
||||
|
||||
/*!
|
||||
* RegInvertIQ
|
||||
*/
|
||||
#define RFLR_INVERTIQ_RX_MASK 0xBF
|
||||
#define RFLR_INVERTIQ_RX_OFF 0x00
|
||||
#define RFLR_INVERTIQ_RX_ON 0x40
|
||||
#define RFLR_INVERTIQ_TX_MASK 0xFE
|
||||
#define RFLR_INVERTIQ_TX_OFF 0x01
|
||||
#define RFLR_INVERTIQ_TX_ON 0x00
|
||||
|
||||
/*!
|
||||
* RegDetectionThreshold
|
||||
*/
|
||||
#define RFLR_DETECTIONTHRESH_SF7_TO_SF12 0x0A // Default
|
||||
#define RFLR_DETECTIONTHRESH_SF6 0x0C
|
||||
|
||||
/*!
|
||||
* RegInvertIQ2
|
||||
*/
|
||||
#define RFLR_INVERTIQ2_ON 0x19
|
||||
#define RFLR_INVERTIQ2_OFF 0x1D
|
||||
|
||||
/*!
|
||||
* RegDioMapping1
|
||||
*/
|
||||
#define RFLR_DIOMAPPING1_DIO0_MASK 0x3F
|
||||
#define RFLR_DIOMAPPING1_DIO0_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING1_DIO0_01 0x40
|
||||
#define RFLR_DIOMAPPING1_DIO0_10 0x80
|
||||
#define RFLR_DIOMAPPING1_DIO0_11 0xC0
|
||||
|
||||
#define RFLR_DIOMAPPING1_DIO1_MASK 0xCF
|
||||
#define RFLR_DIOMAPPING1_DIO1_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING1_DIO1_01 0x10
|
||||
#define RFLR_DIOMAPPING1_DIO1_10 0x20
|
||||
#define RFLR_DIOMAPPING1_DIO1_11 0x30
|
||||
|
||||
#define RFLR_DIOMAPPING1_DIO2_MASK 0xF3
|
||||
#define RFLR_DIOMAPPING1_DIO2_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING1_DIO2_01 0x04
|
||||
#define RFLR_DIOMAPPING1_DIO2_10 0x08
|
||||
#define RFLR_DIOMAPPING1_DIO2_11 0x0C
|
||||
|
||||
#define RFLR_DIOMAPPING1_DIO3_MASK 0xFC
|
||||
#define RFLR_DIOMAPPING1_DIO3_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING1_DIO3_01 0x01
|
||||
#define RFLR_DIOMAPPING1_DIO3_10 0x02
|
||||
#define RFLR_DIOMAPPING1_DIO3_11 0x03
|
||||
|
||||
/*!
|
||||
* RegDioMapping2
|
||||
*/
|
||||
#define RFLR_DIOMAPPING2_DIO4_MASK 0x3F
|
||||
#define RFLR_DIOMAPPING2_DIO4_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING2_DIO4_01 0x40
|
||||
#define RFLR_DIOMAPPING2_DIO4_10 0x80
|
||||
#define RFLR_DIOMAPPING2_DIO4_11 0xC0
|
||||
|
||||
#define RFLR_DIOMAPPING2_DIO5_MASK 0xCF
|
||||
#define RFLR_DIOMAPPING2_DIO5_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING2_DIO5_01 0x10
|
||||
#define RFLR_DIOMAPPING2_DIO5_10 0x20
|
||||
#define RFLR_DIOMAPPING2_DIO5_11 0x30
|
||||
|
||||
#define RFLR_DIOMAPPING2_MAP_MASK 0xFE
|
||||
#define RFLR_DIOMAPPING2_MAP_PREAMBLEDETECT 0x01
|
||||
#define RFLR_DIOMAPPING2_MAP_RSSI 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegVersion (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegAgcRef
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegAgcThresh1
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegAgcThresh2
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegAgcThresh3
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegPllHop
|
||||
*/
|
||||
#define RFLR_PLLHOP_FASTHOP_MASK 0x7F
|
||||
#define RFLR_PLLHOP_FASTHOP_ON 0x80
|
||||
#define RFLR_PLLHOP_FASTHOP_OFF 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegTcxo
|
||||
*/
|
||||
#define RFLR_TCXO_TCXOINPUT_MASK 0xEF
|
||||
#define RFLR_TCXO_TCXOINPUT_ON 0x10
|
||||
#define RFLR_TCXO_TCXOINPUT_OFF 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegPaDac
|
||||
*/
|
||||
#define RFLR_PADAC_20DBM_MASK 0xF8
|
||||
#define RFLR_PADAC_20DBM_ON 0x07
|
||||
#define RFLR_PADAC_20DBM_OFF 0x04 // Default
|
||||
|
||||
/*!
|
||||
* RegPll
|
||||
*/
|
||||
#define RFLR_PLL_BANDWIDTH_MASK 0x3F
|
||||
#define RFLR_PLL_BANDWIDTH_75 0x00
|
||||
#define RFLR_PLL_BANDWIDTH_150 0x40
|
||||
#define RFLR_PLL_BANDWIDTH_225 0x80
|
||||
#define RFLR_PLL_BANDWIDTH_300 0xC0 // Default
|
||||
|
||||
/*!
|
||||
* RegPllLowPn
|
||||
*/
|
||||
#define RFLR_PLLLOWPN_BANDWIDTH_MASK 0x3F
|
||||
#define RFLR_PLLLOWPN_BANDWIDTH_75 0x00
|
||||
#define RFLR_PLLLOWPN_BANDWIDTH_150 0x40
|
||||
#define RFLR_PLLLOWPN_BANDWIDTH_225 0x80
|
||||
#define RFLR_PLLLOWPN_BANDWIDTH_300 0xC0 // Default
|
||||
|
||||
/*!
|
||||
* RegFormerTemp
|
||||
*/
|
||||
|
||||
#endif // __SX1272_REGS_LORA_H__
|
|
@ -0,0 +1 @@
|
|||
# Mbed enabled SX1276 LoRa/FSK radio driver
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,453 @@
|
|||
/**
|
||||
/ _____) _ | |
|
||||
( (____ _____ ____ _| |_ _____ ____| |__
|
||||
\____ \| ___ | (_ _) ___ |/ ___) _ \
|
||||
_____) ) ____| | | || |_| ____( (___| | | |
|
||||
(______/|_____)_|_|_| \__)_____)\____)_| |_|
|
||||
(C)2013 Semtech
|
||||
___ _____ _ ___ _ _____ ___ ___ ___ ___
|
||||
/ __|_ _/_\ / __| |/ / __/ _ \| _ \/ __| __|
|
||||
\__ \ | |/ _ \ (__| ' <| _| (_) | / (__| _|
|
||||
|___/ |_/_/ \_\___|_|\_\_| \___/|_|_\\___|___|
|
||||
embedded.connectivity.solutions===============
|
||||
|
||||
Description: LoRaWAN stack layer that controls both MAC and PHY underneath
|
||||
|
||||
License: Revised BSD License, see LICENSE.TXT file include in the project
|
||||
|
||||
Maintainer: Miguel Luis ( Semtech ), Gregory Cristian ( Semtech ) and Daniel Jaeckle ( STACKFORCE )
|
||||
|
||||
|
||||
Copyright (c) 2017, Arm Limited and affiliates.
|
||||
|
||||
SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef SX1276_LORARADIO_H_
|
||||
#define SX1276_LORARADIO_H_
|
||||
|
||||
#if DEVICE_SPI
|
||||
|
||||
#include "PinNames.h"
|
||||
#include "InterruptIn.h"
|
||||
#include "DigitalOut.h"
|
||||
#include "DigitalInOut.h"
|
||||
#include "SPI.h"
|
||||
#include "platform/PlatformMutex.h"
|
||||
#ifdef MBED_CONF_RTOS_PRESENT
|
||||
#include "rtos/Thread.h"
|
||||
#endif
|
||||
|
||||
#include "lorawan/LoRaRadio.h"
|
||||
|
||||
#ifdef MBED_CONF_SX1276_LORA_DRIVER_BUFFER_SIZE
|
||||
#define MAX_DATA_BUFFER_SIZE_SX1276 MBED_CONF_SX1276_LORA_DRIVER_BUFFER_SIZE
|
||||
#else
|
||||
#define MAX_DATA_BUFFER_SIZE_SX1276 255
|
||||
#endif
|
||||
|
||||
#if DEVICE_LPTICKER
|
||||
#include "LowPowerTimeout.h"
|
||||
#define ALIAS_LORAWAN_TIMER mbed::LowPowerTimeout
|
||||
#else
|
||||
#include "Timeout.h"
|
||||
#define ALIAS_LORAWAN_TIMER mbed::Timeout
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Radio driver implementation for Semtech SX1272 plus variants.
|
||||
* Supports only SPI at the moment. Implements pure virtual LoRaRadio class.
|
||||
*/
|
||||
class SX1276_LoRaRadio: public LoRaRadio {
|
||||
public:
|
||||
/**
|
||||
* Use this constructor if pin definitions are provided manually.
|
||||
* The pins that are marked NC are optional. It is assumed that these
|
||||
* pins are not connected until/unless configured otherwise.
|
||||
*
|
||||
* Note: Pin ant_switch is equivalent to RxTx pin at
|
||||
* https://developer.mbed.org/components/SX1276MB1xAS/.
|
||||
* Reading the state of this pin indicates if the radio module type is
|
||||
* SX1276MB1LAS(North American frequency band supported) or SX1276MAS
|
||||
* (European frequency band supported).
|
||||
* Pin dio4 can be mapped to multiple pins on the board, please refer to
|
||||
* schematic of your board. For reference look at
|
||||
* https://developer.mbed.org/components/SX1276MB1xAS/
|
||||
*
|
||||
* Most of the radio module control pins are not being used at the moment as
|
||||
* the SX1276MB1xAS shield has not connected them. For consistency and future
|
||||
* use we are leaving the pins in the constructor. For example, if in some
|
||||
* setting SX1276 radio module gets connected to an external power amplifier
|
||||
* or radio latch controls are connected.
|
||||
*/
|
||||
SX1276_LoRaRadio(PinName mosi,
|
||||
PinName miso,
|
||||
PinName sclk,
|
||||
PinName nss,
|
||||
PinName reset,
|
||||
PinName dio0,
|
||||
PinName dio1,
|
||||
PinName dio2,
|
||||
PinName dio3,
|
||||
PinName dio4,
|
||||
PinName dio5,
|
||||
PinName rf_switch_ctl1 = NC,
|
||||
PinName rf_switch_ctl2 = NC,
|
||||
PinName txctl = NC,
|
||||
PinName rxctl = NC,
|
||||
PinName ant_switch = NC,
|
||||
PinName pwr_amp_ctl = NC,
|
||||
PinName tcxo = NC);
|
||||
|
||||
/**
|
||||
* Destructor
|
||||
*/
|
||||
virtual ~SX1276_LoRaRadio();
|
||||
|
||||
/**
|
||||
* Registers radio events with the Mbed LoRaWAN stack and
|
||||
* undergoes initialization steps if any
|
||||
*
|
||||
* @param events Structure containing the driver callback functions
|
||||
*/
|
||||
virtual void init_radio(radio_events_t *events);
|
||||
|
||||
/**
|
||||
* Resets the radio module
|
||||
*/
|
||||
virtual void radio_reset();
|
||||
|
||||
/**
|
||||
* Put the RF module in sleep mode
|
||||
*/
|
||||
virtual void sleep(void);
|
||||
|
||||
/**
|
||||
* Sets the radio in standby mode
|
||||
*/
|
||||
virtual void standby(void);
|
||||
|
||||
/**
|
||||
* Sets the reception parameters
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param bandwidth Sets the bandwidth
|
||||
* FSK : >= 2600 and <= 250000 Hz
|
||||
* LoRa: [0: 125 kHz, 1: 250 kHz,
|
||||
* 2: 500 kHz, 3: Reserved]
|
||||
* @param datarate Sets the Datarate
|
||||
* FSK : 600..300000 bits/s
|
||||
* LoRa: [6: 64, 7: 128, 8: 256, 9: 512,
|
||||
* 10: 1024, 11: 2048, 12: 4096 chips]
|
||||
* @param coderate Sets the coding rate ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [1: 4/5, 2: 4/6, 3: 4/7, 4: 4/8]
|
||||
* @param bandwidth_afc Sets the AFC Bandwidth ( FSK only )
|
||||
* FSK : >= 2600 and <= 250000 Hz
|
||||
* LoRa: N/A ( set to 0 )
|
||||
* @param preamble_len Sets the Preamble length ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: Length in symbols ( the hardware adds 4 more symbols )
|
||||
* @param symb_timeout Sets the RxSingle timeout value
|
||||
* FSK : timeout number of bytes
|
||||
* LoRa: timeout in symbols
|
||||
* @param fixLen Fixed length packets [0: variable, 1: fixed]
|
||||
* @param payload_len Sets payload length when fixed lenght is used
|
||||
* @param crc_on Enables/Disables the CRC [0: OFF, 1: ON]
|
||||
* @param freq_hop_on Enables disables the intra-packet frequency hopping [0: OFF, 1: ON] (LoRa only)
|
||||
* @param hop_period Number of symbols bewteen each hop (LoRa only)
|
||||
* @param iq_inverted Inverts IQ signals ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [0: not inverted, 1: inverted]
|
||||
* @param rx_continuous Sets the reception in continuous mode
|
||||
* [false: single mode, true: continuous mode]
|
||||
*/
|
||||
virtual void set_rx_config(radio_modems_t modem, uint32_t bandwidth,
|
||||
uint32_t datarate, uint8_t coderate,
|
||||
uint32_t bandwidth_afc, uint16_t preamble_len,
|
||||
uint16_t symb_timeout, bool fix_len,
|
||||
uint8_t payload_len,
|
||||
bool crc_on, bool freq_hop_on, uint8_t hop_period,
|
||||
bool iq_inverted, bool rx_continuous);
|
||||
|
||||
/**
|
||||
* Sets the transmission parameters
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param power Sets the output power [dBm]
|
||||
* @param fdev Sets the frequency deviation ( FSK only )
|
||||
* FSK : [Hz]
|
||||
* LoRa: 0
|
||||
* @param bandwidth Sets the bandwidth ( LoRa only )
|
||||
* FSK : 0
|
||||
* LoRa: [0: 125 kHz, 1: 250 kHz,
|
||||
* 2: 500 kHz, 3: Reserved]
|
||||
* @param datarate Sets the Datarate
|
||||
* FSK : 600..300000 bits/s
|
||||
* LoRa: [6: 64, 7: 128, 8: 256, 9: 512,
|
||||
* 10: 1024, 11: 2048, 12: 4096 chips]
|
||||
* @param coderate Sets the coding rate ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [1: 4/5, 2: 4/6, 3: 4/7, 4: 4/8]
|
||||
* @param preamble_len Sets the preamble length
|
||||
* @param fix_len Fixed length packets [0: variable, 1: fixed]
|
||||
* @param crc_on Enables disables the CRC [0: OFF, 1: ON]
|
||||
* @param freq_hop_on Enables disables the intra-packet frequency hopping [0: OFF, 1: ON] (LoRa only)
|
||||
* @param hop_period Number of symbols bewteen each hop (LoRa only)
|
||||
* @param iq_inverted Inverts IQ signals ( LoRa only )
|
||||
* FSK : N/A ( set to 0 )
|
||||
* LoRa: [0: not inverted, 1: inverted]
|
||||
* @param timeout Transmission timeout [ms]
|
||||
*/
|
||||
virtual void set_tx_config(radio_modems_t modem, int8_t power, uint32_t fdev,
|
||||
uint32_t bandwidth, uint32_t datarate,
|
||||
uint8_t coderate, uint16_t preamble_len,
|
||||
bool fix_len, bool crc_on, bool freq_hop_on,
|
||||
uint8_t hop_period, bool iq_inverted, uint32_t timeout);
|
||||
|
||||
/**
|
||||
* Sends the buffer of size
|
||||
*
|
||||
* Prepares the packet to be sent and sets the radio in transmission
|
||||
*
|
||||
* @param buffer Buffer pointer
|
||||
* @param size Buffer size
|
||||
*/
|
||||
virtual void send(uint8_t *buffer, uint8_t size);
|
||||
|
||||
/**
|
||||
* For backwards compatibility
|
||||
*/
|
||||
virtual void receive(uint32_t timeout)
|
||||
{
|
||||
(void) timeout;
|
||||
receive();
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the radio to receive
|
||||
*
|
||||
* All necessary configuration options for reception are set in
|
||||
* 'set_rx_config(parameters)' API.
|
||||
*/
|
||||
virtual void receive(void);
|
||||
|
||||
/**
|
||||
* Sets the carrier frequency
|
||||
*
|
||||
* @param freq Channel RF frequency
|
||||
*/
|
||||
virtual void set_channel(uint32_t freq);
|
||||
|
||||
/**
|
||||
* Generates a 32 bits random value based on the RSSI readings
|
||||
*
|
||||
* Remark this function sets the radio in LoRa modem mode and disables
|
||||
* all interrupts.
|
||||
* After calling this function either Radio.SetRxConfig or
|
||||
* Radio.SetTxConfig functions must be called.
|
||||
*
|
||||
* @return 32 bits random value
|
||||
*/
|
||||
virtual uint32_t random(void);
|
||||
|
||||
/**
|
||||
* Get radio status
|
||||
*
|
||||
* @param status Radio status [RF_IDLE, RF_RX_RUNNING, RF_TX_RUNNING]
|
||||
* @return Return current radio status
|
||||
*/
|
||||
virtual uint8_t get_status(void);
|
||||
|
||||
/**
|
||||
* Sets the maximum payload length
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param max Maximum payload length in bytes
|
||||
*/
|
||||
virtual void set_max_payload_length(radio_modems_t modem, uint8_t max);
|
||||
|
||||
/**
|
||||
* Sets the network to public or private
|
||||
*
|
||||
* Updates the sync byte. Applies to LoRa modem only
|
||||
*
|
||||
* @param enable if true, it enables a public network
|
||||
*/
|
||||
virtual void set_public_network(bool enable);
|
||||
|
||||
/**
|
||||
* Computes the packet time on air for the given payload
|
||||
*
|
||||
* Remark can only be called once SetRxConfig or SetTxConfig have been called
|
||||
*
|
||||
* @param modem Radio modem to be used [0: FSK, 1: LoRa]
|
||||
* @param pkt_len Packet payload length
|
||||
* @return Computed airTime for the given packet payload length
|
||||
*/
|
||||
virtual uint32_t time_on_air(radio_modems_t modem, uint8_t pkt_len);
|
||||
|
||||
/**
|
||||
* Perform carrier sensing
|
||||
*
|
||||
* Checks for a certain time if the RSSI is above a given threshold.
|
||||
* This threshold determines if there is already a transmission going on
|
||||
* in the channel or not.
|
||||
*
|
||||
* @param modem Type of the radio modem
|
||||
* @param freq Carrier frequency
|
||||
* @param rssi_threshold Threshold value of RSSI
|
||||
* @param max_carrier_sense_time time to sense the channel
|
||||
*
|
||||
* @return true if there is no active transmission
|
||||
* in the channel, false otherwise
|
||||
*/
|
||||
virtual bool perform_carrier_sense(radio_modems_t modem,
|
||||
uint32_t freq,
|
||||
int16_t rssi_threshold,
|
||||
uint32_t max_carrier_sense_time);
|
||||
|
||||
/**
|
||||
* Sets the radio in CAD mode
|
||||
*
|
||||
*/
|
||||
virtual void start_cad(void);
|
||||
|
||||
/**
|
||||
* Check if the given RF is in range
|
||||
*
|
||||
* @param frequency frequency needed to be checked
|
||||
*/
|
||||
virtual bool check_rf_frequency(uint32_t frequency);
|
||||
|
||||
/** Sets the radio in continuous wave transmission mode
|
||||
*
|
||||
* @param freq Channel RF frequency
|
||||
* @param power Sets the output power [dBm]
|
||||
* @param time Transmission mode timeout [s]
|
||||
*/
|
||||
virtual void set_tx_continuous_wave(uint32_t freq, int8_t power, uint16_t time);
|
||||
|
||||
/**
|
||||
* Acquire exclusive access
|
||||
*/
|
||||
virtual void lock(void);
|
||||
|
||||
/**
|
||||
* Release exclusive access
|
||||
*/
|
||||
virtual void unlock(void);
|
||||
|
||||
private:
|
||||
|
||||
// SPI and chip select control
|
||||
mbed::SPI _spi;
|
||||
mbed::DigitalOut _chip_select;
|
||||
|
||||
// module rest control
|
||||
mbed::DigitalInOut _reset_ctl;
|
||||
|
||||
// Interrupt controls
|
||||
mbed::InterruptIn _dio0_ctl;
|
||||
mbed::InterruptIn _dio1_ctl;
|
||||
mbed::InterruptIn _dio2_ctl;
|
||||
mbed::InterruptIn _dio3_ctl;
|
||||
mbed::InterruptIn _dio4_ctl;
|
||||
mbed::InterruptIn _dio5_ctl;
|
||||
|
||||
// Radio specific controls
|
||||
mbed::DigitalOut _rf_switch_ctl1;
|
||||
mbed::DigitalOut _rf_switch_ctl2;
|
||||
mbed::DigitalOut _txctl;
|
||||
mbed::DigitalOut _rxctl;
|
||||
mbed::DigitalInOut _ant_switch;
|
||||
mbed::DigitalOut _pwr_amp_ctl;
|
||||
mbed::DigitalOut _tcxo;
|
||||
|
||||
// Contains all RF control pin names
|
||||
// This storage is needed even after assigning the
|
||||
// pins to corresponding object, as the driver needs to know
|
||||
// which control pins are connected and which are not. This
|
||||
// variation is inherent to driver because of target configuration.
|
||||
rf_ctrls _rf_ctrls;
|
||||
|
||||
// We need these PinNames as not all modules have those connected
|
||||
PinName _dio4_pin;
|
||||
PinName _dio5_pin;
|
||||
|
||||
// Structure containing all user and network specified settings
|
||||
// for radio module
|
||||
radio_settings_t _rf_settings;
|
||||
|
||||
// Structure containing function pointers to the stack callbacks
|
||||
radio_events_t *_radio_events;
|
||||
|
||||
// Data buffer used for both TX and RX
|
||||
// Size of this buffer is configurable via Mbed config system
|
||||
// Default is 255 bytes
|
||||
uint8_t _data_buffer[MAX_DATA_BUFFER_SIZE_SX1276];
|
||||
|
||||
// TX timer in ms. This timer is used as a fail safe for TX.
|
||||
// If the chip fails to transmit, its a fatal error, reflecting
|
||||
// some catastrophic bus failure etc. We wish to have the control
|
||||
// back from the driver in such a case.
|
||||
ALIAS_LORAWAN_TIMER tx_timeout_timer;
|
||||
|
||||
#ifdef MBED_CONF_RTOS_PRESENT
|
||||
// Thread to handle interrupts
|
||||
rtos::Thread irq_thread;
|
||||
#endif
|
||||
|
||||
// Access protection
|
||||
PlatformMutex mutex;
|
||||
|
||||
uint8_t radio_variant;
|
||||
|
||||
// helper functions
|
||||
void setup_registers();
|
||||
void default_antenna_switch_ctrls();
|
||||
void set_antenna_switch(uint8_t operation_mode);
|
||||
void setup_spi();
|
||||
void gpio_init();
|
||||
void gpio_deinit();
|
||||
void setup_interrupts();
|
||||
void set_operation_mode(uint8_t operation_mode);
|
||||
void set_low_power_mode();
|
||||
void set_sx1276_variant_type();
|
||||
uint8_t get_pa_conf_reg(uint32_t channel);
|
||||
void set_rf_tx_power(int8_t power);
|
||||
int16_t get_rssi(radio_modems_t modem);
|
||||
uint8_t get_fsk_bw_reg_val(uint32_t bandwidth);
|
||||
void write_to_register(uint8_t addr, uint8_t data);
|
||||
void write_to_register(uint8_t addr, uint8_t *data, uint8_t size);
|
||||
uint8_t read_register(uint8_t addr);
|
||||
void read_register(uint8_t addr, uint8_t *buffer, uint8_t size);
|
||||
void write_fifo(uint8_t *buffer, uint8_t size);
|
||||
void read_fifo(uint8_t *buffer, uint8_t size);
|
||||
void transmit(uint32_t timeout);
|
||||
void rf_irq_task(void);
|
||||
void set_modem(uint8_t modem);
|
||||
void rx_chain_calibration(void);
|
||||
|
||||
// ISRs
|
||||
void dio0_irq_isr();
|
||||
void dio1_irq_isr();
|
||||
void dio2_irq_isr();
|
||||
void dio3_irq_isr();
|
||||
void dio4_irq_isr();
|
||||
void dio5_irq_isr();
|
||||
void timeout_irq_isr();
|
||||
|
||||
// Handlers called by thread in response to signal
|
||||
void handle_dio0_irq();
|
||||
void handle_dio1_irq();
|
||||
void handle_dio2_irq();
|
||||
void handle_dio3_irq();
|
||||
void handle_dio4_irq();
|
||||
void handle_dio5_irq();
|
||||
void handle_timeout_irq();
|
||||
};
|
||||
|
||||
#endif // DEVICE_SPI
|
||||
|
||||
#endif // SX1276_LORARADIO_H_
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"name": "sx1276-lora-driver",
|
||||
"config": {
|
||||
"spi-frequency": {
|
||||
"help": "SPI frequency, Default: 8 MHz",
|
||||
"value": 8000000
|
||||
},
|
||||
"buffer-size": {
|
||||
"help": "Max. buffer size the radio can handle, Default: 255 B",
|
||||
"value": 255
|
||||
},
|
||||
"radio-variant": {
|
||||
"help": "Use to set the radio variant if the antenna switch input is not connected.",
|
||||
"value": "SX1276UNDEFINED"
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,569 @@
|
|||
/**
|
||||
/ _____) _ | |
|
||||
( (____ _____ ____ _| |_ _____ ____| |__
|
||||
\____ \| ___ | (_ _) ___ |/ ___) _ \
|
||||
_____) ) ____| | | || |_| ____( (___| | | |
|
||||
(______/|_____)_|_|_| \__)_____)\____)_| |_|
|
||||
(C) 2014 Semtech
|
||||
|
||||
Description: SX1276 LoRa modem registers and bits definitions
|
||||
|
||||
License: Revised BSD License, see LICENSE.TXT file include in the project
|
||||
|
||||
Maintainer: Miguel Luis and Gregory Cristian
|
||||
|
||||
Copyright (c) 2017, Arm Limited and affiliates.
|
||||
|
||||
SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
#ifndef __SX1276_REGS_LORA_H__
|
||||
#define __SX1276_REGS_LORA_H__
|
||||
|
||||
/*!
|
||||
* ============================================================================
|
||||
* SX1276 Internal registers Address
|
||||
* ============================================================================
|
||||
*/
|
||||
#define REG_LR_FIFO 0x00
|
||||
// Common settings
|
||||
#define REG_LR_OPMODE 0x01
|
||||
#define REG_LR_FRFMSB 0x06
|
||||
#define REG_LR_FRFMID 0x07
|
||||
#define REG_LR_FRFLSB 0x08
|
||||
// Tx settings
|
||||
#define REG_LR_PACONFIG 0x09
|
||||
#define REG_LR_PARAMP 0x0A
|
||||
#define REG_LR_OCP 0x0B
|
||||
// Rx settings
|
||||
#define REG_LR_LNA 0x0C
|
||||
// LoRa registers
|
||||
#define REG_LR_FIFOADDRPTR 0x0D
|
||||
#define REG_LR_FIFOTXBASEADDR 0x0E
|
||||
#define REG_LR_FIFORXBASEADDR 0x0F
|
||||
#define REG_LR_FIFORXCURRENTADDR 0x10
|
||||
#define REG_LR_IRQFLAGSMASK 0x11
|
||||
#define REG_LR_IRQFLAGS 0x12
|
||||
#define REG_LR_RXNBBYTES 0x13
|
||||
#define REG_LR_RXHEADERCNTVALUEMSB 0x14
|
||||
#define REG_LR_RXHEADERCNTVALUELSB 0x15
|
||||
#define REG_LR_RXPACKETCNTVALUEMSB 0x16
|
||||
#define REG_LR_RXPACKETCNTVALUELSB 0x17
|
||||
#define REG_LR_MODEMSTAT 0x18
|
||||
#define REG_LR_PKTSNRVALUE 0x19
|
||||
#define REG_LR_PKTRSSIVALUE 0x1A
|
||||
#define REG_LR_RSSIVALUE 0x1B
|
||||
#define REG_LR_HOPCHANNEL 0x1C
|
||||
#define REG_LR_MODEMCONFIG1 0x1D
|
||||
#define REG_LR_MODEMCONFIG2 0x1E
|
||||
#define REG_LR_SYMBTIMEOUTLSB 0x1F
|
||||
#define REG_LR_PREAMBLEMSB 0x20
|
||||
#define REG_LR_PREAMBLELSB 0x21
|
||||
#define REG_LR_PAYLOADLENGTH 0x22
|
||||
#define REG_LR_PAYLOADMAXLENGTH 0x23
|
||||
#define REG_LR_HOPPERIOD 0x24
|
||||
#define REG_LR_FIFORXBYTEADDR 0x25
|
||||
#define REG_LR_MODEMCONFIG3 0x26
|
||||
#define REG_LR_FEIMSB 0x28
|
||||
#define REG_LR_FEIMID 0x29
|
||||
#define REG_LR_FEILSB 0x2A
|
||||
#define REG_LR_RSSIWIDEBAND 0x2C
|
||||
#define REG_LR_TEST2F 0x2F
|
||||
#define REG_LR_TEST30 0x30
|
||||
#define REG_LR_DETECTOPTIMIZE 0x31
|
||||
#define REG_LR_INVERTIQ 0x33
|
||||
#define REG_LR_TEST36 0x36
|
||||
#define REG_LR_DETECTIONTHRESHOLD 0x37
|
||||
#define REG_LR_SYNCWORD 0x39
|
||||
#define REG_LR_TEST3A 0x3A
|
||||
#define REG_LR_INVERTIQ2 0x3B
|
||||
|
||||
// end of documented register in datasheet
|
||||
// I/O settings
|
||||
#define REG_LR_DIOMAPPING1 0x40
|
||||
#define REG_LR_DIOMAPPING2 0x41
|
||||
// Version
|
||||
#define REG_LR_VERSION 0x42
|
||||
// Additional settings
|
||||
#define REG_LR_PLLHOP 0x44
|
||||
#define REG_LR_TCXO 0x4B
|
||||
#define REG_LR_PADAC 0x4D
|
||||
#define REG_LR_FORMERTEMP 0x5B
|
||||
#define REG_LR_BITRATEFRAC 0x5D
|
||||
#define REG_LR_AGCREF 0x61
|
||||
#define REG_LR_AGCTHRESH1 0x62
|
||||
#define REG_LR_AGCTHRESH2 0x63
|
||||
#define REG_LR_AGCTHRESH3 0x64
|
||||
#define REG_LR_PLL 0x70
|
||||
|
||||
/*!
|
||||
* ============================================================================
|
||||
* SX1276 LoRa bits control definition
|
||||
* ============================================================================
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegFifo
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegOpMode
|
||||
*/
|
||||
#define RFLR_OPMODE_LONGRANGEMODE_MASK 0x7F
|
||||
#define RFLR_OPMODE_LONGRANGEMODE_OFF 0x00 // Default
|
||||
#define RFLR_OPMODE_LONGRANGEMODE_ON 0x80
|
||||
|
||||
#define RFLR_OPMODE_ACCESSSHAREDREG_MASK 0xBF
|
||||
#define RFLR_OPMODE_ACCESSSHAREDREG_ENABLE 0x40
|
||||
#define RFLR_OPMODE_ACCESSSHAREDREG_DISABLE 0x00 // Default
|
||||
|
||||
#define RFLR_OPMODE_FREQMODE_ACCESS_MASK 0xF7
|
||||
#define RFLR_OPMODE_FREQMODE_ACCESS_LF 0x08 // Default
|
||||
#define RFLR_OPMODE_FREQMODE_ACCESS_HF 0x00
|
||||
|
||||
#define RFLR_OPMODE_MASK 0xF8
|
||||
#define RFLR_OPMODE_SLEEP 0x00
|
||||
#define RFLR_OPMODE_STANDBY 0x01 // Default
|
||||
#define RFLR_OPMODE_SYNTHESIZER_TX 0x02
|
||||
#define RFLR_OPMODE_TRANSMITTER 0x03
|
||||
#define RFLR_OPMODE_SYNTHESIZER_RX 0x04
|
||||
#define RFLR_OPMODE_RECEIVER 0x05
|
||||
// LoRa specific modes
|
||||
#define RFLR_OPMODE_RECEIVER_SINGLE 0x06
|
||||
#define RFLR_OPMODE_CAD 0x07
|
||||
|
||||
/*!
|
||||
* RegFrf (MHz)
|
||||
*/
|
||||
#define RFLR_FRFMSB_434_MHZ 0x6C // Default
|
||||
#define RFLR_FRFMID_434_MHZ 0x80 // Default
|
||||
#define RFLR_FRFLSB_434_MHZ 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegPaConfig
|
||||
*/
|
||||
#define RFLR_PACONFIG_PASELECT_MASK 0x7F
|
||||
#define RFLR_PACONFIG_PASELECT_PABOOST 0x80
|
||||
#define RFLR_PACONFIG_PASELECT_RFO 0x00 // Default
|
||||
|
||||
#define RFLR_PACONFIG_MAX_POWER_MASK 0x8F
|
||||
|
||||
#define RFLR_PACONFIG_OUTPUTPOWER_MASK 0xF0
|
||||
|
||||
/*!
|
||||
* RegPaRamp
|
||||
*/
|
||||
#define RFLR_PARAMP_TXBANDFORCE_MASK 0xEF
|
||||
#define RFLR_PARAMP_TXBANDFORCE_BAND_SEL 0x10
|
||||
#define RFLR_PARAMP_TXBANDFORCE_AUTO 0x00 // Default
|
||||
|
||||
#define RFLR_PARAMP_MASK 0xF0
|
||||
#define RFLR_PARAMP_3400_US 0x00
|
||||
#define RFLR_PARAMP_2000_US 0x01
|
||||
#define RFLR_PARAMP_1000_US 0x02
|
||||
#define RFLR_PARAMP_0500_US 0x03
|
||||
#define RFLR_PARAMP_0250_US 0x04
|
||||
#define RFLR_PARAMP_0125_US 0x05
|
||||
#define RFLR_PARAMP_0100_US 0x06
|
||||
#define RFLR_PARAMP_0062_US 0x07
|
||||
#define RFLR_PARAMP_0050_US 0x08
|
||||
#define RFLR_PARAMP_0040_US 0x09 // Default
|
||||
#define RFLR_PARAMP_0031_US 0x0A
|
||||
#define RFLR_PARAMP_0025_US 0x0B
|
||||
#define RFLR_PARAMP_0020_US 0x0C
|
||||
#define RFLR_PARAMP_0015_US 0x0D
|
||||
#define RFLR_PARAMP_0012_US 0x0E
|
||||
#define RFLR_PARAMP_0010_US 0x0F
|
||||
|
||||
/*!
|
||||
* RegOcp
|
||||
*/
|
||||
#define RFLR_OCP_MASK 0xDF
|
||||
#define RFLR_OCP_ON 0x20 // Default
|
||||
#define RFLR_OCP_OFF 0x00
|
||||
|
||||
#define RFLR_OCP_TRIM_MASK 0xE0
|
||||
#define RFLR_OCP_TRIM_045_MA 0x00
|
||||
#define RFLR_OCP_TRIM_050_MA 0x01
|
||||
#define RFLR_OCP_TRIM_055_MA 0x02
|
||||
#define RFLR_OCP_TRIM_060_MA 0x03
|
||||
#define RFLR_OCP_TRIM_065_MA 0x04
|
||||
#define RFLR_OCP_TRIM_070_MA 0x05
|
||||
#define RFLR_OCP_TRIM_075_MA 0x06
|
||||
#define RFLR_OCP_TRIM_080_MA 0x07
|
||||
#define RFLR_OCP_TRIM_085_MA 0x08
|
||||
#define RFLR_OCP_TRIM_090_MA 0x09
|
||||
#define RFLR_OCP_TRIM_095_MA 0x0A
|
||||
#define RFLR_OCP_TRIM_100_MA 0x0B // Default
|
||||
#define RFLR_OCP_TRIM_105_MA 0x0C
|
||||
#define RFLR_OCP_TRIM_110_MA 0x0D
|
||||
#define RFLR_OCP_TRIM_115_MA 0x0E
|
||||
#define RFLR_OCP_TRIM_120_MA 0x0F
|
||||
#define RFLR_OCP_TRIM_130_MA 0x10
|
||||
#define RFLR_OCP_TRIM_140_MA 0x11
|
||||
#define RFLR_OCP_TRIM_150_MA 0x12
|
||||
#define RFLR_OCP_TRIM_160_MA 0x13
|
||||
#define RFLR_OCP_TRIM_170_MA 0x14
|
||||
#define RFLR_OCP_TRIM_180_MA 0x15
|
||||
#define RFLR_OCP_TRIM_190_MA 0x16
|
||||
#define RFLR_OCP_TRIM_200_MA 0x17
|
||||
#define RFLR_OCP_TRIM_210_MA 0x18
|
||||
#define RFLR_OCP_TRIM_220_MA 0x19
|
||||
#define RFLR_OCP_TRIM_230_MA 0x1A
|
||||
#define RFLR_OCP_TRIM_240_MA 0x1B
|
||||
|
||||
/*!
|
||||
* RegLna
|
||||
*/
|
||||
#define RFLR_LNA_GAIN_MASK 0x1F
|
||||
#define RFLR_LNA_GAIN_G1 0x20 // Default
|
||||
#define RFLR_LNA_GAIN_G2 0x40
|
||||
#define RFLR_LNA_GAIN_G3 0x60
|
||||
#define RFLR_LNA_GAIN_G4 0x80
|
||||
#define RFLR_LNA_GAIN_G5 0xA0
|
||||
#define RFLR_LNA_GAIN_G6 0xC0
|
||||
|
||||
#define RFLR_LNA_BOOST_LF_MASK 0xE7
|
||||
#define RFLR_LNA_BOOST_LF_DEFAULT 0x00 // Default
|
||||
|
||||
#define RFLR_LNA_BOOST_HF_MASK 0xFC
|
||||
#define RFLR_LNA_BOOST_HF_OFF 0x00 // Default
|
||||
#define RFLR_LNA_BOOST_HF_ON 0x03
|
||||
|
||||
/*!
|
||||
* RegFifoAddrPtr
|
||||
*/
|
||||
#define RFLR_FIFOADDRPTR 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegFifoTxBaseAddr
|
||||
*/
|
||||
#define RFLR_FIFOTXBASEADDR 0x80 // Default
|
||||
|
||||
/*!
|
||||
* RegFifoTxBaseAddr
|
||||
*/
|
||||
#define RFLR_FIFORXBASEADDR 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegFifoRxCurrentAddr (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegIrqFlagsMask
|
||||
*/
|
||||
#define RFLR_IRQFLAGS_RXTIMEOUT_MASK 0x80
|
||||
#define RFLR_IRQFLAGS_RXDONE_MASK 0x40
|
||||
#define RFLR_IRQFLAGS_PAYLOADCRCERROR_MASK 0x20
|
||||
#define RFLR_IRQFLAGS_VALIDHEADER_MASK 0x10
|
||||
#define RFLR_IRQFLAGS_TXDONE_MASK 0x08
|
||||
#define RFLR_IRQFLAGS_CADDONE_MASK 0x04
|
||||
#define RFLR_IRQFLAGS_FHSSCHANGEDCHANNEL_MASK 0x02
|
||||
#define RFLR_IRQFLAGS_CADDETECTED_MASK 0x01
|
||||
|
||||
/*!
|
||||
* RegIrqFlags
|
||||
*/
|
||||
#define RFLR_IRQFLAGS_RXTIMEOUT 0x80
|
||||
#define RFLR_IRQFLAGS_RXDONE 0x40
|
||||
#define RFLR_IRQFLAGS_PAYLOADCRCERROR 0x20
|
||||
#define RFLR_IRQFLAGS_VALIDHEADER 0x10
|
||||
#define RFLR_IRQFLAGS_TXDONE 0x08
|
||||
#define RFLR_IRQFLAGS_CADDONE 0x04
|
||||
#define RFLR_IRQFLAGS_FHSSCHANGEDCHANNEL 0x02
|
||||
#define RFLR_IRQFLAGS_CADDETECTED 0x01
|
||||
|
||||
/*!
|
||||
* RegFifoRxNbBytes (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRxHeaderCntValueMsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRxHeaderCntValueLsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRxPacketCntValueMsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRxPacketCntValueLsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegModemStat (Read Only)
|
||||
*/
|
||||
#define RFLR_MODEMSTAT_RX_CR_MASK 0x1F
|
||||
#define RFLR_MODEMSTAT_MODEM_STATUS_MASK 0xE0
|
||||
|
||||
/*!
|
||||
* RegPktSnrValue (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegPktRssiValue (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRssiValue (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegHopChannel (Read Only)
|
||||
*/
|
||||
#define RFLR_HOPCHANNEL_PLL_LOCK_TIMEOUT_MASK 0x7F
|
||||
#define RFLR_HOPCHANNEL_PLL_LOCK_FAIL 0x80
|
||||
#define RFLR_HOPCHANNEL_PLL_LOCK_SUCCEED 0x00 // Default
|
||||
|
||||
#define RFLR_HOPCHANNEL_CRCONPAYLOAD_MASK 0xBF
|
||||
#define RFLR_HOPCHANNEL_CRCONPAYLOAD_ON 0x40
|
||||
#define RFLR_HOPCHANNEL_CRCONPAYLOAD_OFF 0x00 // Default
|
||||
|
||||
#define RFLR_HOPCHANNEL_CHANNEL_MASK 0x3F
|
||||
|
||||
/*!
|
||||
* RegModemConfig1
|
||||
*/
|
||||
#define RFLR_MODEMCONFIG1_BW_MASK 0x0F
|
||||
#define RFLR_MODEMCONFIG1_BW_7_81_KHZ 0x00
|
||||
#define RFLR_MODEMCONFIG1_BW_10_41_KHZ 0x10
|
||||
#define RFLR_MODEMCONFIG1_BW_15_62_KHZ 0x20
|
||||
#define RFLR_MODEMCONFIG1_BW_20_83_KHZ 0x30
|
||||
#define RFLR_MODEMCONFIG1_BW_31_25_KHZ 0x40
|
||||
#define RFLR_MODEMCONFIG1_BW_41_66_KHZ 0x50
|
||||
#define RFLR_MODEMCONFIG1_BW_62_50_KHZ 0x60
|
||||
#define RFLR_MODEMCONFIG1_BW_125_KHZ 0x70 // Default
|
||||
#define RFLR_MODEMCONFIG1_BW_250_KHZ 0x80
|
||||
#define RFLR_MODEMCONFIG1_BW_500_KHZ 0x90
|
||||
|
||||
#define RFLR_MODEMCONFIG1_CODINGRATE_MASK 0xF1
|
||||
#define RFLR_MODEMCONFIG1_CODINGRATE_4_5 0x02
|
||||
#define RFLR_MODEMCONFIG1_CODINGRATE_4_6 0x04 // Default
|
||||
#define RFLR_MODEMCONFIG1_CODINGRATE_4_7 0x06
|
||||
#define RFLR_MODEMCONFIG1_CODINGRATE_4_8 0x08
|
||||
|
||||
#define RFLR_MODEMCONFIG1_IMPLICITHEADER_MASK 0xFE
|
||||
#define RFLR_MODEMCONFIG1_IMPLICITHEADER_ON 0x01
|
||||
#define RFLR_MODEMCONFIG1_IMPLICITHEADER_OFF 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegModemConfig2
|
||||
*/
|
||||
#define RFLR_MODEMCONFIG2_SF_MASK 0x0F
|
||||
#define RFLR_MODEMCONFIG2_SF_6 0x60
|
||||
#define RFLR_MODEMCONFIG2_SF_7 0x70 // Default
|
||||
#define RFLR_MODEMCONFIG2_SF_8 0x80
|
||||
#define RFLR_MODEMCONFIG2_SF_9 0x90
|
||||
#define RFLR_MODEMCONFIG2_SF_10 0xA0
|
||||
#define RFLR_MODEMCONFIG2_SF_11 0xB0
|
||||
#define RFLR_MODEMCONFIG2_SF_12 0xC0
|
||||
|
||||
#define RFLR_MODEMCONFIG2_TXCONTINUOUSMODE_MASK 0xF7
|
||||
#define RFLR_MODEMCONFIG2_TXCONTINUOUSMODE_ON 0x08
|
||||
#define RFLR_MODEMCONFIG2_TXCONTINUOUSMODE_OFF 0x00
|
||||
|
||||
#define RFLR_MODEMCONFIG2_RXPAYLOADCRC_MASK 0xFB
|
||||
#define RFLR_MODEMCONFIG2_RXPAYLOADCRC_ON 0x04
|
||||
#define RFLR_MODEMCONFIG2_RXPAYLOADCRC_OFF 0x00 // Default
|
||||
|
||||
#define RFLR_MODEMCONFIG2_SYMBTIMEOUTMSB_MASK 0xFC
|
||||
#define RFLR_MODEMCONFIG2_SYMBTIMEOUTMSB 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegSymbTimeoutLsb
|
||||
*/
|
||||
#define RFLR_SYMBTIMEOUTLSB_SYMBTIMEOUT 0x64 // Default
|
||||
|
||||
/*!
|
||||
* RegPreambleLengthMsb
|
||||
*/
|
||||
#define RFLR_PREAMBLELENGTHMSB 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegPreambleLengthLsb
|
||||
*/
|
||||
#define RFLR_PREAMBLELENGTHLSB 0x08 // Default
|
||||
|
||||
/*!
|
||||
* RegPayloadLength
|
||||
*/
|
||||
#define RFLR_PAYLOADLENGTH 0x0E // Default
|
||||
|
||||
/*!
|
||||
* RegPayloadMaxLength
|
||||
*/
|
||||
#define RFLR_PAYLOADMAXLENGTH 0xFF // Default
|
||||
|
||||
/*!
|
||||
* RegHopPeriod
|
||||
*/
|
||||
#define RFLR_HOPPERIOD_FREQFOPPINGPERIOD 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegFifoRxByteAddr (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegModemConfig3
|
||||
*/
|
||||
#define RFLR_MODEMCONFIG3_LOWDATARATEOPTIMIZE_MASK 0xF7
|
||||
#define RFLR_MODEMCONFIG3_LOWDATARATEOPTIMIZE_ON 0x08
|
||||
#define RFLR_MODEMCONFIG3_LOWDATARATEOPTIMIZE_OFF 0x00 // Default
|
||||
|
||||
#define RFLR_MODEMCONFIG3_AGCAUTO_MASK 0xFB
|
||||
#define RFLR_MODEMCONFIG3_AGCAUTO_ON 0x04 // Default
|
||||
#define RFLR_MODEMCONFIG3_AGCAUTO_OFF 0x00
|
||||
|
||||
/*!
|
||||
* RegFeiMsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegFeiMid (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegFeiLsb (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegRssiWideband (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegDetectOptimize
|
||||
*/
|
||||
#define RFLR_DETECTIONOPTIMIZE_MASK 0xF8
|
||||
#define RFLR_DETECTIONOPTIMIZE_SF7_TO_SF12 0x03 // Default
|
||||
#define RFLR_DETECTIONOPTIMIZE_SF6 0x05
|
||||
|
||||
/*!
|
||||
* RegInvertIQ
|
||||
*/
|
||||
#define RFLR_INVERTIQ_RX_MASK 0xBF
|
||||
#define RFLR_INVERTIQ_RX_OFF 0x00
|
||||
#define RFLR_INVERTIQ_RX_ON 0x40
|
||||
#define RFLR_INVERTIQ_TX_MASK 0xFE
|
||||
#define RFLR_INVERTIQ_TX_OFF 0x01
|
||||
#define RFLR_INVERTIQ_TX_ON 0x00
|
||||
|
||||
/*!
|
||||
* RegDetectionThreshold
|
||||
*/
|
||||
#define RFLR_DETECTIONTHRESH_SF7_TO_SF12 0x0A // Default
|
||||
#define RFLR_DETECTIONTHRESH_SF6 0x0C
|
||||
|
||||
/*!
|
||||
* RegInvertIQ2
|
||||
*/
|
||||
#define RFLR_INVERTIQ2_ON 0x19
|
||||
#define RFLR_INVERTIQ2_OFF 0x1D
|
||||
|
||||
/*!
|
||||
* RegDioMapping1
|
||||
*/
|
||||
#define RFLR_DIOMAPPING1_DIO0_MASK 0x3F
|
||||
#define RFLR_DIOMAPPING1_DIO0_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING1_DIO0_01 0x40
|
||||
#define RFLR_DIOMAPPING1_DIO0_10 0x80
|
||||
#define RFLR_DIOMAPPING1_DIO0_11 0xC0
|
||||
|
||||
#define RFLR_DIOMAPPING1_DIO1_MASK 0xCF
|
||||
#define RFLR_DIOMAPPING1_DIO1_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING1_DIO1_01 0x10
|
||||
#define RFLR_DIOMAPPING1_DIO1_10 0x20
|
||||
#define RFLR_DIOMAPPING1_DIO1_11 0x30
|
||||
|
||||
#define RFLR_DIOMAPPING1_DIO2_MASK 0xF3
|
||||
#define RFLR_DIOMAPPING1_DIO2_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING1_DIO2_01 0x04
|
||||
#define RFLR_DIOMAPPING1_DIO2_10 0x08
|
||||
#define RFLR_DIOMAPPING1_DIO2_11 0x0C
|
||||
|
||||
#define RFLR_DIOMAPPING1_DIO3_MASK 0xFC
|
||||
#define RFLR_DIOMAPPING1_DIO3_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING1_DIO3_01 0x01
|
||||
#define RFLR_DIOMAPPING1_DIO3_10 0x02
|
||||
#define RFLR_DIOMAPPING1_DIO3_11 0x03
|
||||
|
||||
/*!
|
||||
* RegDioMapping2
|
||||
*/
|
||||
#define RFLR_DIOMAPPING2_DIO4_MASK 0x3F
|
||||
#define RFLR_DIOMAPPING2_DIO4_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING2_DIO4_01 0x40
|
||||
#define RFLR_DIOMAPPING2_DIO4_10 0x80
|
||||
#define RFLR_DIOMAPPING2_DIO4_11 0xC0
|
||||
|
||||
#define RFLR_DIOMAPPING2_DIO5_MASK 0xCF
|
||||
#define RFLR_DIOMAPPING2_DIO5_00 0x00 // Default
|
||||
#define RFLR_DIOMAPPING2_DIO5_01 0x10
|
||||
#define RFLR_DIOMAPPING2_DIO5_10 0x20
|
||||
#define RFLR_DIOMAPPING2_DIO5_11 0x30
|
||||
|
||||
#define RFLR_DIOMAPPING2_MAP_MASK 0xFE
|
||||
#define RFLR_DIOMAPPING2_MAP_PREAMBLEDETECT 0x01
|
||||
#define RFLR_DIOMAPPING2_MAP_RSSI 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegVersion (Read Only)
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegPllHop
|
||||
*/
|
||||
#define RFLR_PLLHOP_FASTHOP_MASK 0x7F
|
||||
#define RFLR_PLLHOP_FASTHOP_ON 0x80
|
||||
#define RFLR_PLLHOP_FASTHOP_OFF 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegTcxo
|
||||
*/
|
||||
#define RFLR_TCXO_TCXOINPUT_MASK 0xEF
|
||||
#define RFLR_TCXO_TCXOINPUT_ON 0x10
|
||||
#define RFLR_TCXO_TCXOINPUT_OFF 0x00 // Default
|
||||
|
||||
/*!
|
||||
* RegPaDac
|
||||
*/
|
||||
#define RFLR_PADAC_20DBM_MASK 0xF8
|
||||
#define RFLR_PADAC_20DBM_ON 0x07
|
||||
#define RFLR_PADAC_20DBM_OFF 0x04 // Default
|
||||
|
||||
/*!
|
||||
* RegFormerTemp
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegBitrateFrac
|
||||
*/
|
||||
#define RF_BITRATEFRAC_MASK 0xF0
|
||||
|
||||
/*!
|
||||
* RegAgcRef
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegAgcThresh1
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegAgcThresh2
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegAgcThresh3
|
||||
*/
|
||||
|
||||
/*!
|
||||
* RegPll
|
||||
*/
|
||||
#define RF_PLL_BANDWIDTH_MASK 0x3F
|
||||
#define RF_PLL_BANDWIDTH_75 0x00
|
||||
#define RF_PLL_BANDWIDTH_150 0x40
|
||||
#define RF_PLL_BANDWIDTH_225 0x80
|
||||
#define RF_PLL_BANDWIDTH_300 0xC0 // Default
|
||||
|
||||
#endif // __SX1276_REGS_LORA_H__
|
|
@ -0,0 +1,25 @@
|
|||
Copyright 2017 Arm Limited and affiliates.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
3. Neither the name of the copyright holder nor the
|
||||
names of its contributors may be used to endorse or promote products
|
||||
derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
|
@ -0,0 +1,25 @@
|
|||
--- Revised BSD License ---
|
||||
Copyright (c) 2013, SEMTECH S.A.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
* Neither the name of the Semtech corporation nor the
|
||||
names of its contributors may be used to endorse or promote products
|
||||
derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL SEMTECH S.A. BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@ -0,0 +1 @@
|
|||
# Mbed enabled Semtech LoRa/FSK radio drivers.
|
Loading…
Reference in New Issue