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.
Dependencies: SX1272lib-PABOOST-HW-Modification mbed
Fork of LoRaWAN_ELMO_TxRx_Template by
RadioHandler.h@5:be347c6040c1, 2016-04-19 (annotated)
- Committer:
- Pasi
- Date:
- Tue Apr 19 19:51:17 2016 +0000
- Revision:
- 5:be347c6040c1
- Child:
- 7:3d16d6fe3b12
The first functioning template code. Version 1.0
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Pasi | 5:be347c6040c1 | 1 | /* |
Pasi | 5:be347c6040c1 | 2 | / _____) _ | | |
Pasi | 5:be347c6040c1 | 3 | ( (____ _____ ____ _| |_ _____ ____| |__ |
Pasi | 5:be347c6040c1 | 4 | \____ \| ___ | (_ _) ___ |/ ___) _ \ |
Pasi | 5:be347c6040c1 | 5 | _____) ) ____| | | || |_| ____( (___| | | | |
Pasi | 5:be347c6040c1 | 6 | (______/|_____)_|_|_| \__)_____)\____)_| |_| |
Pasi | 5:be347c6040c1 | 7 | |
Pasi | 5:be347c6040c1 | 8 | Description: Main radio loop |
Pasi | 5:be347c6040c1 | 9 | License: Revised BSD License, see LICENSE.TXT file include in the project |
Pasi | 5:be347c6040c1 | 10 | */ |
Pasi | 5:be347c6040c1 | 11 | #ifndef __RADIOHANDLER_H__ |
Pasi | 5:be347c6040c1 | 12 | #define __RADIOHANDLER_H__ |
Pasi | 5:be347c6040c1 | 13 | |
Pasi | 5:be347c6040c1 | 14 | void RadioInit( void ); |
Pasi | 5:be347c6040c1 | 15 | void RequestPacketTx( char *DataString, bool PeriodicRequested ); |
Pasi | 5:be347c6040c1 | 16 | void RadioHandler( void ); |
Pasi | 5:be347c6040c1 | 17 | |
Pasi | 5:be347c6040c1 | 18 | #endif // __RADIOHANDLER_H__ |