mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-15 14:32:43 +01:00
237 lines
6.4 KiB
C
237 lines
6.4 KiB
C
/*
|
|
* Copyright (C) 2021 Inria
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @defgroup drivers_sx126x SX1261/2/8 and LLCC68 LoRa radio driver
|
|
* @ingroup drivers_netdev
|
|
* @brief Driver for the SX1261/2/8 and LLCC68 LoRa radio device
|
|
*
|
|
* @{
|
|
*
|
|
* @file
|
|
*
|
|
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
|
*/
|
|
|
|
#ifndef SX126X_H
|
|
#define SX126X_H
|
|
|
|
#include "sx126x_driver.h"
|
|
|
|
#include "net/netdev.h"
|
|
|
|
#include "periph/gpio.h"
|
|
#include "periph/spi.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Device initialization parameters
|
|
*/
|
|
typedef struct {
|
|
spi_t spi; /**< SPI device */
|
|
gpio_t nss_pin; /**< SPI NSS pin */
|
|
gpio_t reset_pin; /**< Reset pin */
|
|
gpio_t busy_pin; /**< Busy pin */
|
|
gpio_t dio1_pin; /**< Dio1 pin */
|
|
sx126x_reg_mod_t regulator; /**< Power regulator mode */
|
|
} sx126x_params_t;
|
|
|
|
/**
|
|
* @brief Device descriptor for the driver
|
|
*/
|
|
typedef struct {
|
|
netdev_t netdev; /**< Netdev parent struct */
|
|
sx126x_params_t *params; /**< Initialization parameters */
|
|
sx126x_pkt_params_lora_t pkt_params; /**< Lora packet parameters */
|
|
sx126x_mod_params_lora_t mod_params; /**< Lora modulation parameters */
|
|
uint32_t channel; /**< Current channel frequency (in Hz) */
|
|
uint32_t rx_timeout; /**< RX timeout in ms */
|
|
} sx126x_t;
|
|
|
|
/**
|
|
* @brief Setup the radio device
|
|
*
|
|
* @param[in] dev Device descriptor
|
|
* @param[in] params Parameters for device initialization
|
|
* @param[in] index Index of @p params in a global parameter struct array.
|
|
* If initialized manually, pass a unique identifier instead.
|
|
*/
|
|
void sx126x_setup(sx126x_t *dev, const sx126x_params_t *params, uint8_t index);
|
|
|
|
/**
|
|
* @brief Initialize the given device
|
|
*
|
|
* @param[inout] dev Device descriptor of the driver
|
|
*
|
|
* @return 0 on success
|
|
*/
|
|
int sx126x_init(sx126x_t *dev);
|
|
|
|
/**
|
|
* @brief Gets the channel RF frequency.
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
*
|
|
* @return The channel frequency
|
|
*/
|
|
uint32_t sx126x_get_channel(const sx126x_t *dev);
|
|
|
|
/**
|
|
* @brief Sets the channel RF frequency.
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
* @param[in] freq Channel RF frequency
|
|
*/
|
|
void sx126x_set_channel(sx126x_t *dev, uint32_t freq);
|
|
|
|
/**
|
|
* @brief Gets the LoRa bandwidth
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
*
|
|
* @return the bandwidth
|
|
*/
|
|
uint8_t sx126x_get_bandwidth(const sx126x_t *dev);
|
|
|
|
/**
|
|
* @brief Sets the LoRa bandwidth
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
* @param[in] bandwidth The new bandwidth
|
|
*/
|
|
void sx126x_set_bandwidth(sx126x_t *dev, uint8_t bandwidth);
|
|
|
|
/**
|
|
* @brief Gets the LoRa spreading factor
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
*
|
|
* @return the spreading factor
|
|
*/
|
|
uint8_t sx126x_get_spreading_factor(const sx126x_t *dev);
|
|
|
|
/**
|
|
* @brief Sets the LoRa spreading factor
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
* @param[in] sf The spreading factor
|
|
*/
|
|
void sx126x_set_spreading_factor(sx126x_t *dev, uint8_t sf);
|
|
|
|
/**
|
|
* @brief Gets the LoRa coding rate
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
*
|
|
* @return the current LoRa coding rate
|
|
*/
|
|
uint8_t sx126x_get_coding_rate(const sx126x_t *dev);
|
|
|
|
/**
|
|
* @brief Sets the LoRa coding rate
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
* @param[in] cr The LoRa coding rate
|
|
*/
|
|
void sx126x_set_coding_rate(sx126x_t *dev, uint8_t cr);
|
|
|
|
/**
|
|
* @brief Gets the payload length
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
*
|
|
* @return the payload length
|
|
*/
|
|
uint8_t sx126x_get_lora_payload_length(const sx126x_t *dev);
|
|
|
|
/**
|
|
* @brief Sets the payload length
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
* @param[in] len The payload len
|
|
*/
|
|
void sx126x_set_lora_payload_length(sx126x_t *dev, uint8_t len);
|
|
|
|
/**
|
|
* @brief Checks if CRC verification mode is enabled
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
*
|
|
* @return the LoRa single mode
|
|
*/
|
|
bool sx126x_get_lora_crc(const sx126x_t *dev);
|
|
|
|
/**
|
|
* @brief Enable/Disable CRC verification mode
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
* @param[in] crc The CRC check mode
|
|
*/
|
|
void sx126x_set_lora_crc(sx126x_t *dev, bool crc);
|
|
|
|
/**
|
|
* @brief Gets the LoRa implicit header mode
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
*
|
|
* @return the LoRa implicit mode
|
|
*/
|
|
bool sx126x_get_lora_implicit_header(const sx126x_t *dev);
|
|
|
|
/**
|
|
* @brief Sets LoRa implicit header mode
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
* @param[in] mode The header mode
|
|
*/
|
|
void sx126x_set_lora_implicit_header(sx126x_t *dev, bool mode);
|
|
|
|
/**
|
|
* @brief Gets the LoRa preamble length
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
*
|
|
* @return the preamble length
|
|
*/
|
|
uint16_t sx126x_get_lora_preamble_length(const sx126x_t *dev);
|
|
|
|
/**
|
|
* @brief Sets the LoRa preamble length
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
* @param[in] preamble The LoRa preamble length
|
|
*/
|
|
void sx126x_set_lora_preamble_length(sx126x_t *dev, uint16_t preamble);
|
|
|
|
/**
|
|
* @brief Checks if the LoRa inverted IQ mode is enabled/disabled
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
*
|
|
* @return the LoRa IQ inverted mode
|
|
*/
|
|
bool sx126x_get_lora_iq_invert(const sx126x_t *dev);
|
|
|
|
/**
|
|
* @brief Enable/disable the LoRa IQ inverted mode
|
|
*
|
|
* @param[in] dev Device descriptor of the driver
|
|
* @param[in] iq_invert The LoRa IQ inverted mode
|
|
*/
|
|
void sx126x_set_lora_iq_invert(sx126x_t *dev, bool iq_invert);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SX126X_H */
|
|
/** @} */
|