/*!
 * \file      RegionCN470B26.h
 *
 * \brief     Specific Region definition of CN470 Channel plan type B, 26MHz.
 *
 * \copyright Revised BSD License, see section \ref LICENSE.
 *
 * \code
 *                ______                              _
 *               / _____)             _              | |
 *              ( (____  _____ ____ _| |_ _____  ____| |__
 *               \____ \| ___ |    (_   _) ___ |/ ___)  _ \
 *               _____) ) ____| | | || |_| ____( (___| | | |
 *              (______/|_____)_|_|_| \__)_____)\____)_| |_|
 *              (C)2013-2017 Semtech
 *
 *               ___ _____ _   ___ _  _____ ___  ___  ___ ___
 *              / __|_   _/_\ / __| |/ / __/ _ \| _ \/ __| __|
 *              \__ \ | |/ _ \ (__| ' <| _| (_) |   / (__| _|
 *              |___/ |_/_/ \_\___|_|\_\_| \___/|_|_\\___|___|
 *              embedded.connectivity.solutions===============
 *
 * \endcode
 *
 * \author    Miguel Luis ( Semtech )
 *
 * \author    Daniel Jaeckle ( STACKFORCE )
 *
 * \addtogroup  REGIONCN470
 *
 * \{
 */
#ifndef __REGION_CN470_B26_H__
#define __REGION_CN470_B26_H__

#ifdef __cplusplus
extern "C"
{
#endif

#include "Region.h"

/*!
 * The maximum number of channels.
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_CHANNELS_MASK_SIZE        3

/*!
 * The number of entries in the join accept list.
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_JOIN_ACCEPT_LIST_SIZE     3

/*!
 * The number of channels available for the beacon.
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_BEACON_NB_CHANNELS        1

/*!
 * The number of channels available for the ping slots.
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_PING_SLOT_NB_CHANNELS     1

/*!
 * The first RX channel, downstream group 1.
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_FIRST_RX_CHANNEL          500100000

/*!
 * The last RX channel, downstream group 1.
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_LAST_RX_CHANNEL           504700000

/*!
 * The frequency stepwidth between RX channels,
 * downstream group 1 and 2.
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_STEPWIDTH_RX_CHANNEL      200000

/*!
 * The first TX channel, upstream group 1.
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_FIRST_TX_CHANNEL          480300000

/*!
 * The last TX channel, upstream group 1.
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_LAST_TX_CHANNEL           489700000

/*!
 * The frequency stepwidth between RX channels,
 * upstream group 1.
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_STEPWIDTH_TX_CHANNEL      200000

/*!
 * The default frequency for RX window 2,
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_RX_WND_2_FREQ             502500000

/*!
 * The default frequency for beacon,
 * Channel plan type B, 26MHz.
 */
#define CN470_B26_BEACON_FREQ               504900000

/*!
 * \brief Calculation of the beacon frequency.
 *
 * \param [in] channel The Beacon channel number.
 *
 * \param [in] joinChannelIndex The join channel index.
 *
 * \param [in] isPingSlot Set to true, if its a ping slot.
 *
 * \retval Returns the beacon frequency.
 */
uint32_t RegionCN470B26GetDownlinkFrequency( uint8_t channel, uint8_t joinChannelIndex, bool isPingSlot );

/*!
 * \brief Performs the update of the channelsMask based on the input parameters
 *        for the Channel plan type B, 26MHz.
 *
 * \param [in] joinChannelIndex The join channel index.
 *
 * \retval Returns the offset for the given join channel.
 */
uint8_t RegionCN470B26GetBeaconChannelOffset( uint8_t joinChannelIndex );

/*!
 * \brief Performs the update of the channelsMask based on the input parameters
 *        for the Channel plan type B, 26MHz.
 *
 * \param [in] channelsMask A pointer to the channels mask.
 *
 * \param [in] chMaskCntl The value of the chMaskCntl field of the LinkAdrReq.
 *
 * \param [in] chanMask The value of the chanMask field of the LinkAdrReq.
 *
 * \param [in] channels A pointer to the available channels.
 *
 * \retval Status of the operation. Return 0x07 if the channels mask is valid.
 */
uint8_t RegionCN470B26LinkAdrChMaskUpdate( uint16_t* channelsMask, uint8_t chMaskCntl,
                                           uint16_t chanMask, ChannelParams_t* channels );

/*!
 * \brief Verifies if the frequency provided is valid
 *        for the Channel plan type B, 26MHz.
 *
 * \param [in] frequency The frequency to verify.
 *
 * \retval Returns true, if the frequency is valid.
 */
bool RegionCN470B26VerifyRfFreq( uint32_t frequency );

/*!
 * \brief Initializes all channels, datarates, frequencies and bands
 *        for the Channel plan type B, 26MHz.
 *
 * \param [in] channels A pointer to the available channels.
 */
void RegionCN470B26InitializeChannels( ChannelParams_t* channels );

/*!
 * \brief Initializes the channels mask and the channels default mask
 *        for the Channel plan type B, 26MHz.
 *
 * \param [in] channelsDefaultMask A pointer to the channels default mask.
 */
void RegionCN470B26InitializeChannelsMask( uint16_t* channelsDefaultMask );

/*!
 * \brief Computes the frequency for the RX1 window
 *        for the Channel plan type B, 26MHz.
 *
 * \param [in] channel The channel utilized currently.
 *
 * \retval Returns the frequency which shall be used.
 */
uint32_t RegionCN470B26GetRx1Frequency( uint8_t channel );

/*!
 * \brief Computes the frequency for the RX2 window
 *        for the Channel plan type B, 26MHz.
 *
 * \param [in] joinChannelIndex The join channel index.
  *
 * \param [in] isOtaaDevice Set to true, if the device is an OTAA device.
 *
 * \retval Returns the frequency which shall be used.
 */
uint32_t RegionCN470B26GetRx2Frequency( uint8_t joinChannelIndex, bool isOtaaDevice );

/*! \} defgroup REGIONCN470 */

#ifdef __cplusplus
}
#endif

#endif // __REGION_CN470_B26_H__