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 SX1276Lib by
radio/radio.cpp@13:618826a997e2, 2014-12-16 (annotated)
- Committer:
- mluis
- Date:
- Tue Dec 16 10:02:45 2014 +0000
- Revision:
- 13:618826a997e2
- Parent:
- 12:aa5b3bf7fdf4
- Child:
- 21:2e496deb7858
Cosmetics; Added LICENSE text.; Added the possibility to specify the payload length for receiving fixed length frames.; Added SetModem function to radio interface.; Added LoRa syncword register definition
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
GregCr | 0:e6ceb13d2d05 | 1 | /* |
GregCr | 0:e6ceb13d2d05 | 2 | / _____) _ | | |
GregCr | 0:e6ceb13d2d05 | 3 | ( (____ _____ ____ _| |_ _____ ____| |__ |
GregCr | 0:e6ceb13d2d05 | 4 | \____ \| ___ | (_ _) ___ |/ ___) _ \ |
GregCr | 0:e6ceb13d2d05 | 5 | _____) ) ____| | | || |_| ____( (___| | | | |
GregCr | 0:e6ceb13d2d05 | 6 | (______/|_____)_|_|_| \__)_____)\____)_| |_| |
GregCr | 0:e6ceb13d2d05 | 7 | ( C )2014 Semtech |
GregCr | 0:e6ceb13d2d05 | 8 | |
GregCr | 0:e6ceb13d2d05 | 9 | Description: Interface for the radios, contains the main functions that a radio needs, and 5 callback functions |
GregCr | 0:e6ceb13d2d05 | 10 | |
GregCr | 0:e6ceb13d2d05 | 11 | License: Revised BSD License, see LICENSE.TXT file include in the project |
GregCr | 0:e6ceb13d2d05 | 12 | |
GregCr | 0:e6ceb13d2d05 | 13 | Maintainers: Miguel Luis, Gregory Cristian and Nicolas Huguenin |
GregCr | 0:e6ceb13d2d05 | 14 | */ |
GregCr | 0:e6ceb13d2d05 | 15 | #include "radio.h" |
GregCr | 0:e6ceb13d2d05 | 16 | |
GregCr | 7:2b555111463f | 17 | Radio::Radio( void ( *txDone )( ), void ( *txTimeout ) ( ), void ( *rxDone ) ( uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr ), |
mluis | 13:618826a997e2 | 18 | void ( *rxTimeout ) ( ), void ( *rxError ) ( ), void ( *fhssChangeChannel ) ( uint8_t channelIndex ), void ( *cadDone ) ( bool channelActivityDetected ) ) |
GregCr | 0:e6ceb13d2d05 | 19 | { |
mluis | 13:618826a997e2 | 20 | this->txDone = txDone; |
mluis | 13:618826a997e2 | 21 | this->txTimeout = txTimeout; |
mluis | 13:618826a997e2 | 22 | this->rxDone = rxDone; |
mluis | 13:618826a997e2 | 23 | this->rxTimeout = rxTimeout; |
mluis | 13:618826a997e2 | 24 | this->rxError = rxError; |
mluis | 13:618826a997e2 | 25 | this->fhssChangeChannel = fhssChangeChannel; |
GregCr | 7:2b555111463f | 26 | this->cadDone = cadDone; |
GregCr | 0:e6ceb13d2d05 | 27 | } |
GregCr | 0:e6ceb13d2d05 | 28 |