mQ Fork
Fork of SX1272Lib by
radio/radio.cpp@8:71574856a120, 2018-03-30 (annotated)
- Committer:
- Benedict_Tizzano
- Date:
- Fri Mar 30 19:00:02 2018 +0000
- Revision:
- 8:71574856a120
- Parent:
- 0:45c4f0364ca4
machineQ branch
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 | } |