Driver for the SX1272 RF Transceiver
Dependents: LoRaWAN_mbed_lmic_agriculture_app
Fork of SX1272Lib by
radio/radio.cpp@8:60c42278731e, 2018-04-02 (annotated)
- Committer:
- GTsapparellas
- Date:
- Mon Apr 02 12:06:02 2018 +0000
- Revision:
- 8:60c42278731e
- Parent:
- 0:45c4f0364ca4
SX1272MB2xAS LoRa shield attached on FRDM-K64F ARM mbed board.
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 |
GTsapparellas | 8:60c42278731e | 14 | ///////////////////////////////////////////////////////////////////////////// |
GTsapparellas | 8:60c42278731e | 15 | |
GTsapparellas | 8:60c42278731e | 16 | Used by Giorgos Tsapparellas for Internet of Things (IoT) smart monitoring |
GTsapparellas | 8:60c42278731e | 17 | device for agriculture using LoRaWAN technology. |
GTsapparellas | 8:60c42278731e | 18 | |
GTsapparellas | 8:60c42278731e | 19 | Date of issued copy: 20 January 2018 |
GTsapparellas | 8:60c42278731e | 20 | |
GTsapparellas | 8:60c42278731e | 21 | Modifications: |
GTsapparellas | 8:60c42278731e | 22 | - No external modifications of the existing "AS IT IS" software. |
mluis | 0:45c4f0364ca4 | 23 | */ |
mluis | 0:45c4f0364ca4 | 24 | #include "radio.h" |
mluis | 0:45c4f0364ca4 | 25 | |
mluis | 0:45c4f0364ca4 | 26 | Radio::Radio( RadioEvents_t *events ) |
mluis | 0:45c4f0364ca4 | 27 | { |
mluis | 0:45c4f0364ca4 | 28 | this->RadioEvents = events; |
mluis | 0:45c4f0364ca4 | 29 | } |