LoRaWAN-hello-world- code

Dependencies:   mbed LoRaWAN-lib

radio/SX1276Lib/typedefs/typedefs.h

Committer:
amirchaudhary
Date:
2019-03-22
Revision:
12:813e9e5f5ff6

File content as of revision 12:813e9e5f5ff6:

/*
 / _____)             _              | |
( (____  _____ ____ _| |_ _____  ____| |__
 \____ \| ___ |    (_   _) ___ |/ ___)  _ \
 _____) ) ____| | | || |_| ____( (___| | | |
(______/|_____)_|_|_| \__)_____)\____)_| |_|
    (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 SX1276;
class SX1276MB1xAS;
/*!
 * Hardware IO IRQ callback function definition
 */
typedef void ( SX1276::*DioIrqHandler )( void );

/*!
 * triggers definition
 */
typedef void ( SX1276::*Trigger )( void );
typedef void ( SX1276MB1xAS::*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__