With error debug.h
Fork of SX1272Lib by
radio/radio.cpp@0:45c4f0364ca4, 2016-01-05 (annotated)
- Committer:
- mluis
- Date:
- Tue Jan 05 16:43:48 2016 +0000
- Revision:
- 0:45c4f0364ca4
Library creation based on SX1276Lib and https://github.com/Lora-net/LoRaMac-node
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 | } |