mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
pkg: add driver_sx126x package driver
This commit is contained in:
parent
5a7dd703e3
commit
300beb79aa
20
pkg/driver_sx126x/Kconfig
Normal file
20
pkg/driver_sx126x/Kconfig
Normal file
@ -0,0 +1,20 @@
|
||||
# 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.
|
||||
#
|
||||
|
||||
config PACKAGE_DRIVER_SX126X
|
||||
bool "LLCC68 driver package"
|
||||
depends on TEST_KCONFIG
|
||||
depends on HAS_PERIPH_SPI
|
||||
select MODULE_PERIPH_SPI
|
||||
select MODULE_ZTIMER
|
||||
select MODULE_ZTIMER_USEC
|
||||
select MODULE_DRIVER_SX126X_HAL
|
||||
|
||||
config MODULE_DRIVER_SX126X_HAL
|
||||
bool
|
||||
help
|
||||
HAL implementation for the SX126X LoRa radio driver.
|
9
pkg/driver_sx126x/Makefile
Normal file
9
pkg/driver_sx126x/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
PKG_NAME=driver_sx126x
|
||||
PKG_URL=https://github.com/Lora-net/sx126x_driver
|
||||
PKG_VERSION=ba61312213450ae94a4293d75285c1d8f30c04b3
|
||||
PKG_LICENSE=BSD
|
||||
|
||||
include $(RIOTBASE)/pkg/pkg.mk
|
||||
|
||||
all:
|
||||
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/src -f $(CURDIR)/$(PKG_NAME).mk
|
7
pkg/driver_sx126x/Makefile.dep
Normal file
7
pkg/driver_sx126x/Makefile.dep
Normal file
@ -0,0 +1,7 @@
|
||||
# module dependencies
|
||||
USEMODULE += driver_sx126x_hal
|
||||
USEMODULE += ztimer
|
||||
USEMODULE += ztimer_usec
|
||||
|
||||
# required features
|
||||
FEATURES_REQUIRED += periph_spi
|
3
pkg/driver_sx126x/Makefile.include
Normal file
3
pkg/driver_sx126x/Makefile.include
Normal file
@ -0,0 +1,3 @@
|
||||
INCLUDES += -I$(PKGDIRBASE)/driver_sx126x/src
|
||||
|
||||
DIRS += $(RIOTBASE)/pkg/driver_sx126x/contrib
|
3
pkg/driver_sx126x/contrib/Makefile
Normal file
3
pkg/driver_sx126x/contrib/Makefile
Normal file
@ -0,0 +1,3 @@
|
||||
MODULE = driver_sx126x_hal
|
||||
|
||||
include $(RIOTBASE)/Makefile.base
|
98
pkg/driver_sx126x/contrib/driver_sx126x_hal.c
Normal file
98
pkg/driver_sx126x/contrib/driver_sx126x_hal.c
Normal file
@ -0,0 +1,98 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup pkg_driver_sx126x
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief HAL implementation for the SX1261/2 LoRa radio driver
|
||||
*
|
||||
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
||||
*
|
||||
* @}
|
||||
*/
|
||||
|
||||
#include "ztimer.h"
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/spi.h"
|
||||
|
||||
#include "sx126x.h"
|
||||
#include "sx126x_hal.h"
|
||||
|
||||
#define ENABLE_DEBUG 0
|
||||
#include "debug.h"
|
||||
|
||||
#define SX126X_SPI_SPEED (SPI_CLK_1MHZ)
|
||||
#define SX126X_SPI_MODE (SPI_MODE_0)
|
||||
|
||||
sx126x_hal_status_t sx126x_hal_write(const void *context,
|
||||
const uint8_t *command, const uint16_t command_length,
|
||||
const uint8_t *data, const uint16_t data_length)
|
||||
{
|
||||
(void)data;
|
||||
(void)data_length;
|
||||
sx126x_t *dev = (sx126x_t *)context;
|
||||
|
||||
/* wait for the device to not be busy anymore */
|
||||
while (gpio_read(dev->params->busy_pin)) {}
|
||||
|
||||
spi_acquire(dev->params->spi, SPI_CS_UNDEF, SX126X_SPI_MODE, SX126X_SPI_SPEED);
|
||||
spi_transfer_bytes(dev->params->spi, dev->params->nss_pin, data_length != 0, command, NULL,
|
||||
command_length);
|
||||
if (data_length) {
|
||||
spi_transfer_bytes(dev->params->spi, dev->params->nss_pin, false, data, NULL, data_length);
|
||||
}
|
||||
spi_release(dev->params->spi);
|
||||
return 0;
|
||||
}
|
||||
|
||||
sx126x_hal_status_t sx126x_hal_read(const void *context,
|
||||
const uint8_t *command, const uint16_t command_length,
|
||||
uint8_t *data, const uint16_t data_length)
|
||||
{
|
||||
sx126x_t *dev = (sx126x_t *)context;
|
||||
|
||||
/* wait for the device to not be busy anymore */
|
||||
while (gpio_read(dev->params->busy_pin)) {}
|
||||
|
||||
spi_acquire(dev->params->spi, SPI_CS_UNDEF, SX126X_SPI_MODE, SX126X_SPI_SPEED);
|
||||
spi_transfer_bytes(dev->params->spi, dev->params->nss_pin, true, command, NULL, command_length);
|
||||
spi_transfer_bytes(dev->params->spi, dev->params->nss_pin, false, NULL, data, data_length);
|
||||
spi_release(dev->params->spi);
|
||||
return 0;
|
||||
}
|
||||
|
||||
sx126x_hal_status_t sx126x_hal_reset(const void *context)
|
||||
{
|
||||
DEBUG("[sx126x_hal] reset\n");
|
||||
sx126x_t *dev = (sx126x_t *)context;
|
||||
|
||||
gpio_set(dev->params->reset_pin);
|
||||
gpio_clear(dev->params->reset_pin);
|
||||
/* it takes 100us for the radio to be ready after reset */
|
||||
ztimer_sleep(ZTIMER_USEC, 100);
|
||||
gpio_set(dev->params->reset_pin);
|
||||
return 0;
|
||||
}
|
||||
|
||||
sx126x_hal_status_t sx126x_hal_wakeup(const void *context)
|
||||
{
|
||||
DEBUG("[sx126x_hal] wakeup\n");
|
||||
sx126x_t *dev = (sx126x_t *)context;
|
||||
|
||||
spi_acquire(dev->params->spi, SPI_CS_UNDEF, SX126X_SPI_MODE, SX126X_SPI_SPEED);
|
||||
gpio_clear(dev->params->nss_pin);
|
||||
gpio_set(dev->params->nss_pin);
|
||||
spi_release(dev->params->spi);
|
||||
|
||||
/* it takes 500us for the radio device to be ready after waking up */
|
||||
ztimer_sleep(ZTIMER_USEC, 500);
|
||||
return 0;
|
||||
}
|
7
pkg/driver_sx126x/doc.txt
Normal file
7
pkg/driver_sx126x/doc.txt
Normal file
@ -0,0 +1,7 @@
|
||||
/**
|
||||
* @defgroup pkg_driver_sx126x SX1261/2 LoRa radio driver
|
||||
* @ingroup pkg
|
||||
* @brief This package is an implementation of the SX1261/2 LoRa radio driver.
|
||||
*
|
||||
* @see https://github.com/Lora-net/sx126x_driver
|
||||
*/
|
3
pkg/driver_sx126x/driver_sx126x.mk
Normal file
3
pkg/driver_sx126x/driver_sx126x.mk
Normal file
@ -0,0 +1,3 @@
|
||||
MODULE = driver_sx126x
|
||||
|
||||
include $(RIOTBASE)/Makefile.base
|
BIN
pkg/driver_sx126x/patches/0001-adapt-to-RIOT.patch
Normal file
BIN
pkg/driver_sx126x/patches/0001-adapt-to-RIOT.patch
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user