Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lora-net/llcc68_driver
Driver for LLCC68 radio
https://github.com/lora-net/llcc68_driver
c driver fsk lora radio
Last synced: 2 months ago
JSON representation
Driver for LLCC68 radio
- Host: GitHub
- URL: https://github.com/lora-net/llcc68_driver
- Owner: Lora-net
- License: bsd-3-clause-clear
- Created: 2020-09-21T21:14:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T09:54:46.000Z (about 1 year ago)
- Last Synced: 2024-03-27T14:12:21.992Z (10 months ago)
- Topics: c, driver, fsk, lora, radio
- Language: C
- Homepage:
- Size: 34.2 KB
- Stars: 46
- Watchers: 8
- Forks: 21
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# LLCC68 driver
This package proposes an implementation in C of the driver for **LLCC68** radio component.
Please see the [changelog](CHANGELOG.md) for more information.## Structure
The driver is defined as follows:
- llcc68.c: implementation of the driver functions
- llcc68.h: declarations of the driver functions
- llcc68_regs.h: definitions of all useful registers (address and fields)
- llcc68_hal.h: declarations of the HAL functions (to be implemented by the user - see below)## 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:
- llcc68_hal_reset
- llcc68_hal_wakeup
- llcc68_hal_write
- llcc68_hal_read