blob: 73edf9c63f4e3eb5f7738668a3b2f5eed010bb0d [file] [log] [blame]
/*
/ _____) _ | |
( (____ _____ ____ _| |_ _____ ____| |__
\____ \| ___ | (_ _) ___ |/ ___) _ \
_____) ) ____| | | || |_| ____( (___| | | |
(______/|_____)_|_|_| \__)_____)\____)_| |_|
(C)2013 Semtech
Description: SX1276 driver specific target board functions implementation
License: Revised BSD License, see LICENSE.TXT file include in the project
Maintainer: Miguel Luis and Gregory Cristian
*/
#ifndef __SX1276_ARCH_H__
#define __SX1276_ARCH_H__
#include "hal/hal_gpio.h"
#define RADIO_SPI_IDX MYNEWT_VAL(SX1276_SPI_IDX)
#if RADIO_SPI_IDX == 0
#define RADIO_NSS MYNEWT_VAL(SX1276_SPI_CS_PIN)
#else
#error Invalid SX1276_SPI_IDX value
#endif
/*!
* \brief Radio hardware registers initialization definition
*
* \remark Can be automatically generated by the SX1276 GUI (not yet implemented)
*/
#define RADIO_INIT_REGISTERS_VALUE \
{ \
{ MODEM_FSK , REG_LNA , 0x23 },\
{ MODEM_FSK , REG_RXCONFIG , 0x1E },\
{ MODEM_FSK , REG_RSSICONFIG , 0xD2 },\
{ MODEM_FSK , REG_AFCFEI , 0x01 },\
{ MODEM_FSK , REG_PREAMBLEDETECT , 0xAA },\
{ MODEM_FSK , REG_OSC , 0x07 },\
{ MODEM_FSK , REG_SYNCCONFIG , 0x12 },\
{ MODEM_FSK , REG_SYNCVALUE1 , 0xC1 },\
{ MODEM_FSK , REG_SYNCVALUE2 , 0x94 },\
{ MODEM_FSK , REG_SYNCVALUE3 , 0xC1 },\
{ MODEM_FSK , REG_PACKETCONFIG1 , 0xD8 },\
{ MODEM_FSK , REG_FIFOTHRESH , 0x8F },\
{ MODEM_FSK , REG_IMAGECAL , 0x02 },\
{ MODEM_FSK , REG_DIOMAPPING1 , 0x00 },\
{ MODEM_FSK , REG_DIOMAPPING2 , 0x30 },\
{ MODEM_LORA, REG_LR_PAYLOADMAXLENGTH, 0x40 },\
} \
#define RF_MID_BAND_THRESH 525000000
/*!
* \brief Initializes the radio I/Os pins interface
*/
void SX1276IoInit(void);
void SX1276IoIrqInit(DioIrqHandler **irqHandlers);
/*!
* \brief De-initializes the radio I/Os pins interface.
*
* \remark Useful when going in MCU low power modes
*/
void SX1276IoDeInit(void);
/*!
* \brief Sets the radio output power.
*
* \param [IN] power Sets the RF output power
*/
void SX1276SetRfTxPower(int8_t power);
/*!
* \brief Gets the board PA selection configuration
*
* \param [IN] channel Channel frequency in Hz
* \retval PaSelect RegPaConfig PaSelect value
*/
uint8_t SX1276GetPaSelect(uint32_t channel);
#if MYNEWT_VAL(SX1276_HAS_ANT_SW)
/*!
* \brief Set the RF Switch I/Os pins in Low Power mode
*
* \param [IN] status enable or disable
*/
void SX1276SetAntSwLowPower(bool status);
/*!
* \brief Initializes the RF Switch I/Os pins interface
*/
void SX1276AntSwInit(void);
/*!
* \brief De-initializes the RF Switch I/Os pins interface
*
* \remark Needed to decrease the power consumption in MCU low power modes
*/
void SX1276AntSwDeInit(void);
/*!
* \brief Controls the antenna switch if necessary.
*
* \remark see errata note
*
* \param [IN] opMode Current radio operating mode
*/
void SX1276SetAntSw(uint8_t opMode);
#endif
/*!
* \brief Checks if the given RF frequency is supported by the hardware
*
* \param [IN] frequency RF frequency to be checked
* \retval isSupported [true: supported, false: unsupported]
*/
bool SX1276CheckRfFrequency(uint32_t frequency);
void SX1276SetPublicNetwork(bool enable);
uint32_t SX1276GetBoardTcxoWakeupTime(void);
/*!
* \brief Disables all receive related IO Irqs
*/
void SX1276RxIoIrqDisable( void );
/*!
* \brief Enables all receive related IO Irqs
*/
void SX1276RxIoIrqEnable( void );
/*!
* Radio hardware and global parameters
*/
extern SX1276_t SX1276;
#endif // __SX1276_ARCH_H__