Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SX1272Liby by
radio/radio.cpp@4:d2e72ba5e76c, 2016-03-20 (annotated)
- Committer:
- jlcolemanmbed
- Date:
- Sun Mar 20 19:40:55 2016 +0000
- Revision:
- 4:d2e72ba5e76c
- Parent:
- 0:45c4f0364ca4
Made revisions to support JFET LoRa Module on mbed platform
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mluis | 0:45c4f0364ca4 | 1 | /* |
| mluis | 0:45c4f0364ca4 | 2 | / _____) _ | | |
| mluis | 0:45c4f0364ca4 | 3 | ( (____ _____ ____ _| |_ _____ ____| |__ |
| mluis | 0:45c4f0364ca4 | 4 | \____ \| ___ | (_ _) ___ |/ ___) _ \ |
| mluis | 0:45c4f0364ca4 | 5 | _____) ) ____| | | || |_| ____( (___| | | | |
| mluis | 0:45c4f0364ca4 | 6 | (______/|_____)_|_|_| \__)_____)\____)_| |_| |
| mluis | 0:45c4f0364ca4 | 7 | (C) 2015 Semtech |
| mluis | 0:45c4f0364ca4 | 8 | |
| mluis | 0:45c4f0364ca4 | 9 | Description: Interface for the radios, contains the main functions that a radio needs, and 5 callback functions |
| mluis | 0:45c4f0364ca4 | 10 | |
| mluis | 0:45c4f0364ca4 | 11 | License: Revised BSD License, see LICENSE.TXT file include in the project |
| mluis | 0:45c4f0364ca4 | 12 | |
| mluis | 0:45c4f0364ca4 | 13 | Maintainers: Miguel Luis, Gregory Cristian and Nicolas Huguenin |
| mluis | 0:45c4f0364ca4 | 14 | */ |
| mluis | 0:45c4f0364ca4 | 15 | #include "radio.h" |
| mluis | 0:45c4f0364ca4 | 16 | |
| mluis | 0:45c4f0364ca4 | 17 | Radio::Radio( RadioEvents_t *events ) |
| mluis | 0:45c4f0364ca4 | 18 | { |
| mluis | 0:45c4f0364ca4 | 19 | this->RadioEvents = events; |
| mluis | 0:45c4f0364ca4 | 20 | } |
