You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
Inc | 2 years ago | |
Src | 2 years ago | |
readme.md | 2 years ago |
readme.md
SX127x
Introduction
This library implements support for the SX1276/77/78/79 transceivers in LoRa mode. It is written for the STM32 HAL, but a low-level, platform agnostic library is planned.
Usage
Clone this repository, or add it as a submodule, to your STM32 project under the Drivers/ directory.
Example:
#include "sx127x.h"
sx127x_t sx127x;
sx127x_init(&sx127x, &hspi1, SPI1_CS_GPIO_Port, SPI1_CS_Pin);
sx127x_tx(&sx127x, (uint8_t *) "Hello, world!\r\n", 15);