Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lora-net/sx126x_driver
Driver for SX126x radio
https://github.com/lora-net/sx126x_driver
c driver fsk lora radio
Last synced: 5 days ago
JSON representation
Driver for SX126x radio
- Host: GitHub
- URL: https://github.com/lora-net/sx126x_driver
- Owner: Lora-net
- License: bsd-3-clause-clear
- Created: 2020-09-21T21:14:15.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T09:58:43.000Z (11 months ago)
- Last Synced: 2024-03-27T14:12:21.682Z (8 months ago)
- Topics: c, driver, fsk, lora, radio
- Language: C
- Homepage:
- Size: 56.6 KB
- Stars: 90
- Watchers: 17
- Forks: 28
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# SX126X driver
This package proposes an implementation in C of the driver for **SX126X** radio component.
Please see the [changelog](CHANGELOG.md) for more information.## Structure
The driver is defined as follows:
- sx126x.c: implementation of the driver functions
- sx126x.h: declarations of the driver functions
- sx126x_regs.h: definitions of all useful registers (address and fields)
- sx126x_hal.h: declarations of the HAL functions (to be implemented by the user - see below)
- lr_fhss_mac.c: Transceiver-independent LR-FHSS implementation
- sx126x_lr_fhss.c: Transceiver-dependent LR-FHSS implementation
- lr_fhss_mac.h: Transceiver-independent LR-FHSS declarations
- sx126x_lr_fhss.h: Transceiver-dependent LR-FHSS declarations
- lr_fhss_v1_base_types.h: LR-FHSS type interface## HAL
The HAL (Hardware Abstraction Layer) is a collection of functions the user shall implement to write platform-dependant calls to the host. The list of functions is the following:
- sx126x_hal_reset
- sx126x_hal_wakeup
- sx126x_hal_write
- sx126x_hal_read