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
typedefs/typedefs.h
- Committer:
- tmulrooney
- Date:
- 2016-02-17
- Revision:
- 24:9100348e6c28
- Parent:
- 23:273a2f93ae99
File content as of revision 24:9100348e6c28:
/* / _____) _ | | ( (____ _____ ____ _| |_ _____ ____| |__ \____ \| ___ | (_ _) ___ |/ ___) _ \ _____) ) ____| | | || |_| ____( (___| | | | (______/|_____)_|_|_| \__)_____)\____)_| |_| (C) 2014 Semtech Description: - License: Revised BSD License, see LICENSE.TXT file include in the project Maintainers: Miguel Luis, Gregory Cristian and Nicolas Huguenin */ #ifndef __TYPEDEFS_H__ #define __TYPEDEFS_H__ #include "mbed.h" #include "./enums/enums.h" class SX1272; class SX1272MB1xAS; /*! * Hardware IO IRQ callback function definition */ typedef void ( SX1272::*DioIrqHandler )( void ); /*! * triggers definition */ typedef void ( SX1272::*Trigger )( void ); typedef void ( SX1272MB1xAS::*TriggerMB1xAS )( void ); /*! * FSK bandwidth definition */ typedef struct { uint32_t bandwidth; uint8_t RegValue; }FskBandwidth_t; /*! * Radio registers definition */ typedef struct { ModemType Modem; uint8_t Addr; uint8_t Value; }RadioRegisters_t; #endif //__TYPEDEFS_H__